From 77a736c61f0cd5e86c648f737eb8c27bbc474c09 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 21:17:04 +0200 Subject: [PATCH 1/8] Comment makefile targets --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index e96d489..47ff4a7 100644 --- a/Makefile +++ b/Makefile @@ -27,15 +27,18 @@ spider: dockerimage --loglevel debug \ spider +# run spider tests test: dockerimage docker run --rm -ti spider /spider_test.py +# export JSON data for the webapp export: docker run --rm -ti \ -v $(PWD)/webapp/dist/data:/out \ -v $(PWD)/secrets:/secrets \ spider data_export.py /secrets/datastore-reader.json +# NodeJS modules for the webapp creation webapp/node_modules: cd webapp && npm install @@ -46,5 +49,6 @@ webapp: webapp/node_modules cp webapp/node_modules/tooltipster/dist/css/tooltipster.bundle.min.css ./docs/css/ rm webapp/dist/bundle.js +# Run a dev server for the webapp serve-webapp: cd docs && ../venv/bin/python -m http.server From cb58b32c394334bf821ec80564eada7f12b9b915 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 21:17:14 +0200 Subject: [PATCH 2/8] Remove icon downloading from spider --- spider.py | 55 +------------------------------------------------------ 1 file changed, 1 insertion(+), 54 deletions(-) diff --git a/spider.py b/spider.py index e334915..c6f83b1 100644 --- a/spider.py +++ b/spider.py @@ -42,8 +42,6 @@ GREEN_DIRECTORY_LOCAL_PATH = './cache/green-directory' RESULT_PATH = '/out' -SITEICONS_PATH = '/icons' - # IP address of the newthinking GCMS server GCMS_IP = "91.102.13.20" @@ -244,50 +242,6 @@ def normalize_title(title): return title -def download_icon(icon_url): - """ - Download an icon from the given URL and store it with - a file name of . - """ - - default_endings = { - "image/x-icon": "ico", - "image/vnd.microsoft.icon": "ico", - "image/png": "png", - "image/jpeg": "jpg", - } - - # Download the icon - req = requests.get(icon_url) - req.raise_for_status() - - content_hash = hashlib.md5(req.content).hexdigest() - extension = "" - - file_name = os.path.basename(icon_url)[-1] - if file_name != "" and "." in file_name: - ext = file_name.split(".")[-1] - if ext != "": - extension = ext - - if extension == "": - # derive from content type - ctype = req.headers.get('content-type') - try: - extension = default_endings[ctype] - except KeyError: - logging.error("No file ending defined for icon type '%s'", ctype) - return None - - filename = content_hash + "." + extension.lower() - - path = SITEICONS_PATH + os.path.sep + filename - with open(path, 'wb') as iconfile: - iconfile.write(req.content) - - return filename - - def check_responsiveness(url): """ Checks @@ -611,14 +565,7 @@ def check_site(entry): continue if c['content']['icon'] is not None: icons.add(c['content']['icon']) - downloaded_icons = set() - for icon_url in icons: - logging.info("Getting icon %s", icon_url) - try: - downloaded_icons.add(download_icon(icon_url)) - except Exception as e: - logging.error("Could not download icon: %s", e) - result['details']['icons'] = sorted(list(downloaded_icons)) + result['details']['icons'] = sorted(list(icons)) # collect feeds feeds = set() From 545ea671d83e63272981c6380b128db750266caa Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 22:40:31 +0200 Subject: [PATCH 3/8] Add retry for get_job_from_queue --- Dockerfile | 2 +- spider.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 78e85ff..2c7d33f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update \ && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ && dpkg -i google-chrome-stable_current_amd64.deb \ && rm google-chrome-stable_current_amd64.deb \ - && pip3 install GitPython idna PyYAML beautifulsoup4==4.6.0 requests==2.18.4 responses==0.9.0 selenium==3.11.0 smmap2==2.0.3 urllib3==1.22 google-cloud-datastore==1.7.0 \ + && pip3 install GitPython idna PyYAML beautifulsoup4==4.6.0 requests==2.18.4 responses==0.9.0 selenium==3.11.0 smmap2==2.0.3 urllib3==1.22 google-cloud-datastore==1.7.0 tenacity==5.0.2 \ && wget https://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip \ && unzip chromedriver_linux64.zip \ && rm chromedriver_linux64.zip \ diff --git a/spider.py b/spider.py index c6f83b1..324bc36 100644 --- a/spider.py +++ b/spider.py @@ -18,11 +18,13 @@ from urllib.parse import urlparse import requests import yaml +import tenacity from bs4 import BeautifulSoup from git import Repo from selenium import webdriver from google.cloud import datastore +from google.api_core.exceptions import Aborted from google.api_core.exceptions import InvalidArgument @@ -713,6 +715,8 @@ def check_site(entry): return result +@tenacity.retry(wait=tenacity.wait_exponential(), + retry=tenacity.retry_if_exception_type(Aborted)) def get_job_from_queue(): """ Returns a URL from the queue From a001301121a9b5ca95acb8541cdb89aab43118b1 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 23:23:48 +0200 Subject: [PATCH 4/8] Cleanup --- spider.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spider.py b/spider.py index 324bc36..d112287 100644 --- a/spider.py +++ b/spider.py @@ -3,7 +3,6 @@ Provides the spider functionality (website checks). """ import argparse -import hashlib import json import logging import os From 4abeb48cec142c9c551ced387da8a9908719d59c Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 23:38:41 +0200 Subject: [PATCH 5/8] Add a site icon --- .../83d74cceb607c6b19336d72f877ef474.jpg | Bin 0 -> 2144 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/siteicons/83d74cceb607c6b19336d72f877ef474.jpg diff --git a/docs/siteicons/83d74cceb607c6b19336d72f877ef474.jpg b/docs/siteicons/83d74cceb607c6b19336d72f877ef474.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e0d633ce9619d0b4a95daea7e5b02d56c7b77ba GIT binary patch literal 2144 zcmaiyc{tQ-8^?b$V=P4(*-cqyWE-+nq%_k5DWmrKoA&+*AB?@w}pa!?*8W`EC3Z064}Mq z)Wrcl6(j%>07L#Of*~Nj3KJ5R*at{TDXWM`%XmHAp@0Cs^mmK^R7hAv5W?3E@u&Ty zK)?b*KQSOML;xnipR!LG5SG-l|1KqM8X}{DF!Q?gnl}cBLijWo1O}i1Tqc*Aw)sS#b%b$7XO8PLPA8M4?m>$AgiO zzT5?k%h|8|C1jRlnH~!EeXvZ7x!Bj(H8#`Ou&SSVcXU1|Hh&xAz<8ry?^FlYj-qqV`>IzODf@h~|S|{(gLveDp~Im9*eSiAa)6YxI*})vDfaIv!)RjJ**t%MPLQ66V~XsCOywXZvkP~-_KxSvEC)>QKCK!EQs=FR>?j_6 zM2$WkZO>5*YSL?YPfP20=_eTH@g>ZCcv*htf)OnkA#-*j4|a zK7wsX#Ls(FEgG7;FMb?F97NsmoyprU=u(h=s)BM7kgFE!!qk@=|Di+6I1-*=lU>;D* z<^h6qN_yB6`Zii^;vCc}wQ<&8M50>{TZT?JdPU7A_PaI7 zOjT^2i;+Nz;(ZnLZnwO0wKTzuBz4t#n?(CMppVqrqmGPJf~VhZn;*k5K4{$DBSh|( z?3T8$<1+85AJ`*ZDUu0a+q-blvj3oZq3U^3LSTLC$rWxpah1xAHC^xQ*M`7#%}o1E z6uFyMzfrgTcsw$_Ja}@M{`5V#C}raXGyKOyoAz4yySt;M2?ZH#9r?0%##E9Bn^M+& z#JNkQS~ZW3)3`^>6_qMyqxHiT!?Q<}xoz?#(SC7-F z>lY&?>0b+1X10HwRysm6!D4GJK~qEWbI3N6N0N#8tlG-=`w?#jVgH%0On{i>4V) z%%ofVw~!8pyBJqxoYUD-6vijx{y9a8h?H6)+(IL9f2QUwvlHtIE?(6Q;)r(20642y zw8KkB{eX-_x2zoHSYAS!Z;b2MnNRmxrWG?&Ze`A+KmGn~V=Hy-M^xOCd*}tx4aK_e zb%T-r=J@86eLlQ}oj`qAY3rrPUj0nXq{}g(h6Y@# z>*YkhMyE!V?Q`9vppsd$N-x@J|0F$I=#N{&fn_?=SzXtnlRbSlxDg)SdGCKs1DC-t zTBl9aJw-lXI^xAUYHbB$r)e)IIl-*%DQ$#Bmrv+1=yb)!ZuY2kRy@625~Y`17j11k zz`(ILn~*O8RFu}2bk6_bJ6o7l5?+C-ZM=rBQXn(U+109H&jL#ouEc+ze7me~HADD< z&xn^8Ku9-7 g|CM$EO`x5U2qOi=7O}m*3z2k%p2nwluk)Dy0ePXGg#Z8m literal 0 HcmV?d00001 From a463087b0ac4886c83ef5ce458f6c27c4ba6a94f Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 23:39:00 +0200 Subject: [PATCH 6/8] Add icon fetching to data export --- Makefile | 4 +-- data_export.py | 84 ++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 83 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 47ff4a7..94a3e96 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,6 @@ spiderjobs: dockerimage spider: dockerimage docker run --rm -ti \ -v $(PWD)/webapp/dist/data:/out \ - -v $(PWD)/docs/siteicons:/icons \ -v $(PWD)/secrets:/secrets \ spider spider.py \ --credentials-path /secrets/datastore-writer.json \ @@ -32,10 +31,11 @@ test: dockerimage docker run --rm -ti spider /spider_test.py # export JSON data for the webapp -export: +export: dockerimage docker run --rm -ti \ -v $(PWD)/webapp/dist/data:/out \ -v $(PWD)/secrets:/secrets \ + -v $(PWD)/docs/siteicons:/icons \ spider data_export.py /secrets/datastore-reader.json # NodeJS modules for the webapp creation diff --git a/data_export.py b/data_export.py index 90119d0..ccbe6a7 100644 --- a/data_export.py +++ b/data_export.py @@ -3,10 +3,16 @@ Exports data from the database to JSON files for use in a static webapp """ from google.cloud import datastore +import hashlib import json +import logging import sys import os +import requests + + +SITEICONS_PATH = "/icons" client = None @@ -18,9 +24,26 @@ def export_results(): query = client.query(kind='spider-results') for entity in query.fetch(): - print(entity.key.name) + logging.debug(entity.key.name) out.append(dict(entity)["results"]) + # load icons, reformat icons details + for index in range(len(out)): + if "details" not in out[index]: + continue + if "icons" not in out[index]["details"]: + continue + urls = out[index]["details"]["icons"] + out[index]["details"]["icons"] = {} + for url in urls: + if not (url.startswith("http://") or url.startswith("https://")): + logging.debug("Skipping icon %s", url) + continue + logging.debug("Dowloading icon %s", url) + filename = download_icon(url) + if filename: + out[index]["details"]["icons"][url] = filename + output_filename = "/out/spider_result.json" with open(output_filename, 'w', encoding="utf8") as jsonfile: json.dump(out, jsonfile, indent=2, sort_keys=True, ensure_ascii=False) @@ -34,7 +57,7 @@ def export_screenshots(): query = client.query(kind='webscreenshot') for item in query.fetch(): - print(item['url'], os.path.basename(item['screenshot_url'])) + logging.debug(item['url'], os.path.basename(item['screenshot_url'])) out[item['url']] = os.path.basename(item['screenshot_url']) output_filename = "/out/screenshots.json" @@ -42,7 +65,62 @@ def export_screenshots(): json.dump(out, jsonfile, indent=2, sort_keys=True, ensure_ascii=False) +def download_icon(icon_url): + """ + Download an icon from the given URL and store it with + a file name of . + """ + + default_endings = { + "image/x-icon": "ico", + "image/vnd.microsoft.icon": "ico", + "image/png": "png", + "image/jpeg": "jpg", + } + + # Download the icon + try: + req = requests.get(icon_url, timeout=10) + except: + return None + if req.status_code >= 400: + return None + + content_hash = hashlib.md5(req.content).hexdigest() + extension = "" + + try: + file_name = os.path.basename(icon_url)[-1] + except IndexError as exc: + logging.error("Error in URL %s: %s", icon_url, exc) + return None + + if file_name != "" and "." in file_name: + ext = file_name.split(".")[-1] + if ext != "": + extension = ext + + if extension == "": + # derive from content type + ctype = req.headers.get('content-type') + try: + extension = default_endings[ctype] + except KeyError: + logging.error("No file ending defined for icon type '%s'", ctype) + return None + + filename = content_hash + "." + extension.lower() + + path = SITEICONS_PATH + os.path.sep + filename + with open(path, 'wb') as iconfile: + iconfile.write(req.content) + + return filename + + if __name__ == "__main__": + logging.basicConfig(level=logging.DEBUG) + if len(sys.argv) == 1: print("Error: please provide path to Google Storage API system account JSON file as argument") sys.exit(1) @@ -50,5 +128,5 @@ if __name__ == "__main__": key_path = sys.argv[1] client = datastore.Client.from_service_account_json(key_path) - export_screenshots() + #export_screenshots() export_results() From aa3b75add445294a54fec27d66b7ace32d5d1755 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 23:39:28 +0200 Subject: [PATCH 7/8] Data update with new icon data format --- webapp/dist/data/spider_result.json | 23544 +++++++++++++------------- 1 file changed, 12034 insertions(+), 11510 deletions(-) diff --git a/webapp/dist/data/spider_result.json b/webapp/dist/data/spider_result.json index b577e18..012c78b 100644 --- a/webapp/dist/data/spider_result.json +++ b/webapp/dist/data/spider_result.json @@ -23,9 +23,9 @@ "resolvable": false } }, - "icons": [ - "932005cdd933ad5de0f1e8197c77e195.ico" - ], + "icons": { + "http://die-gruenen-bissendorf.de/templates/etosha/favicon.ico": "932005cdd933ad5de0f1e8197c77e195.ico" + }, "ipv4_addresses": [ "80.77.31.190" ], @@ -61,7 +61,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen in Bissendorf" }, - "duration": 202, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -109,7 +109,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 197 }, "RESPONSIVE": { "score": 0, @@ -154,9 +154,9 @@ "resolved_hostname": "www.die-gruenen-burscheid.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://die-gruenen-burscheid.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.91" ], @@ -214,7 +214,7 @@ ], "title": "Die Grünen in Burscheid" }, - "duration": 635, + "duration": 663, "error": null, "responsive": { "document_width": { @@ -262,7 +262,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 635 + "value": 663 }, "RESPONSIVE": { "score": 1, @@ -304,9 +304,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://die-gruenen-meppen.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -341,7 +341,7 @@ "opengraph": null, "title": "Startseite - Die GRÜNEN in Meppen" }, - "duration": 592, + "duration": 532, "error": null, "responsive": { "document_width": { @@ -389,7 +389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 592 + "value": 532 }, "RESPONSIVE": { "score": 0, @@ -430,9 +430,9 @@ "resolved_hostname": "www.diegruenen-scheessel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://diegruenen-scheessel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -474,7 +474,7 @@ "opengraph": null, "title": "Ortsverband Scheeßel: Startseite" }, - "duration": 228, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -522,7 +522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -566,9 +566,9 @@ "resolved_hostname": "www.erbach.gruene-odenwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://erbach.gruene-odenwald.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -627,7 +627,7 @@ ], "title": "Grüne Stadtverband Erbach / Odw." }, - "duration": 474, + "duration": 515, "error": null, "responsive": { "document_width": { @@ -675,7 +675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 515 }, "RESPONSIVE": { "score": 1, @@ -719,9 +719,9 @@ "resolved_hostname": "www.gl-lautertal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gl-lautertal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.250.168.173" ], @@ -754,7 +754,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 354, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -779,13 +779,13 @@ ], "title": "Grüne Liste Lautertal" }, - "duration": 490, + "duration": 482, "error": null, "responsive": { "document_width": { "1024x768": 1026, "1920x1080": 1920, - "320x480": 320, + "320x480": 354, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -827,7 +827,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 490 + "value": 482 }, "RESPONSIVE": { "score": 1, @@ -867,9 +867,9 @@ "resolved_hostname": "www.gruene-abgland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-abgland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -911,7 +911,7 @@ "opengraph": null, "title": "Grüne Altenburg: Startseite" }, - "duration": 169, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -959,7 +959,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -999,9 +999,9 @@ "resolved_hostname": "www.gruene-ak.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ak.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -1043,7 +1043,7 @@ "opengraph": null, "title": "Kreisverband Altenkirchen: Home" }, - "duration": 235, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -1091,7 +1091,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -1135,9 +1135,9 @@ "resolved_hostname": "www.gruene-alfter.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-alfter.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.75.180.83" ], @@ -1195,7 +1195,7 @@ ], "title": "Ortsverband Alfter" }, - "duration": 980, + "duration": 31, "error": null, "responsive": { "document_width": { @@ -1241,9 +1241,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 980 + "value": 31 }, "RESPONSIVE": { "score": 1, @@ -1259,7 +1259,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -1287,9 +1287,9 @@ "resolved_hostname": "www.gruene-altmark.de" } }, - "icons": [ - "2acd93ebf6225a014f4820d5c57bcea1.png" - ], + "icons": { + "http://gruene-altmark.de/wp-content/uploads/2016/12/cropped-cropped-Logo_Sonnenblume-32x32.png": "2acd93ebf6225a014f4820d5c57bcea1.png" + }, "ipv4_addresses": [ "185.21.102.87" ], @@ -1346,7 +1346,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in der Altmark" }, - "duration": 550, + "duration": 500, "error": null, "responsive": { "document_width": { @@ -1394,7 +1394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 550 + "value": 500 }, "RESPONSIVE": { "score": 1, @@ -1438,9 +1438,9 @@ "resolved_hostname": "www.gruene-altmark.de" } }, - "icons": [ - "2acd93ebf6225a014f4820d5c57bcea1.png" - ], + "icons": { + "http://gruene-altmark.de/wp-content/uploads/2016/12/cropped-cropped-Logo_Sonnenblume-32x32.png": "2acd93ebf6225a014f4820d5c57bcea1.png" + }, "ipv4_addresses": [ "185.21.102.87" ], @@ -1497,7 +1497,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in der Altmark" }, - "duration": 517, + "duration": 512, "error": null, "responsive": { "document_width": { @@ -1545,7 +1545,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 512 }, "RESPONSIVE": { "score": 1, @@ -1589,9 +1589,9 @@ "resolved_hostname": "www.gruene-altrip.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-altrip.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.8" ], @@ -1653,7 +1653,7 @@ ], "title": "GRÜNE Altrip" }, - "duration": 255, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -1701,7 +1701,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -1741,9 +1741,9 @@ "resolved_hostname": "www.gruene-alzey-worms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-alzey-worms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -1785,7 +1785,7 @@ "opengraph": null, "title": "KV Alzey-Worms: Startseite" }, - "duration": 205, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -1833,7 +1833,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -1876,9 +1876,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-apen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -1923,7 +1923,7 @@ ], "title": "Grüne Apen" }, - "duration": 306, + "duration": 314, "error": null, "responsive": { "document_width": { @@ -1971,7 +1971,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 314 }, "RESPONSIVE": { "score": 1, @@ -2017,9 +2017,9 @@ "resolved_hostname": "www.gruene-bad-honnef.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bad-honnef.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -2078,7 +2078,7 @@ ], "title": "Bündnis 90/Die Grünen Bad Honnef" }, - "duration": 64, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -2126,7 +2126,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -2207,7 +2207,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN – Ortsverband Bad Nauheim" }, - "duration": 524, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -2256,7 +2256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 380 }, "RESPONSIVE": { "score": 1, @@ -2336,7 +2336,7 @@ "opengraph": null, "title": "Gruene Barnstorf" }, - "duration": 175, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -2385,7 +2385,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 161 }, "RESPONSIVE": { "score": 1, @@ -2427,9 +2427,10 @@ "resolved_hostname": "www.gruene-barsinghausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-barsinghausen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-barsinghausen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -2471,7 +2472,7 @@ "opengraph": null, "title": "Ortsverband Barsinghausen | ." }, - "duration": 227, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -2494,7 +2495,7 @@ "opengraph": null, "title": "Ortsverband Barsinghausen | ." }, - "duration": 219, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -2543,7 +2544,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -2588,9 +2589,10 @@ "resolved_hostname": "www.gruene-bensheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bensheim.de/wp-content/themes/1508143812-PQxCZo/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-bensheim.de/wp-content/themes/1508143812-PQxCZo/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.81" ], @@ -2642,7 +2644,7 @@ ], "title": "Grüne Liste Bensheim – Die Grünen" }, - "duration": 558, + "duration": 517, "error": null, "responsive": { "document_width": { @@ -2675,7 +2677,7 @@ ], "title": "Grüne Liste Bensheim – Die Grünen" }, - "duration": 550, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -2723,7 +2725,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 626 }, "RESPONSIVE": { "score": 1, @@ -2763,9 +2765,9 @@ "resolved_hostname": "www.gruene-bernkastel-wittlich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bernkastel-wittlich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -2807,7 +2809,7 @@ "opengraph": null, "title": "Kreisverband Bernkastel-Wittlich: Startseite" }, - "duration": 260, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -2855,7 +2857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 260 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -2898,9 +2900,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-beverstedt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.163" ], @@ -2945,7 +2947,7 @@ ], "title": "B90-Grüne Beverstedt" }, - "duration": 186, + "duration": 166, "error": null, "responsive": { "document_width": { @@ -2993,7 +2995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 166 }, "RESPONSIVE": { "score": 1, @@ -3038,9 +3040,9 @@ "resolved_hostname": "www.gruene-bezirksverband-mittelrhein.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bezirksverband-mittelrhein.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -3098,7 +3100,7 @@ ], "title": "Bezirksverband von BÜNDNIS 90/DIE GRÜNEN » GRÜNE Mittelrhein" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -3146,7 +3148,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 1, @@ -3186,9 +3188,9 @@ "resolved_hostname": "www.gruene-birkenfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-birkenfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3230,7 +3232,7 @@ "opengraph": null, "title": "Kreisverband Birkenfeld: Home" }, - "duration": 257, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -3278,7 +3280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -3373,7 +3375,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Blieskastel | Grün wirkt!" }, - "duration": 1000, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -3420,9 +3422,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": 1000 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -3438,7 +3440,7 @@ "value": true } }, - "score": 6.0 + "score": 6.5 }, { "details": { @@ -3462,9 +3464,9 @@ "resolved_hostname": "www.gruene-blk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-blk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3506,7 +3508,7 @@ "opengraph": null, "title": "KV Burgenlandkreis: Startseite" }, - "duration": 198, + "duration": 262, "error": null, "responsive": { "document_width": { @@ -3554,7 +3556,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -3598,9 +3600,9 @@ "resolved_hostname": "www.gruene-bocholt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bocholt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.54" ], @@ -3653,7 +3655,7 @@ ], "title": "- ORTSVERBAND BOCHOLTORTSVERBAND BOCHOLT" }, - "duration": 888, + "duration": 790, "error": null, "responsive": { "document_width": { @@ -3700,7 +3702,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 888 + "value": 790 }, "RESPONSIVE": { "score": 1, @@ -3740,9 +3742,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3784,7 +3786,7 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 192, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -3832,7 +3834,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -3872,273 +3874,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://www.gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://www.gruene-bochum.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE IN BOCHUM: Startseite" - }, - "duration": 206, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-bochum.de/startseite/" - } - ] - }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-nord/", - "meta": { - "city": "Bochum-Nord", - "district": "Bochum", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 206 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-bochum.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-bochum.de" - }, - "www.gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-bochum.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://www.gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://www.gruene-bochum.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE IN BOCHUM: Startseite" - }, - "duration": 248, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-bochum.de/startseite/" - } - ] - }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-ost/", - "meta": { - "city": "Bochum-Ost", - "district": "Bochum", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 248 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-bochum.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-bochum.de" - }, - "www.gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-bochum.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -4196,9 +3934,9 @@ } ] }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-sued/", + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-nord/", "meta": { - "city": "Bochum-Süd", + "city": "Bochum-Nord", "district": "Bochum", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -4268,9 +4006,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -4312,7 +4050,271 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 195, + "duration": 238, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-bochum.de/startseite/" + } + ] + }, + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-ost/", + "meta": { + "city": "Bochum-Ost", + "district": "Bochum", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 238 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-bochum.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-bochum.de" + }, + "www.gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bochum.de" + } + }, + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://www.gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://www.gruene-bochum.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE IN BOCHUM: Startseite" + }, + "duration": 218, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-bochum.de/startseite/" + } + ] + }, + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-sued/", + "meta": { + "city": "Bochum-Süd", + "district": "Bochum", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 218 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-bochum.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-bochum.de" + }, + "www.gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bochum.de" + } + }, + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://www.gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://www.gruene-bochum.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE IN BOCHUM: Startseite" + }, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -4360,7 +4362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -4407,9 +4409,7 @@ "resolved_hostname": "www.gruene-bokhorst-wankendorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "217.160.0.185" ], @@ -4584,9 +4584,9 @@ "resolved_hostname": "www.gruene-bornheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bornheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -4628,7 +4628,7 @@ "opengraph": null, "title": "Ortsverband Bornheim: Home" }, - "duration": 214, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -4676,7 +4676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -4720,9 +4720,9 @@ "resolved_hostname": "www.gruene-bous.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bous.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -4768,7 +4768,7 @@ "opengraph": null, "title": "Ortsverband Bous - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 307, + "duration": 369, "error": null, "responsive": { "document_width": { @@ -4815,7 +4815,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 307 + "value": 369 }, "RESPONSIVE": { "score": 1, @@ -4862,9 +4862,10 @@ "resolved_hostname": "www.gruene-braunschweig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-braunschweig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-braunschweig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.29" ], @@ -4921,7 +4922,7 @@ ], "title": "Grüne in BraunschweigGrüne Braunschweig" }, - "duration": 103, + "duration": 556, "error": null, "responsive": { "document_width": { @@ -4959,7 +4960,7 @@ ], "title": "Grüne in BraunschweigGrüne Braunschweig" }, - "duration": 628, + "duration": 870, "error": null, "responsive": { "document_width": { @@ -5007,7 +5008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 366 + "value": 713 }, "RESPONSIVE": { "score": 1, @@ -5047,9 +5048,9 @@ "resolved_hostname": "www.gruene-bremen-nordost.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-nordost.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5091,7 +5092,7 @@ "opengraph": null, "title": "KV Bremen-Nordost: Home" }, - "duration": 200, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -5139,7 +5140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -5179,9 +5180,9 @@ "resolved_hostname": "www.gruene-bremen-ost.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-ost.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5311,9 +5312,9 @@ "resolved_hostname": "www.gruene-bremervoerde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremervoerde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5355,7 +5356,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Bremervörde: Aktuelles" }, - "duration": 222, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -5403,7 +5404,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -5488,7 +5489,7 @@ "opengraph": null, "title": "Contenido" }, - "duration": 63, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -5511,7 +5512,7 @@ "opengraph": null, "title": "Contenido" }, - "duration": 60, + "duration": 107, "error": null, "responsive": { "document_width": { @@ -5562,7 +5563,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 92 }, "RESPONSIVE": { "score": 0, @@ -5643,7 +5644,7 @@ "opengraph": null, "title": "Die Grünen in Bubenreuth | Die Internetseite von Bündnis 90/DIE GRÜNEN – Ortsverband Bubenreuth" }, - "duration": 393, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -5692,7 +5693,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 393 + "value": 373 }, "RESPONSIVE": { "score": 1, @@ -5733,9 +5734,9 @@ "resolved_hostname": "www.gruene-buchholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-buchholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5777,7 +5778,7 @@ "opengraph": null, "title": "GRÜNE BUCHHOLZ: Startseite" }, - "duration": 221, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -5825,7 +5826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -5866,9 +5867,10 @@ "resolved_hostname": "www.gruene-burgdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-burgdorf.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-burgdorf.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -5910,7 +5912,7 @@ "opengraph": null, "title": "Ortsverband Burgdorf | ." }, - "duration": 231, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -5933,7 +5935,7 @@ "opengraph": null, "title": "Ortsverband Burgdorf | ." }, - "duration": 235, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -5982,7 +5984,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 260 }, "RESPONSIVE": { "score": 1, @@ -6025,9 +6027,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-cadolzburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.80" ], @@ -6072,7 +6074,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 294, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -6120,7 +6122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 320 }, "RESPONSIVE": { "score": 1, @@ -6161,9 +6163,9 @@ "resolved_hostname": "www.gruene-cloppenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cloppenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6205,7 +6207,7 @@ "opengraph": null, "title": "Kreisverband Cloppenburg: Home" }, - "duration": 252, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -6253,7 +6255,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 252 + "value": 231 }, "RESPONSIVE": { "score": 1, @@ -6297,9 +6299,9 @@ "resolved_hostname": "www.gruene-coelbe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-coelbe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.54" ], @@ -6357,7 +6359,7 @@ ], "title": "Die Grünen Cölbe" }, - "duration": 545, + "duration": 54, "error": null, "responsive": { "document_width": { @@ -6403,9 +6405,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 545 + "value": 54 }, "RESPONSIVE": { "score": 1, @@ -6421,7 +6423,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -6445,9 +6447,9 @@ "resolved_hostname": "www.gruene-cremlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cremlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6489,7 +6491,7 @@ "opengraph": null, "title": "Gemeindeverband Cremlingen: Startseite" }, - "duration": 196, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -6537,7 +6539,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -6577,9 +6579,9 @@ "resolved_hostname": "www.gruene-cw.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cw.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6621,7 +6623,7 @@ "opengraph": null, "title": "KV Charlottenburg-Wilmersdorf: Aktuelles" }, - "duration": 214, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -6669,7 +6671,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -6713,9 +6715,9 @@ "resolved_hostname": "www.gruene-dachau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-dachau.de/wp/wp-content/themes/1508053999-H8CBIu/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.137" ], @@ -6732,7 +6734,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -6740,7 +6742,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -6774,7 +6776,7 @@ ], "title": "Kreisverband Grüne Dachau" }, - "duration": 146, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -6822,7 +6824,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 146 + "value": 161 }, "RESPONSIVE": { "score": 1, @@ -6910,7 +6912,7 @@ "opengraph": null, "title": "gruene dieburg neu" }, - "duration": 82, + "duration": 84, "error": null, "responsive": { "document_width": { @@ -6933,7 +6935,7 @@ "opengraph": null, "title": "gruene dieburg neu" }, - "duration": 86, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -6982,9 +6984,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 84 + "value": 100 }, "RESPONSIVE": { "score": 1, @@ -7000,7 +7002,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -7028,9 +7030,9 @@ "resolved_hostname": "www.gruene-dietzenbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-dietzenbach.de/Wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.160.71.74" ], @@ -7088,7 +7090,7 @@ ], "title": "B90/Die Grünen Dietzenbach" }, - "duration": 835, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -7134,9 +7136,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 835 + "value": 73 }, "RESPONSIVE": { "score": 1, @@ -7152,7 +7154,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -7176,9 +7178,9 @@ "resolved_hostname": "www.gruene-donnersberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-donnersberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -7220,7 +7222,7 @@ "opengraph": null, "title": "Kreisverband Donnersberg: Home" }, - "duration": 226, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -7268,7 +7270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -7376,7 +7378,7 @@ "opengraph": null, "title": "Grüne Ortsverband Dudenhofen" }, - "duration": 61, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -7427,7 +7429,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -7471,9 +7473,9 @@ "resolved_hostname": "www.gruene-dudweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dudweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -7519,7 +7521,7 @@ "opengraph": null, "title": "Ortsverband Dudweiler - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 356, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -7566,7 +7568,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 356 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -7606,9 +7608,9 @@ "resolved_hostname": "www.gruene-eaf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eaf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -7650,7 +7652,7 @@ "opengraph": null, "title": "OV Elm-Asse-Fallstein: Startseite" }, - "duration": 167, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -7698,7 +7700,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -7745,9 +7747,10 @@ "resolved_hostname": "www.gruene-egelsbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-egelsbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-egelsbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.178" ], @@ -7800,7 +7803,7 @@ ], "title": "GRÜNE in Egelsbach" }, - "duration": 160, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -7834,7 +7837,7 @@ ], "title": "GRÜNE in Egelsbach" }, - "duration": 91, + "duration": 308, "error": null, "responsive": { "document_width": { @@ -7882,7 +7885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -7923,9 +7926,10 @@ "resolved_hostname": "www.gruene-eichenau.de" } }, - "icons": [ - "5a73b539cd667f41fab9916dffe52882.ico" - ], + "icons": { + "https://gruene-eichenau.de/layouts/moziloCMS/favicon.ico": "5a73b539cd667f41fab9916dffe52882.ico", + "https://www.gruene-eichenau.de/layouts/moziloCMS/favicon.ico": "5a73b539cd667f41fab9916dffe52882.ico" + }, "ipv4_addresses": [ "194.117.254.61" ], @@ -7967,7 +7971,7 @@ "opengraph": null, "title": "ORTSVERBAND EICHENAU" }, - "duration": 192, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -7990,7 +7994,7 @@ "opengraph": null, "title": "ORTSVERBAND EICHENAU" }, - "duration": 186, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -8039,7 +8043,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -8079,9 +8083,9 @@ "resolved_hostname": "www.gruene-eln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8123,7 +8127,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN KV Emsland Nord: Startseite" }, - "duration": 224, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -8171,7 +8175,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -8282,141 +8286,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "http://gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "http://www.gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "https://gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "https://www.gruene-en.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Ennepe-Ruhr: Home" - }, - "duration": 189, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-en.de/home/" - } - ] - }, - "input_url": "http://gruene-en.de/ortsverbaende/ortsverband-witten/ortsverband-witten0/", - "meta": { - "city": "Witten", - "district": "Ennepe-Ruhr", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 189 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-en.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-en.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-en.de" - }, - "www.gruene-en.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-en.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -8474,9 +8346,9 @@ } ] }, - "input_url": "http://gruene-en.de/ortsverbaende/ov-breckerfeld/home/", + "input_url": "http://gruene-en.de/ortsverbaende/ortsverband-witten/ortsverband-witten0/", "meta": { - "city": "Breckerfeld", + "city": "Witten", "district": "Ennepe-Ruhr", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -8546,9 +8418,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8590,7 +8462,139 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 228, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-en.de/home/" + } + ] + }, + "input_url": "http://gruene-en.de/ortsverbaende/ov-breckerfeld/home/", + "meta": { + "city": "Breckerfeld", + "district": "Ennepe-Ruhr", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-en.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-en.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-en.de" + }, + "www.gruene-en.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-en.de" + } + }, + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "http://gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "http://www.gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "https://gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "https://www.gruene-en.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Ennepe-Ruhr: Home" + }, + "duration": 262, "error": null, "responsive": { "document_width": { @@ -8638,7 +8642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -8678,9 +8682,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8722,7 +8726,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 189, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -8770,7 +8774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -8810,9 +8814,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8854,7 +8858,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 221, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -8902,7 +8906,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -8997,7 +9001,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ennepetal | Homepage der Partei Bündnis 90/Die Grünen in Ennepetal." }, - "duration": 976, + "duration": 731, "error": null, "responsive": { "document_width": { @@ -9046,7 +9050,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 976 + "value": 731 }, "RESPONSIVE": { "score": 1, @@ -9090,9 +9094,9 @@ "resolved_hostname": "www.gruene-ensdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ensdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -9138,7 +9142,7 @@ "opengraph": null, "title": "Ortsverband Ensdorf - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 311, + "duration": 365, "error": null, "responsive": { "document_width": { @@ -9185,7 +9189,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 365 }, "RESPONSIVE": { "score": 1, @@ -9228,9 +9232,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-essen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.168" ], @@ -9273,7 +9277,7 @@ ], "title": "GRÜNE Essen" }, - "duration": 324, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -9320,7 +9324,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 324 + "value": 280 }, "RESPONSIVE": { "score": 1, @@ -9362,9 +9366,10 @@ "resolved_hostname": "www.gruene-feldkirchen.de" } }, - "icons": [ - "8b4d5da43d1a3269ea1702c4acbc671d.ico" - ], + "icons": { + "http://gruene-feldkirchen.de/images_gruen/favicon.ico": "8b4d5da43d1a3269ea1702c4acbc671d.ico", + "http://www.gruene-feldkirchen.de/images_gruen/favicon.ico": "8b4d5da43d1a3269ea1702c4acbc671d.ico" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -9412,7 +9417,7 @@ "opengraph": null, "title": "GRÜNE IN FELDKIRCHEN" }, - "duration": 102, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -9435,7 +9440,7 @@ "opengraph": null, "title": "GRÜNE IN FELDKIRCHEN" }, - "duration": 70, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -9485,7 +9490,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 86 + "value": 71 }, "RESPONSIVE": { "score": 1, @@ -9529,9 +9534,9 @@ "resolved_hostname": "www.gruene-ffb.de" } }, - "icons": [ - "4822081b2998400cc4422b25ff099c37.ico" - ], + "icons": { + "http://gruene-ffb.de/wp-content/uploads/2018/04/gruene_favicon.ico": "4822081b2998400cc4422b25ff099c37.ico" + }, "ipv4_addresses": [ "134.119.234.203" ], @@ -9589,7 +9594,7 @@ ], "title": "Home - GRÜNE Fürstenfeldbruck" }, - "duration": 995, + "duration": 915, "error": null, "responsive": { "document_width": { @@ -9637,7 +9642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 995 + "value": 915 }, "RESPONSIVE": { "score": 1, @@ -9677,9 +9682,9 @@ "resolved_hostname": "www.gruene-frankenthal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-frankenthal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -9721,7 +9726,7 @@ "opengraph": null, "title": "Kreisverband Frankenthal: Home" }, - "duration": 219, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -9769,7 +9774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -9813,9 +9818,9 @@ "resolved_hostname": "www.gruene-friedrichsthal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-friedrichsthal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -9861,7 +9866,7 @@ "opengraph": null, "title": "Ortsverband Friedrichsthal - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 309, + "duration": 319, "error": null, "responsive": { "document_width": { @@ -9908,7 +9913,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 319 }, "RESPONSIVE": { "score": 1, @@ -9949,9 +9954,10 @@ "resolved_hostname": "www.gruene-garbsen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-garbsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-garbsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -9993,7 +9999,7 @@ "opengraph": null, "title": "Ortsverband Garbsen | ." }, - "duration": 280, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -10016,7 +10022,7 @@ "opengraph": null, "title": "Ortsverband Garbsen | ." }, - "duration": 227, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -10065,7 +10071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 254 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -10105,9 +10111,9 @@ "resolved_hostname": "www.gruene-ger.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ger.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10149,7 +10155,7 @@ "opengraph": null, "title": "B90/GRÜNE KV Germersheim: Home" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -10197,7 +10203,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -10237,9 +10243,9 @@ "resolved_hostname": "www.gruene-gera.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gera.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10281,7 +10287,7 @@ "opengraph": null, "title": "Grünes Gera: Willkommen bei den Geraer Grünen" }, - "duration": 239, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -10329,7 +10335,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -10373,9 +10379,9 @@ "resolved_hostname": "www.gruene-gersheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-gersheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -10421,7 +10427,7 @@ "opengraph": null, "title": "Ortsverband Gersheim - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 317, + "duration": 374, "error": null, "responsive": { "document_width": { @@ -10468,7 +10474,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 317 + "value": 374 }, "RESPONSIVE": { "score": 1, @@ -10508,9 +10514,9 @@ "resolved_hostname": "www.gruene-gotha.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gotha.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10552,7 +10558,7 @@ "opengraph": null, "title": "Für mehr Grün im Landkreis: Aktuelles" }, - "duration": 220, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -10600,7 +10606,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -10640,9 +10646,9 @@ "resolved_hostname": "www.gruene-greiz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-greiz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10684,7 +10690,7 @@ "opengraph": null, "title": "Kreisverband Greiz: Startseite" }, - "duration": 683, + "duration": 180, "error": null, "responsive": { "document_width": { @@ -10732,7 +10738,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 683 + "value": 180 }, "RESPONSIVE": { "score": 1, @@ -10775,9 +10781,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-guenzburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.84" ], @@ -10797,7 +10803,7 @@ } ], "responsive": { - "min_width": 352, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -10823,13 +10829,13 @@ ], "title": "Grüne Günzburg" }, - "duration": 255, + "duration": 278, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 352, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -10871,7 +10877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -10916,9 +10922,9 @@ "resolved_hostname": "www.gruene-gundelfingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-gundelfingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.102" ], @@ -10976,7 +10982,7 @@ ], "title": "Gruene Gundelfingen" }, - "duration": 576, + "duration": 637, "error": null, "responsive": { "document_width": { @@ -11024,7 +11030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 576 + "value": 637 }, "RESPONSIVE": { "score": 1, @@ -11068,9 +11074,9 @@ "resolved_hostname": "www.gruene-haar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/haar/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -11129,7 +11135,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 533, + "duration": 502, "error": null, "responsive": { "document_width": { @@ -11176,7 +11182,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 533 + "value": 502 }, "RESPONSIVE": { "score": 1, @@ -11261,7 +11267,7 @@ "opengraph": null, "title": "Grüne Halberg" }, - "duration": 77, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -11284,7 +11290,7 @@ "opengraph": null, "title": "Grüne Halberg" }, - "duration": 102, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -11335,7 +11341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 90 + "value": 76 }, "RESPONSIVE": { "score": 0, @@ -11379,9 +11385,9 @@ "resolved_hostname": "www.gruene-hallewestfalen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hallewestfalen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -11440,7 +11446,7 @@ ], "title": "Bündnis 90/Die Grünen Halle (Westf.)" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -11488,7 +11494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 1, @@ -11529,9 +11535,10 @@ "resolved_hostname": "www.gruene-hemmingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hemmingen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-hemmingen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -11573,7 +11580,7 @@ "opengraph": null, "title": "Ortsverband Hemmingen | ." }, - "duration": 212, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -11596,7 +11603,7 @@ "opengraph": null, "title": "Ortsverband Hemmingen | ." }, - "duration": 240, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -11645,7 +11652,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -11685,9 +11692,9 @@ "resolved_hostname": "www.gruene-hennef.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hennef.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -11729,7 +11736,7 @@ "opengraph": null, "title": "B90/GRÜNE Hennef: Aktuelles" }, - "duration": 561, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -11777,7 +11784,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 561 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -11821,9 +11828,9 @@ "resolved_hostname": "www.gruene-heusweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-heusweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -11850,7 +11857,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -11869,13 +11876,13 @@ "opengraph": null, "title": "Grüne Heusweiler - Stark für die Region !" }, - "duration": 388, + "duration": 295, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -11916,7 +11923,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 388 + "value": 295 }, "RESPONSIVE": { "score": 1, @@ -11960,9 +11967,9 @@ "resolved_hostname": "www.gruene-hofheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hofheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.185" ], @@ -12021,7 +12028,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN" }, - "duration": 255, + "duration": 862, "error": null, "responsive": { "document_width": { @@ -12069,7 +12076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 862 }, "RESPONSIVE": { "score": 1, @@ -12109,9 +12116,9 @@ "resolved_hostname": "www.gruene-hollenstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hollenstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12153,7 +12160,7 @@ "opengraph": null, "title": "Ortsverband Hollenstedt: Aktuelles" }, - "duration": 193, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -12201,7 +12208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -12243,9 +12250,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-homburg.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "85.214.227.211" ], @@ -12257,7 +12264,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-homburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-homburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -12280,7 +12287,7 @@ "opengraph": null, "title": "Startseite - Grüne Homburg" }, - "duration": 817, + "duration": 792, "error": null, "responsive": { "document_width": { @@ -12328,7 +12335,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 817 + "value": 792 }, "RESPONSIVE": { "score": 0, @@ -12399,7 +12406,7 @@ "opengraph": null, "title": "Bündnis 90/ Die Grünen St. Ingbert" }, - "duration": 59, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -12449,7 +12456,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -12490,9 +12497,9 @@ "resolved_hostname": "www.gruene-im-vest.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-im-vest.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12534,7 +12541,7 @@ "opengraph": null, "title": "KV Recklinghausen: Home" }, - "duration": 199, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -12582,7 +12589,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -12622,9 +12629,9 @@ "resolved_hostname": "www.gruene-im-weimarer-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-im-weimarer-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12666,7 +12673,7 @@ "opengraph": null, "title": "GRÜNE IM WEIMARER LAND: Grüne Neuigkeiten" }, - "duration": 161, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -12714,7 +12721,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 161 + "value": 173 }, "RESPONSIVE": { "score": 1, @@ -12828,9 +12835,9 @@ "resolvable": false } }, - "icons": [ - "6d11f61fcfc825f4f5446a844d910cd7.png" - ], + "icons": { + "https://gruene-inden.de/wp-content/uploads/2018/04/cropped-sonnenblume_4c_auf_transparent_hellesgelb-32x32.png": "6d11f61fcfc825f4f5446a844d910cd7.png" + }, "ipv4_addresses": [ "81.169.145.160" ], @@ -12866,7 +12873,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – Ortsgruppe Inden" }, - "duration": 577, + "duration": 567, "error": null, "responsive": { "document_width": { @@ -12913,7 +12920,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 577 + "value": 567 }, "RESPONSIVE": { "score": 0, @@ -12955,9 +12962,10 @@ "resolved_hostname": "www.gruene-isernhagen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-isernhagen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-isernhagen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -12999,7 +13007,7 @@ "opengraph": null, "title": "Ortsverband Isernhagen | ." }, - "duration": 214, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -13022,7 +13030,7 @@ "opengraph": null, "title": "Ortsverband Isernhagen | ." }, - "duration": 258, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -13071,7 +13079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -13156,7 +13164,7 @@ "opengraph": null, "title": "Die Grünen Ismaning" }, - "duration": 138, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -13179,7 +13187,7 @@ "opengraph": null, "title": "Die Grünen Ismaning" }, - "duration": 129, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -13228,9 +13236,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 134 + "value": 83 }, "RESPONSIVE": { "score": 0, @@ -13246,7 +13254,7 @@ "value": true } }, - "score": 3.5 + "score": 4.0 }, { "details": { @@ -13270,9 +13278,9 @@ "resolved_hostname": "www.gruene-jena.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-jena.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -13314,7 +13322,7 @@ "opengraph": null, "title": "Die Grünen in Jena: AKTUELLES" }, - "duration": 215, + "duration": 658, "error": null, "responsive": { "document_width": { @@ -13362,7 +13370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 658 }, "RESPONSIVE": { "score": 1, @@ -13406,9 +13414,9 @@ "resolved_hostname": "www.gruene-jerichower-land.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-jerichower-land.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.60" ], @@ -13425,7 +13433,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -13433,7 +13441,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -13466,7 +13474,7 @@ ], "title": "Kreisverband Jerichower Land | BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 770, + "duration": 410, "error": null, "responsive": { "document_width": { @@ -13514,7 +13522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 410 }, "RESPONSIVE": { "score": 1, @@ -13592,7 +13600,7 @@ "urlchecks": [ { "content": null, - "duration": 614, + "duration": 483, "error": null, "responsive": { "document_width": { @@ -13608,7 +13616,7 @@ }, { "content": null, - "duration": 197, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -13659,7 +13667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 406 + "value": 346 }, "RESPONSIVE": { "score": 0, @@ -13734,7 +13742,7 @@ ], "title": "Bündnis 90/Die Grünen Kassel" }, - "duration": 199, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -13783,7 +13791,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -13829,9 +13837,9 @@ "resolved_hostname": "www.gruene-kinzigtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-kinzigtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.236" ], @@ -13889,7 +13897,7 @@ ], "title": "Grüne Kinzigtal" }, - "duration": 198, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -13912,7 +13920,7 @@ "opengraph": null, "title": null }, - "duration": 55, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -13961,7 +13969,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -14004,6 +14012,7 @@ "resolved_hostname": "www.gruene-kirchhain.de" } }, + "icons": {}, "ipv4_addresses": [ "217.11.48.105" ], @@ -14051,7 +14060,7 @@ "opengraph": null, "title": "Grüne Kommunalpolitik" }, - "duration": 241, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -14084,9 +14093,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -14100,7 +14108,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 218 }, "RESPONSIVE": { "score": 0, @@ -14116,7 +14124,7 @@ "value": true } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -14140,9 +14148,9 @@ "resolved_hostname": "www.gruene-kl.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -14184,7 +14192,7 @@ "opengraph": null, "title": "Kaiserslautern: Home - Aktuelles" }, - "duration": 284, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -14232,7 +14240,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 284 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -14276,9 +14284,9 @@ "resolved_hostname": "www.gruene-kleinblittersdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kleinblittersdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -14324,7 +14332,7 @@ "opengraph": null, "title": "Ortsverband Kleinblittersdorf - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 313, + "duration": 287, "error": null, "responsive": { "document_width": { @@ -14371,7 +14379,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 313 + "value": 287 }, "RESPONSIVE": { "score": 1, @@ -14415,9 +14423,9 @@ "resolved_hostname": "www.gruene-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -14476,7 +14484,7 @@ ], "title": "Ortsverband Kleve › Grüne Kleve" }, - "duration": 457, + "duration": 520, "error": null, "responsive": { "document_width": { @@ -14524,7 +14532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 457 + "value": 520 }, "RESPONSIVE": { "score": 1, @@ -14564,9 +14572,9 @@ "resolved_hostname": "www.gruene-koblenz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-koblenz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -14608,7 +14616,7 @@ "opengraph": null, "title": "Kreisverband Koblenz: Home" }, - "duration": 241, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -14656,7 +14664,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -14698,9 +14706,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-kriftel.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -14735,7 +14743,7 @@ "opengraph": null, "title": "Startseite - Bündnis90/Die Grünen – Ortsverband Kriftel" }, - "duration": 179, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -14783,7 +14791,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 179 + "value": 185 }, "RESPONSIVE": { "score": 0, @@ -14828,9 +14836,9 @@ "resolved_hostname": "www.gruene-krummhoern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-krummhoern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "83.169.42.104" ], @@ -14882,7 +14890,7 @@ ], "title": "Grüne Krummhörn" }, - "duration": 696, + "duration": 669, "error": null, "responsive": { "document_width": { @@ -14929,7 +14937,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 696 + "value": 669 }, "RESPONSIVE": { "score": 1, @@ -14969,9 +14977,9 @@ "resolved_hostname": "www.gruene-kusel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kusel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15013,7 +15021,7 @@ "opengraph": null, "title": "Kreisverband Kusel: Willkommen" }, - "duration": 175, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -15061,7 +15069,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 178 }, "RESPONSIVE": { "score": 1, @@ -15105,9 +15113,9 @@ "resolved_hostname": "www.gruene-kv-borken.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kv-borken.de/wp-content/themes/1507917786-b0aO66/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.225" ], @@ -15160,7 +15168,7 @@ ], "title": "KV BORKENVORSTAND DES KV BORKEN" }, - "duration": 943, + "duration": 733, "error": null, "responsive": { "document_width": { @@ -15207,7 +15215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 943 + "value": 733 }, "RESPONSIVE": { "score": 1, @@ -15247,9 +15255,9 @@ "resolved_hostname": "www.gruene-kv-lauenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-lauenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15291,7 +15299,7 @@ "opengraph": null, "title": "Herzogtum Lauenburg: Home – Aktuelles" }, - "duration": 208, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -15339,7 +15347,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -15379,9 +15387,9 @@ "resolved_hostname": "www.gruene-kv-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15423,7 +15431,7 @@ "opengraph": null, "title": "Kreisverband Stade: Aktuelle Informationen aus dem Kreisverband Stade - Bündnis90/Die Grünen" }, - "duration": 207, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -15471,7 +15479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -15512,9 +15520,10 @@ "resolved_hostname": "www.gruene-laatzen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-laatzen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-laatzen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -15556,7 +15565,7 @@ "opengraph": null, "title": "Ortsverband Laatzen | ." }, - "duration": 214, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -15579,7 +15588,7 @@ "opengraph": null, "title": "Ortsverband Laatzen | ." }, - "duration": 275, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -15628,7 +15637,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -15668,9 +15677,9 @@ "resolved_hostname": "www.gruene-le.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-le.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15712,7 +15721,7 @@ "opengraph": null, "title": "Leinfelden-Echterdingen: Startseite" }, - "duration": 217, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -15760,7 +15769,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -15804,9 +15813,9 @@ "resolved_hostname": "www.gruene-lebach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-lebach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -15852,7 +15861,7 @@ "opengraph": null, "title": "Ortsverband Lebach - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 286, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -15899,7 +15908,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 286 + "value": 327 }, "RESPONSIVE": { "score": 1, @@ -15939,9 +15948,9 @@ "resolved_hostname": "www.gruene-leichlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-leichlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15983,7 +15992,7 @@ "opengraph": null, "title": "Ortsverband Leichlingen: Home" }, - "duration": 192, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -16031,7 +16040,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -16075,9 +16084,9 @@ "resolved_hostname": "www.gruene-lichtenberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-lichtenberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.22" ], @@ -16094,7 +16103,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -16102,7 +16111,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -16135,7 +16144,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 945, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -16183,7 +16192,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 945 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -16226,9 +16235,9 @@ "resolved_hostname": "www.gruene-limburgerhof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-limburgerhof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16273,7 +16282,7 @@ "opengraph": null, "title": "Ortsverband Limburgerhof: Startseite" }, - "duration": 250, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -16320,7 +16329,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 219 }, "RESPONSIVE": { "score": 0, @@ -16362,9 +16371,9 @@ "resolvable": false } }, - "icons": [ - "4a8754784888a49ad98e0a7afce8a906.ico" - ], + "icons": { + "http://gruene-lorsch.de/wp-content/themes/greenchameleon-0.9/options/images/favicon.ico": "4a8754784888a49ad98e0a7afce8a906.ico" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -16405,7 +16414,7 @@ ], "title": "Lorsch - Fraktion in der Stadtverordnetenversammlung" }, - "duration": 542, + "duration": 581, "error": null, "responsive": { "document_width": { @@ -16453,7 +16462,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 542 + "value": 581 }, "RESPONSIVE": { "score": 0, @@ -16497,9 +16506,9 @@ "resolved_hostname": "www.gruene-luedinghausen.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-luedinghausen.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -16547,7 +16556,7 @@ "opengraph": null, "title": "Ortsverband der Grünen Lüdinghausen » Bündnis 90/Die Grünen Lüdinghausen" }, - "duration": 870, + "duration": 891, "error": null, "responsive": { "document_width": { @@ -16595,7 +16604,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 870 + "value": 891 }, "RESPONSIVE": { "score": 0, @@ -16635,9 +16644,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16679,7 +16688,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 198, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -16727,7 +16736,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -16767,9 +16776,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16811,7 +16820,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 203, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -16859,7 +16868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -16899,9 +16908,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16943,7 +16952,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 206, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -16991,7 +17000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -17031,9 +17040,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17163,9 +17172,9 @@ "resolved_hostname": "www.gruene-magdeburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-magdeburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17192,7 +17201,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 480, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -17207,13 +17216,13 @@ "opengraph": null, "title": "Kreisverband Magdeburg: Start" }, - "duration": 245, + "duration": 201, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 480, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -17255,7 +17264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -17295,9 +17304,9 @@ "resolved_hostname": "www.gruene-mansfeld-suedharz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mansfeld-suedharz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17339,7 +17348,7 @@ "opengraph": null, "title": "KV Mansfeld-Südharz: Home" }, - "duration": 330, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -17387,7 +17396,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 330 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -17460,7 +17469,7 @@ "opengraph": null, "title": "Die Gruenen in Meckenheim" }, - "duration": 74, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -17510,7 +17519,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 74 + "value": 95 }, "RESPONSIVE": { "score": 1, @@ -17551,9 +17560,9 @@ "resolved_hostname": "www.gruene-mettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17595,7 +17604,7 @@ "opengraph": null, "title": "OV Mettingen: Startseite" }, - "duration": 191, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -17643,7 +17652,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -17688,9 +17697,9 @@ "resolved_hostname": "www.gruene-mitte.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mitte.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.67.28.209" ], @@ -17717,7 +17726,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 383, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -17749,13 +17758,13 @@ ], "title": "Willkommen - Bündnis 90 Die Grünen Berlin-MitteGrüne Mitte" }, - "duration": 748, + "duration": 219, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 383, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -17796,7 +17805,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 748 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -17840,9 +17849,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -17895,7 +17904,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 903, + "duration": 962, "error": null, "responsive": { "document_width": { @@ -17942,7 +17951,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 903 + "value": 962 }, "RESPONSIVE": { "score": 1, @@ -17982,9 +17991,9 @@ "resolved_hostname": "www.gruene-monheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-monheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18026,7 +18035,7 @@ "opengraph": null, "title": "Grüne Monheim: Home" }, - "duration": 201, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -18074,7 +18083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -18159,7 +18168,7 @@ "opengraph": null, "title": "Grüne Mühltal" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -18182,7 +18191,7 @@ "opengraph": null, "title": "Grüne Mühltal" }, - "duration": 70, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -18233,7 +18242,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 72 }, "RESPONSIVE": { "score": 0, @@ -18276,9 +18285,9 @@ "resolved_hostname": "www.gruene-mv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18323,7 +18332,7 @@ "opengraph": null, "title": "Mecklenburg-Vorpommern: Start" }, - "duration": 240, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -18370,7 +18379,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -18414,9 +18423,9 @@ "resolved_hostname": "www.gruene-neckargemuend.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-neckargemuend.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -18474,7 +18483,7 @@ ], "title": "- Bündnis 90/Die Grünen – OV Neckargemünd" }, - "duration": 383, + "duration": 434, "error": null, "responsive": { "document_width": { @@ -18522,7 +18531,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 434 }, "RESPONSIVE": { "score": 0, @@ -18562,9 +18571,9 @@ "resolved_hostname": "www.gruene-neumuenster.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neumuenster.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18606,7 +18615,7 @@ "opengraph": null, "title": "Grüne Neumünster: Aktuelles" }, - "duration": 190, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -18654,7 +18663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -18697,9 +18706,9 @@ "resolved_hostname": "www.gruene-neunkirchen-am-brand.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-neunkirchen-am-brand.de/wordpress/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.8.207.7" ], @@ -18747,7 +18756,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Neunkirchen am Brand" }, - "duration": 975, + "duration": 926, "error": null, "responsive": { "document_width": { @@ -18795,7 +18804,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 975 + "value": 926 }, "RESPONSIVE": { "score": 0, @@ -18835,9 +18844,9 @@ "resolved_hostname": "www.gruene-neuwied.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neuwied.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18879,7 +18888,7 @@ "opengraph": null, "title": "Kreisverband Neuwied: Home" }, - "duration": 236, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -18927,7 +18936,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -18972,9 +18981,9 @@ "resolved_hostname": "www.gruene-nideggen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-nideggen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.121" ], @@ -18991,7 +19000,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -18999,7 +19008,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19038,7 +19047,7 @@ ], "title": "" }, - "duration": 503, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -19086,7 +19095,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 503 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -19130,9 +19139,9 @@ "resolved_hostname": "www.gruene-niederaula.de" } }, - "icons": [ - "d4b7217bba56a47dd0a55118680e29d0.jpg" - ], + "icons": { + "http://gruene-niederaula.de/wp-content/uploads/2016/02/1-Orig-Logo-150x85.jpg": "d4b7217bba56a47dd0a55118680e29d0.jpg" + }, "ipv4_addresses": [ "89.31.143.100" ], @@ -19149,7 +19158,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19157,7 +19166,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19184,7 +19193,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Niederaula" }, - "duration": 422, + "duration": 334, "error": null, "responsive": { "document_width": { @@ -19232,7 +19241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 334 }, "RESPONSIVE": { "score": 1, @@ -19317,7 +19326,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Niederzier" }, - "duration": 62, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -19340,7 +19349,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Niederzier" }, - "duration": 59, + "duration": 71, "error": null, "responsive": { "document_width": { @@ -19391,7 +19400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -19431,9 +19440,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -19475,7 +19484,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 198, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -19523,7 +19532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -19563,405 +19572,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 203, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-mittelweser/", - "meta": { - "city": "Mittelweser", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 203 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 241, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-nienburg/", - "meta": { - "city": "Nienburg", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 241 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 197, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-steimbke/", - "meta": { - "city": "Steimbke", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 197 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -20019,9 +19632,9 @@ } ] }, - "input_url": "http://gruene-nienburg.de/ortsverband-steyerberg/", + "input_url": "http://gruene-nienburg.de/ortsverband-mittelweser/", "meta": { - "city": "Steyerberg", + "city": "Mittelweser", "district": "Nienburg", "level": "DE:ORTSVERBAND", "state": "Niedersachsen" @@ -20091,9 +19704,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20135,7 +19748,403 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 193, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-nienburg/", + "meta": { + "city": "Nienburg", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 198, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-steimbke/", + "meta": { + "city": "Steimbke", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 198 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 245, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-steyerberg/", + "meta": { + "city": "Steyerberg", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 245 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -20183,7 +20192,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -20227,9 +20236,9 @@ "resolved_hostname": "www.gruene-nks.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-nks.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.129.167" ], @@ -20288,7 +20297,7 @@ ], "title": "Grüne Neunkirchen-Seelscheid" }, - "duration": 238, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -20336,7 +20345,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -20376,9 +20385,9 @@ "resolved_hostname": "www.gruene-norden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-norden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20420,7 +20429,7 @@ "opengraph": null, "title": "Ortsverband Stadt Norden: Home" }, - "duration": 200, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -20468,7 +20477,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -20508,9 +20517,9 @@ "resolved_hostname": "www.gruene-northeim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-northeim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20552,7 +20561,7 @@ "opengraph": null, "title": "Ortsverband Northeim: Startseite" }, - "duration": 172, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -20600,7 +20609,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 175 }, "RESPONSIVE": { "score": 1, @@ -20644,9 +20653,9 @@ "resolved_hostname": "www.gruene-nuembrecht.de" } }, - "icons": [ - "ccee93bd02b00be593e0ab7b81491fdd.ico" - ], + "icons": { + "https://www.gruene-nuembrecht.de/favicon.ico": "ccee93bd02b00be593e0ab7b81491fdd.ico" + }, "ipv4_addresses": [ "83.169.42.104" ], @@ -20689,7 +20698,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Nümbrecht" }, - "duration": 201, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -20716,7 +20725,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Nümbrecht" }, - "duration": 245, + "duration": 269, "error": null, "responsive": { "document_width": { @@ -20764,7 +20773,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 237 }, "RESPONSIVE": { "score": 0, @@ -20807,9 +20816,9 @@ "resolved_hostname": "www.gruene-nw.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nw.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20854,7 +20863,7 @@ "opengraph": null, "title": "KV Neustadt a. d. Weinstrasse: Home" }, - "duration": 209, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -20901,7 +20910,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -20945,9 +20954,9 @@ "resolved_hostname": "www.gruene-ober-ramstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ober-ramstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -21005,7 +21014,7 @@ ], "title": "GRÜNE Ober-Ramstadt" }, - "duration": 376, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -21053,7 +21062,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 376 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -21097,9 +21106,9 @@ "resolved_hostname": "www.gruene-oberpfalz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-oberpfalz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.7" ], @@ -21158,7 +21167,7 @@ ], "title": "Grüne Oberpfalz" }, - "duration": 480, + "duration": 450, "error": null, "responsive": { "document_width": { @@ -21206,7 +21215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 480 + "value": 450 }, "RESPONSIVE": { "score": 1, @@ -21251,9 +21260,10 @@ "resolved_hostname": "www.gruene-oberzent.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-oberzent.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico", + "https://gruene-oberzent.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -21301,7 +21311,7 @@ ], "title": "Startseite - Bündnis 90 / Die Grünen Oberzent - - Bündnis 90 / Die Grünen Oberzent" }, - "duration": 350, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -21333,7 +21343,7 @@ ], "title": "Startseite - Bündnis 90 / Die Grünen Oberzent - - Bündnis 90 / Die Grünen Oberzent" }, - "duration": 437, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -21381,7 +21391,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 394 + "value": 455 }, "RESPONSIVE": { "score": 0, @@ -21424,9 +21434,9 @@ "resolved_hostname": "www.gruene-olching.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://www.gruene-olching.de/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "80.237.132.107" ], @@ -21443,7 +21453,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21451,7 +21461,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21474,7 +21484,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN Olching" }, - "duration": 343, + "duration": 371, "error": null, "responsive": { "document_width": { @@ -21522,7 +21532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 343 + "value": 371 }, "RESPONSIVE": { "score": 0, @@ -21566,9 +21576,9 @@ "resolved_hostname": "www.gruene-ortenau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ortenau.de/wp-9b89d-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.10" ], @@ -21585,7 +21595,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21593,7 +21603,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21626,7 +21636,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortenau" }, - "duration": 521, + "duration": 539, "error": null, "responsive": { "document_width": { @@ -21674,7 +21684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 521 + "value": 539 }, "RESPONSIVE": { "score": 1, @@ -21714,9 +21724,9 @@ "resolved_hostname": "www.gruene-os.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -21758,7 +21768,7 @@ "opengraph": null, "title": "Stadtverband Osnabrück: Startseite" }, - "duration": 193, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -21806,7 +21816,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -21850,9 +21860,9 @@ "resolved_hostname": "www.gruene-ottweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ottweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -21898,7 +21908,7 @@ "opengraph": null, "title": "Ortsverband Ottweiler - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 303, + "duration": 338, "error": null, "responsive": { "document_width": { @@ -21945,7 +21955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 303 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -21985,9 +21995,9 @@ "resolved_hostname": "www.gruene-pankow.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pankow.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22029,7 +22039,7 @@ "opengraph": null, "title": "Homepage Kreisverband Pankow: Home" }, - "duration": 218, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -22077,7 +22087,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -22122,9 +22132,10 @@ "resolved_hostname": "www.gruene-passau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.129" ], @@ -22169,7 +22180,6 @@ "icon": "http://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -22177,7 +22187,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Kreisverband Passau-Stadt" }, - "duration": 25, + "duration": 953, "error": null, "responsive": { "document_width": { @@ -22203,7 +22213,6 @@ "icon": "https://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -22211,7 +22220,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Kreisverband Passau-Stadt" }, - "duration": 95, + "duration": 926, "error": null, "responsive": { "document_width": { @@ -22256,9 +22265,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 60 + "value": 940 }, "RESPONSIVE": { "score": 1, @@ -22274,7 +22283,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -22298,9 +22307,9 @@ "resolved_hostname": "www.gruene-pattensen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pattensen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22342,7 +22351,7 @@ "opengraph": null, "title": "Ortsverband Pattensen: Aus dem Ortsverband" }, - "duration": 212, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -22390,7 +22399,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -22437,9 +22446,10 @@ "resolved_hostname": "www.gruene-pforzheim-enz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-pforzheim-enz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-pforzheim-enz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.1" ], @@ -22491,7 +22501,7 @@ ], "title": "- Bündnis 90 / Die Grünen" }, - "duration": 610, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -22524,7 +22534,7 @@ ], "title": "- Bündnis 90 / Die Grünen" }, - "duration": 740, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -22572,7 +22582,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 675 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -22612,9 +22622,9 @@ "resolved_hostname": "www.gruene-pirmasens.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pirmasens.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22656,7 +22666,7 @@ "opengraph": null, "title": "Stadtverband Pirmasens: Home" }, - "duration": 171, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -22704,7 +22714,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 149 }, "RESPONSIVE": { "score": 1, @@ -22748,9 +22758,9 @@ "resolved_hostname": "www.gruene-rastatt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rastatt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.227.247.44" ], @@ -22808,7 +22818,7 @@ ], "title": "GRÜNE RASTATT" }, - "duration": 235, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -22856,7 +22866,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -22900,9 +22910,9 @@ "resolved_hostname": "www.gruene-rees.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rees.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.216" ], @@ -22960,7 +22970,7 @@ ], "title": "Die GRÜNEN Rees" }, - "duration": 728, + "duration": 846, "error": null, "responsive": { "document_width": { @@ -23008,7 +23018,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 728 + "value": 846 }, "RESPONSIVE": { "score": 1, @@ -23053,9 +23063,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -23072,7 +23082,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23080,7 +23090,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23114,7 +23124,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 546, + "duration": 526, "error": null, "responsive": { "document_width": { @@ -23162,7 +23172,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 546 + "value": 526 }, "RESPONSIVE": { "score": 1, @@ -23207,9 +23217,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -23226,7 +23236,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23234,7 +23244,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23268,7 +23278,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 562, + "duration": 555, "error": null, "responsive": { "document_width": { @@ -23316,7 +23326,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 562 + "value": 555 }, "RESPONSIVE": { "score": 1, @@ -23356,9 +23366,9 @@ "resolved_hostname": "www.gruene-reichshof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reichshof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23400,7 +23410,7 @@ "opengraph": null, "title": "Reichshof: Startseite" }, - "duration": 222, + "duration": 253, "error": null, "responsive": { "document_width": { @@ -23448,7 +23458,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 253 }, "RESPONSIVE": { "score": 1, @@ -23488,9 +23498,9 @@ "resolved_hostname": "www.gruene-reinickendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reinickendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23532,7 +23542,7 @@ "opengraph": null, "title": "Kreisverband Reinickendorf: Startseite" }, - "duration": 194, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -23580,7 +23590,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -23625,9 +23635,9 @@ "resolved_hostname": "www.gruene-rendsburg-eckernfoerde.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rendsburg-eckernfoerde.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.147", "217.70.186.100" @@ -23686,7 +23696,7 @@ ], "title": "KV Rendsburg-Eckernförde" }, - "duration": 326, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -23702,7 +23712,7 @@ }, { "content": null, - "duration": 57, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -23750,7 +23760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 248 }, "RESPONSIVE": { "score": 1, @@ -23790,9 +23800,9 @@ "resolved_hostname": "www.gruene-rh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23834,7 +23844,7 @@ "opengraph": null, "title": "KV Rhein-Hunsrück: HOME" }, - "duration": 196, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -23882,7 +23892,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -23926,9 +23936,9 @@ "resolved_hostname": "www.gruene-rhein-sieg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rhein-sieg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -23986,7 +23996,7 @@ ], "title": "Kreisverband von Bündnis 90/Die Grünen » Bündnis 90/Die Grünen Rhein-Sieg" }, - "duration": 57, + "duration": 59, "error": null, "responsive": { "document_width": { @@ -24034,7 +24044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 57 + "value": 59 }, "RESPONSIVE": { "score": 1, @@ -24078,9 +24088,9 @@ "resolved_hostname": "www.gruene-riegelsberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-riegelsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -24126,7 +24136,7 @@ "opengraph": null, "title": "Ortsverband Riegelsberg - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 308, + "duration": 310, "error": null, "responsive": { "document_width": { @@ -24173,7 +24183,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 310 }, "RESPONSIVE": { "score": 1, @@ -24216,9 +24226,9 @@ "resolved_hostname": "www.gruene-rlp.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rlp.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -24263,7 +24273,7 @@ "opengraph": null, "title": "Rheinland-Pfalz: Startseite" }, - "duration": 193, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -24310,7 +24320,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -24340,8 +24350,8 @@ "hostnames": { "gruene-rodgau.de": { "ip_addresses": [ - "81.88.32.226", - "81.88.42.143" + "81.88.42.143", + "81.88.32.226" ], "resolvable": true, "resolved_hostname": "gruene-rodgau.de" @@ -24355,9 +24365,9 @@ "resolved_hostname": "www.gruene-rodgau.de" } }, - "icons": [ - "763a07a20f4c0be782bfc18673b39f04.ico" - ], + "icons": { + "http://2016.gruene-rodgau.de/templates/joomlage0071-simplex/favicon.ico": "763a07a20f4c0be782bfc18673b39f04.ico" + }, "ipv4_addresses": [ "81.88.32.226", "81.88.42.143" @@ -24410,7 +24420,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Stadtverband Rodgau - Startseite" }, - "duration": 315, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -24458,7 +24468,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 315 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -24501,9 +24511,9 @@ "resolvable": false } }, - "icons": [ - "53bc42ded65062b7dc578a20b5ff2cce.jpg" - ], + "icons": { + "http://gruene-roetgen.de/wp-content/uploads/2017/02/cropped-sonnenblume-klein-grün_bearbeitet-4.jpg": "53bc42ded65062b7dc578a20b5ff2cce.jpg" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -24542,7 +24552,7 @@ "opengraph": null, "title": "gruene-roetgen – gruene roetgen" }, - "duration": 294, + "duration": 290, "error": null, "responsive": { "document_width": { @@ -24590,7 +24600,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 290 }, "RESPONSIVE": { "score": 1, @@ -24634,9 +24644,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rommerskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -24681,7 +24691,7 @@ ], "title": "Bündnis 90/ die Grünen" }, - "duration": 398, + "duration": 357, "error": null, "responsive": { "document_width": { @@ -24729,7 +24739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 357 }, "RESPONSIVE": { "score": 1, @@ -24770,9 +24780,9 @@ "resolved_hostname": "www.gruene-ruppichteroth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ruppichteroth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -24814,7 +24824,7 @@ "opengraph": null, "title": "OV Ruppichteroth: Startseite" }, - "duration": 198, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -24862,7 +24872,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -24907,9 +24917,10 @@ "resolved_hostname": "www.gruene-saarbruecken.de" } }, - "icons": [ - "ad26b2b5dc1cd9cd682d9f653939490d.ico" - ], + "icons": { + "https://gruene-saarbruecken.de/templates/gruene_2/favicon.ico": "ad26b2b5dc1cd9cd682d9f653939490d.ico", + "https://www.gruene-saarbruecken.de/templates/gruene_2/favicon.ico": "ad26b2b5dc1cd9cd682d9f653939490d.ico" + }, "ipv4_addresses": [ "78.47.188.23" ], @@ -24955,7 +24966,7 @@ "opengraph": null, "title": "Aktuell" }, - "duration": 361, + "duration": 349, "error": null, "responsive": { "document_width": { @@ -24982,7 +24993,7 @@ "opengraph": null, "title": "Aktuell" }, - "duration": 389, + "duration": 392, "error": null, "responsive": { "document_width": { @@ -25030,7 +25041,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 370 }, "RESPONSIVE": { "score": 1, @@ -25074,9 +25085,9 @@ "resolved_hostname": "www.gruene-saarlouis.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-saarlouis.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25122,7 +25133,7 @@ "opengraph": null, "title": "Ortsverband Saarlouis - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 301, + "duration": 316, "error": null, "responsive": { "document_width": { @@ -25169,7 +25180,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 316 }, "RESPONSIVE": { "score": 1, @@ -25213,9 +25224,9 @@ "resolved_hostname": "www.gruene-saarwellingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-saarwellingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25261,7 +25272,7 @@ "opengraph": null, "title": "ORTSVERBAND SAARWELLINGEN - Bündnis 90/Die Grünen – Saarland" }, - "duration": 386, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -25308,7 +25319,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 386 + "value": 293 }, "RESPONSIVE": { "score": 1, @@ -25348,9 +25359,9 @@ "resolved_hostname": "www.gruene-salzgitter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-salzgitter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25392,7 +25403,7 @@ "opengraph": null, "title": "Grüne in Salzgitter: Aktuelles" }, - "duration": 200, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -25440,7 +25451,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -25480,9 +25491,9 @@ "resolved_hostname": "www.gruene-sanktaugustin.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sanktaugustin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25524,7 +25535,7 @@ "opengraph": null, "title": "GRÜNE Sankt Augustin: Home" }, - "duration": 202, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -25572,7 +25583,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 193 }, "RESPONSIVE": { "score": 1, @@ -25612,9 +25623,9 @@ "resolved_hostname": "www.gruene-schifferstadt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schifferstadt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25656,7 +25667,7 @@ "opengraph": null, "title": "Grüne Schifferstadt: Startseite" }, - "duration": 215, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -25704,7 +25715,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -25748,9 +25759,9 @@ "resolved_hostname": "www.gruene-schmelz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-schmelz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25796,7 +25807,7 @@ "opengraph": null, "title": "Ortsverband Schmelz - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 271, + "duration": 313, "error": null, "responsive": { "document_width": { @@ -25843,7 +25854,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 271 + "value": 313 }, "RESPONSIVE": { "score": 1, @@ -25887,9 +25898,9 @@ "resolved_hostname": "www.gruene-schoeneiche.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-schoeneiche.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.134.30" ], @@ -25947,7 +25958,7 @@ ], "title": "- Bündnis 90/Die Grünen Schöneiche bei Berlin" }, - "duration": 264, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -25995,7 +26006,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 247 }, "RESPONSIVE": { "score": 0, @@ -26039,9 +26050,9 @@ "resolved_hostname": "www.gruene-schwalbach-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-schwalbach-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -26087,7 +26098,7 @@ "opengraph": null, "title": "Ortsverband Schwalbach - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 283, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -26134,7 +26145,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 283 + "value": 318 }, "RESPONSIVE": { "score": 1, @@ -26174,9 +26185,9 @@ "resolved_hostname": "www.gruene-se-kv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-se-kv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -26218,7 +26229,7 @@ "opengraph": null, "title": "Kreisverband Segeberg: Home" }, - "duration": 199, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -26266,7 +26277,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -26307,9 +26318,10 @@ "resolved_hostname": "www.gruene-seelze.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seelze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-seelze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -26351,7 +26363,7 @@ "opengraph": null, "title": "Ortsverband Seelze | ." }, - "duration": 217, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -26374,7 +26386,7 @@ "opengraph": null, "title": "Ortsverband Seelze | ." }, - "duration": 228, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -26423,7 +26435,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -26463,9 +26475,9 @@ "resolved_hostname": "www.gruene-sickte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sickte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -26507,7 +26519,7 @@ "opengraph": null, "title": "OV Samtgemeinde Sickte: Startseite" }, - "duration": 189, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -26555,7 +26567,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -26598,9 +26610,9 @@ "resolved_hostname": "www.gruene-siegburg.de" } }, - "icons": [ - "9351d68ba37778de3368808f94d53ba8.jpg" - ], + "icons": { + "http://wp.gruene-siegburg.de/wp-content/uploads/2015/10/sonnenblume_auf_gruen1.jpg": "9351d68ba37778de3368808f94d53ba8.jpg" + }, "ipv4_addresses": [ "217.160.223.87" ], @@ -26658,7 +26670,7 @@ ], "title": "Grüne-Siegburg" }, - "duration": 75, + "duration": 714, "error": null, "responsive": { "document_width": { @@ -26704,9 +26716,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 75 + "value": 714 }, "RESPONSIVE": { "score": 1, @@ -26722,7 +26734,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -26748,9 +26760,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -26785,7 +26797,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 444, + "duration": 432, "error": null, "responsive": { "document_width": { @@ -26833,7 +26845,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 444 + "value": 432 }, "RESPONSIVE": { "score": 0, @@ -26876,9 +26888,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -26913,7 +26925,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 470, + "duration": 452, "error": null, "responsive": { "document_width": { @@ -26961,7 +26973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 470 + "value": 452 }, "RESPONSIVE": { "score": 0, @@ -27004,9 +27016,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -27041,7 +27053,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 433, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -27089,7 +27101,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 433 + "value": 460 }, "RESPONSIVE": { "score": 0, @@ -27134,9 +27146,9 @@ "resolved_hostname": "www.gruene-sonneberg-hildburghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-sonneberg-hildburghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.160" ], @@ -27194,7 +27206,7 @@ ], "title": "B90 / Die Grünen" }, - "duration": 284, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -27242,7 +27254,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 284 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -27285,9 +27297,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenespandau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.156" ], @@ -27330,7 +27342,7 @@ ], "title": "Bündnis 90/Die Grünen Spandau" }, - "duration": 122, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -27377,7 +27389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -27419,9 +27431,10 @@ "resolved_hostname": "www.gruene-springe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-springe.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-springe.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -27463,7 +27476,7 @@ "opengraph": null, "title": "Ortsverband Springe | ." }, - "duration": 213, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -27486,7 +27499,7 @@ "opengraph": null, "title": "Ortsverband Springe | ." }, - "duration": 234, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -27535,7 +27548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -27623,7 +27636,7 @@ "opengraph": null, "title": "Unbenanntes Dokument" }, - "duration": 107, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -27646,7 +27659,7 @@ "opengraph": null, "title": "Unbenanntes Dokument" }, - "duration": 82, + "duration": 107, "error": null, "responsive": { "document_width": { @@ -27697,7 +27710,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 94 + "value": 92 }, "RESPONSIVE": { "score": 1, @@ -27742,9 +27755,9 @@ "resolved_hostname": "www.gruene-suedlohn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-suedlohn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -27803,7 +27816,7 @@ ], "title": "EHRLICH - OFFEN - BÜRGERNAH › Bündnis 90/Die GRÜNEN - Südlohn" }, - "duration": 59, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -27851,7 +27864,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 68 }, "RESPONSIVE": { "score": 1, @@ -27897,9 +27910,10 @@ "resolvable": false } }, - "icons": [ - "09d52e5603efb19a8c1cb52af6a1c9da.png" - ], + "icons": { + "http://gruene-suedwest.de/wp-content/uploads/2017/01/favicon.png": "09d52e5603efb19a8c1cb52af6a1c9da.png", + "https://gruene-suedwest.de/wp-content/uploads/2017/01/favicon.png": "09d52e5603efb19a8c1cb52af6a1c9da.png" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -27941,7 +27955,7 @@ ], "title": "Home - Grüne Steglitz-Zehlendorf" }, - "duration": 575, + "duration": 573, "error": null, "responsive": { "document_width": { @@ -27974,7 +27988,7 @@ ], "title": "Home - Grüne Steglitz-Zehlendorf" }, - "duration": 686, + "duration": 680, "error": null, "responsive": { "document_width": { @@ -28022,7 +28036,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 630 + "value": 626 }, "RESPONSIVE": { "score": 1, @@ -28063,9 +28077,9 @@ "resolved_hostname": "www.gruene-suedwestpfalz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-suedwestpfalz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -28107,7 +28121,7 @@ "opengraph": null, "title": "Grüne Südwestpfalz: Startseite" }, - "duration": 195, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -28155,7 +28169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 168 }, "RESPONSIVE": { "score": 1, @@ -28195,9 +28209,9 @@ "resolved_hostname": "www.gruene-suew.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-suew.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -28239,7 +28253,7 @@ "opengraph": null, "title": "Kreisverband Grüne Südliche Weinstraße: Startseite" }, - "duration": 206, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -28287,7 +28301,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -28331,9 +28345,9 @@ "resolved_hostname": "www.gruene-swisttal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-swisttal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.176" ], @@ -28366,7 +28380,7 @@ } ], "responsive": { - "min_width": 335, + "min_width": 349, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -28393,13 +28407,13 @@ ], "title": "Die GRÜNEN in Swisttal" }, - "duration": 208, + "duration": 491, "error": null, "responsive": { "document_width": { - "1024x768": 1337, + "1024x768": 1160, "1920x1080": 1920, - "320x480": 335, + "320x480": 349, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -28441,7 +28455,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 491 }, "RESPONSIVE": { "score": 1, @@ -28483,9 +28497,9 @@ "resolvable": false } }, - "icons": [ - "f6644057949af3bd9612bcf3a50a2149.ico" - ], + "icons": { + "http://gruene-taufkirchen.de/templates/jp-x2/favicon.ico": "f6644057949af3bd9612bcf3a50a2149.ico" + }, "ipv4_addresses": [ "81.169.145.72" ], @@ -28524,7 +28538,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 166, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -28572,7 +28586,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -28620,9 +28634,10 @@ "resolved_hostname": "www.gruene-tholey.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-tholey.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-tholey.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -28668,7 +28683,7 @@ "opengraph": null, "title": "Ortsverband Tholey - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 249, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -28695,7 +28710,7 @@ "opengraph": null, "title": "Ortsverband Tholey - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 324, + "duration": 305, "error": null, "responsive": { "document_width": { @@ -28743,7 +28758,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 286 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -28828,7 +28843,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Titz" }, - "duration": 63, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -28851,7 +28866,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Titz" }, - "duration": 60, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -28902,7 +28917,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -28949,9 +28964,10 @@ "resolved_hostname": "www.gruene-tostedt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-tostedt.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-tostedt.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.226.43" ], @@ -29003,7 +29019,7 @@ ], "title": "Ortsverband Tostedt" }, - "duration": 498, + "duration": 536, "error": null, "responsive": { "document_width": { @@ -29036,7 +29052,7 @@ ], "title": "Ortsverband Tostedt" }, - "duration": 625, + "duration": 657, "error": null, "responsive": { "document_width": { @@ -29084,7 +29100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 562 + "value": 596 }, "RESPONSIVE": { "score": 1, @@ -29124,9 +29140,9 @@ "resolved_hostname": "www.gruene-trier-saarburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-trier-saarburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -29168,7 +29184,7 @@ "opengraph": null, "title": "Trier-Saarburg: Home" }, - "duration": 196, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -29216,7 +29232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 331 }, "RESPONSIVE": { "score": 1, @@ -29259,9 +29275,9 @@ "resolved_hostname": "www.gruene-troisdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-troisdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -29319,7 +29335,7 @@ ], "title": "Nachhaltige und soziale Politik für Troisdorf › GRÜNE für Troisdorf" }, - "duration": 358, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -29367,7 +29383,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 358 + "value": 350 }, "RESPONSIVE": { "score": 1, @@ -29411,9 +29427,9 @@ "resolved_hostname": "www.gruene-ueberherrn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ueberherrn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -29459,7 +29475,7 @@ "opengraph": null, "title": "Ortsverband Überherrn - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 303, + "duration": 291, "error": null, "responsive": { "document_width": { @@ -29506,7 +29522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 303 + "value": 291 }, "RESPONSIVE": { "score": 1, @@ -29550,9 +29566,9 @@ "resolved_hostname": "www.gruene-uedem.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-uedem.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.216" ], @@ -29611,7 +29627,7 @@ ], "title": "Grüne Uedem" }, - "duration": 798, + "duration": 829, "error": null, "responsive": { "document_width": { @@ -29659,7 +29675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 798 + "value": 829 }, "RESPONSIVE": { "score": 1, @@ -29699,9 +29715,9 @@ "resolved_hostname": "www.gruene-uelzen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uelzen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -29743,7 +29759,7 @@ "opengraph": null, "title": "Grüne im Kreis Uelzen: Startseite" }, - "duration": 217, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -29791,7 +29807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -29832,9 +29848,10 @@ "resolved_hostname": "www.gruene-uetze.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uetze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-uetze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -29876,7 +29893,7 @@ "opengraph": null, "title": "Ortsverband Uetze | ." }, - "duration": 279, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -29899,7 +29916,7 @@ "opengraph": null, "title": "Ortsverband Uetze | ." }, - "duration": 214, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -29948,7 +29965,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 246 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -30005,7 +30022,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -30013,7 +30030,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -30033,7 +30050,7 @@ "opengraph": null, "title": "" }, - "duration": 100, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -30056,7 +30073,7 @@ "opengraph": null, "title": "" }, - "duration": 65, + "duration": 82, "error": null, "responsive": { "document_width": { @@ -30107,7 +30124,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 82 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -30147,9 +30164,9 @@ "resolved_hostname": "www.gruene-vechta.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vechta.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -30191,7 +30208,7 @@ "opengraph": null, "title": "Kreisverband Vechta: Startseite" }, - "duration": 171, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -30239,7 +30256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -30283,9 +30300,9 @@ "resolved_hostname": "www.gruene-voelklingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-voelklingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30331,7 +30348,7 @@ "opengraph": null, "title": "Ortsverband Völklingen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 288, + "duration": 311, "error": null, "responsive": { "document_width": { @@ -30378,7 +30395,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 288 + "value": 311 }, "RESPONSIVE": { "score": 1, @@ -30422,9 +30439,9 @@ "resolved_hostname": "www.gruene-wadern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wadern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30470,7 +30487,7 @@ "opengraph": null, "title": "Ortsverband Wadern - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 270, + "duration": 299, "error": null, "responsive": { "document_width": { @@ -30517,7 +30534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 270 + "value": 299 }, "RESPONSIVE": { "score": 1, @@ -30561,9 +30578,9 @@ "resolved_hostname": "www.gruene-wallerfangen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wallerfangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30609,7 +30626,7 @@ "opengraph": null, "title": "Ortsverband Wallerfangen - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 321, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -30656,7 +30673,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 321 + "value": 320 }, "RESPONSIVE": { "score": 1, @@ -30697,9 +30714,10 @@ "resolved_hostname": "www.gruene-wedemark.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wedemark.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-wedemark.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -30741,7 +30759,7 @@ "opengraph": null, "title": "Ortsverband Wedemark | ." }, - "duration": 265, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -30764,7 +30782,7 @@ "opengraph": null, "title": "Ortsverband Wedemark | ." }, - "duration": 217, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -30813,7 +30831,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -30860,6 +30878,7 @@ "resolved_hostname": "www.gruene-weilerswist.de" } }, + "icons": {}, "ipv4_addresses": [ "81.169.152.41" ], @@ -30897,12 +30916,12 @@ "http://weilerswist.gruene-euskirchen.de/?feed=rss2", "http://weilerswist.gruene-euskirchen.de/?feed=comments-rss2" ], - "generator": "WordPress 3.8", + "generator": "WordPress 4.9.8", "icon": "http://weilerswist.gruene-euskirchen.de/wp-content/themes/medicaljournal/images/favicon.png", "opengraph": null, "title": "Bündnis 90/Die Grünen OV Weilerswist" }, - "duration": 297, + "duration": 607, "error": null, "responsive": { "document_width": { @@ -30924,12 +30943,12 @@ "https://weilerswist.gruene-euskirchen.de/?feed=rss2", "https://weilerswist.gruene-euskirchen.de/?feed=comments-rss2" ], - "generator": "WordPress 3.8", + "generator": "WordPress 4.9.8", "icon": "http://weilerswist.gruene-euskirchen.de/wp-content/themes/medicaljournal/images/favicon.png", "opengraph": null, "title": "Bündnis 90/Die Grünen OV Weilerswist" }, - "duration": 388, + "duration": 721, "error": null, "responsive": { "document_width": { @@ -30963,9 +30982,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -30978,7 +30996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 664 }, "RESPONSIVE": { "score": 0, @@ -30994,7 +31012,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -31019,9 +31037,10 @@ "resolved_hostname": "www.gruene-wennigsen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wennigsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-wennigsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -31063,7 +31082,7 @@ "opengraph": null, "title": "Ortsverband Wennigsen | ." }, - "duration": 210, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -31086,7 +31105,7 @@ "opengraph": null, "title": "Ortsverband Wennigsen | ." }, - "duration": 223, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -31135,7 +31154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -31179,9 +31198,9 @@ "resolved_hostname": "www.gruene-werther.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-werther.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -31239,7 +31258,7 @@ ], "title": "OV Werther" }, - "duration": 65, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -31287,7 +31306,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 65 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -31374,7 +31393,7 @@ "opengraph": null, "title": "Grüne in Westfalen: Startseite" }, - "duration": 60, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -31422,9 +31441,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 60 + "value": 139 }, "RESPONSIVE": { "score": 1, @@ -31440,7 +31459,7 @@ "value": true } }, - "score": 6.0 + "score": 5.5 }, { "details": { @@ -31468,9 +31487,9 @@ "resolved_hostname": "www.gruene-wiesenbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-wiesenbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "87.118.118.84" ], @@ -31528,7 +31547,7 @@ ], "title": "Ortsverband Wiesenbach" }, - "duration": 810, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -31576,7 +31595,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 810 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -31616,9 +31635,9 @@ "resolved_hostname": "www.gruene-wilhelmshaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wilhelmshaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31660,7 +31679,7 @@ "opengraph": null, "title": "Grüne Wilhelmshaven: Startseite" }, - "duration": 214, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -31708,7 +31727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -31748,9 +31767,9 @@ "resolved_hostname": "www.gruene-windeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-windeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31792,7 +31811,7 @@ "opengraph": null, "title": "Grüne Windeck: Home" }, - "duration": 206, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -31840,7 +31859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -31883,9 +31902,9 @@ "resolved_hostname": "www.gruene-wipperfuerth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wipperfuerth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31930,7 +31949,7 @@ "opengraph": null, "title": "GRÜNE in WIPPERFÜRTH.: MIT Herz MIT...REDEN MIT...MACHEN !" }, - "duration": 205, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -31977,7 +31996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -32004,7 +32023,7 @@ "hostnames": { "gruene-wunstorf.com": { "ip_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable": true, "resolved_hostname": "gruene-wunstorf.com" @@ -32013,11 +32032,11 @@ "resolvable": false } }, - "icons": [ - "9cbe28444cbf8c43a48b3fe02cda449a.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s89c07ae93892a952/img/favicon.png?t=1314455677": "9cbe28444cbf8c43a48b3fe02cda449a.png" + }, "ipv4_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable_urls": [ { @@ -32055,7 +32074,7 @@ ], "title": "HOME - Grüne Wunstorf" }, - "duration": 347, + "duration": 306, "error": null, "responsive": { "document_width": { @@ -32103,7 +32122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 347 + "value": 306 }, "RESPONSIVE": { "score": 0, @@ -32203,7 +32222,7 @@ ], "title": "Homepage - Grüne Xhain" }, - "duration": 464, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -32251,7 +32270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 464 + "value": 589 }, "RESPONSIVE": { "score": 1, @@ -32291,9 +32310,9 @@ "resolved_hostname": "www.gruene-zweibruecken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-zweibruecken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32335,7 +32354,7 @@ "opengraph": null, "title": "Grüne Zweibrücken: Startseite" }, - "duration": 180, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -32383,7 +32402,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 180 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -32427,9 +32446,9 @@ "resolved_hostname": "www.grueneboerde.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://grueneboerde.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -32482,7 +32501,7 @@ ], "title": "GRÜNE in der Börde" }, - "duration": 262, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -32529,7 +32548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 125 }, "RESPONSIVE": { "score": 1, @@ -32569,9 +32588,9 @@ "resolved_hostname": "www.gruenedresden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenedresden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32613,7 +32632,7 @@ "opengraph": null, "title": "Kreisverband Dresden: Startseite" }, - "duration": 218, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -32661,7 +32680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -32701,9 +32720,9 @@ "resolved_hostname": "www.gruenekreiskh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekreiskh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32745,7 +32764,7 @@ "opengraph": null, "title": "KREISVERBAND BAD KREUZNACH: Startseite" }, - "duration": 200, + "duration": 458, "error": null, "responsive": { "document_width": { @@ -32793,7 +32812,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 458 }, "RESPONSIVE": { "score": 1, @@ -32833,9 +32852,9 @@ "resolved_hostname": "www.gruenekreisploen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekreisploen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32877,7 +32896,7 @@ "opengraph": null, "title": "Kreisverband Plön: Home" }, - "duration": 190, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -32925,7 +32944,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -32965,9 +32984,9 @@ "resolved_hostname": "www.gruenemelle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenemelle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -33009,7 +33028,7 @@ "opengraph": null, "title": "Bündnis 90 / Die GRÜNEN Melle: Startseite" }, - "duration": 228, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -33057,7 +33076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -33173,9 +33192,9 @@ "resolved_hostname": "www.pullach-gruene.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://pullach-gruene.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.141.57" ], @@ -33237,7 +33256,7 @@ ], "title": "Die GRÜNEN in Pullach" }, - "duration": 93, + "duration": 448, "error": null, "responsive": { "document_width": { @@ -33283,9 +33302,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 93 + "value": 448 }, "RESPONSIVE": { "score": 1, @@ -33301,7 +33320,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -33328,9 +33347,9 @@ "resolvable": false } }, - "icons": [ - "d5aa0b364bcc575edc585a672998dcbb.jpg" - ], + "icons": { + "http://ugl-muenchhausen.de/wp-content/uploads/2016/01/cropped-cropped-Zwischenablage-32x32.jpg": "d5aa0b364bcc575edc585a672998dcbb.jpg" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -33369,7 +33388,7 @@ "opengraph": null, "title": "UGL | Unabhängige Grüne Liste Münchhausen" }, - "duration": 387, + "duration": 367, "error": null, "responsive": { "document_width": { @@ -33417,7 +33436,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 387 + "value": 367 }, "RESPONSIVE": { "score": 1, @@ -33465,9 +33484,9 @@ "resolved_hostname": "www.ukw-kelkheim.de" } }, - "icons": [ - "21ab4a872462964b3d3581eb7915ce26.png" - ], + "icons": { + "http://ukw-kelkheim.de/wp-content/uploads/2016/08/ukw_icon.png": "21ab4a872462964b3d3581eb7915ce26.png" + }, "ipv4_addresses": [ "217.160.0.34" ], @@ -33520,7 +33539,7 @@ ], "title": "Aktuelles - ukw - Unabhängige Kelkheimer Wählerinitiative" }, - "duration": 255, + "duration": 497, "error": null, "responsive": { "document_width": { @@ -33554,14 +33573,14 @@ ], "title": "Aktuelles - ukw - Unabhängige Kelkheimer Wählerinitiative" }, - "duration": 397, + "duration": 511, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1402, "1920x1080": 1920, - "320x480": 335, - "768x1024": 768 + "320x480": 734, + "768x1024": 1231 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -33602,7 +33621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 326 + "value": 504 }, "RESPONSIVE": { "score": 1, @@ -33642,9 +33661,9 @@ "resolved_hostname": "www.uns-gruener-trier.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://uns-gruener-trier.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -33686,7 +33705,7 @@ "opengraph": null, "title": "Grüne Trier: Startseite" }, - "duration": 203, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -33734,7 +33753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -33775,9 +33794,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -33824,7 +33843,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 257, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -33872,7 +33891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 280 }, "RESPONSIVE": { "score": 0, @@ -33958,7 +33977,7 @@ "opengraph": null, "title": "AGL Eberbach: Aktuelles" }, - "duration": 128, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -33981,7 +34000,7 @@ "opengraph": null, "title": "AGL Eberbach: Aktuelles" }, - "duration": 139, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -34032,7 +34051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 238 }, "RESPONSIVE": { "score": 0, @@ -34077,9 +34096,9 @@ "resolved_hostname": "www.al-gruene.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.roedermarkpartei.de/wp-content/themes/1508354895-2vH2jQ/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.179" ], @@ -34096,7 +34115,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34104,7 +34123,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34137,7 +34156,7 @@ ], "title": "Andere Liste/ Die Grünen" }, - "duration": 585, + "duration": 526, "error": null, "responsive": { "document_width": { @@ -34170,7 +34189,7 @@ ], "title": "Andere Liste/ Die Grünen" }, - "duration": 544, + "duration": 555, "error": null, "responsive": { "document_width": { @@ -34219,7 +34238,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 564 + "value": 540 }, "RESPONSIVE": { "score": 1, @@ -34334,9 +34353,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34353,7 +34372,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34361,7 +34380,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34395,7 +34414,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 440, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -34443,7 +34462,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 435 }, "RESPONSIVE": { "score": 1, @@ -34487,9 +34506,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34506,7 +34525,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34514,7 +34533,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34548,7 +34567,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 301, + "duration": 389, "error": null, "responsive": { "document_width": { @@ -34596,7 +34615,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -34640,9 +34659,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34659,7 +34678,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34667,7 +34686,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34701,7 +34720,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 391, + "duration": 362, "error": null, "responsive": { "document_width": { @@ -34749,7 +34768,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 391 + "value": 362 }, "RESPONSIVE": { "score": 1, @@ -34789,9 +34808,9 @@ "resolved_hostname": "www.bruehlgruen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://bruehlgruen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -34833,7 +34852,7 @@ "opengraph": null, "title": "Die Brühler Grünen: Aktuelles" }, - "duration": 213, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -34881,7 +34900,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -34960,7 +34979,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Ortsverband Cuxhaven" }, - "duration": 245, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -34983,7 +35002,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Ortsverband Cuxhaven" }, - "duration": 360, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -35033,7 +35052,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 302 + "value": 306 }, "RESPONSIVE": { "score": 0, @@ -35074,9 +35093,10 @@ "resolved_hostname": "www.die-gruenen-bsb.de" } }, - "icons": [ - "8ec59ec3187a8d050bf99a8f1c71772c.ico" - ], + "icons": { + "http://die-gruenen-bsb.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico", + "http://www.die-gruenen-bsb.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico" + }, "ipv4_addresses": [ "217.160.0.252" ], @@ -35124,7 +35144,7 @@ "opengraph": null, "title": "Die Grünen SG Bersenbrück - Home" }, - "duration": 202, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -35147,7 +35167,7 @@ "opengraph": null, "title": "Die Grünen SG Bersenbrück - Home" }, - "duration": 223, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -35197,7 +35217,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 176 }, "RESPONSIVE": { "score": 1, @@ -35237,9 +35257,9 @@ "resolved_hostname": "www.die-gruenen-leverkusen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://die-gruenen-leverkusen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -35281,7 +35301,7 @@ "opengraph": null, "title": "Die GRÜNEN in Leverkusen: Home" }, - "duration": 210, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -35329,7 +35349,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -35370,9 +35390,10 @@ "resolved_hostname": "www.die-gruenen-waltrop.de" } }, - "icons": [ - "ebe1bd75307c54ac2d28034df5499370.ico" - ], + "icons": { + "http://die-gruenen-waltrop.de/favicon.ico": "ebe1bd75307c54ac2d28034df5499370.ico", + "http://www.die-gruenen-waltrop.de/favicon.ico": "ebe1bd75307c54ac2d28034df5499370.ico" + }, "ipv4_addresses": [ "128.127.71.133" ], @@ -35417,7 +35438,7 @@ "opengraph": null, "title": "Die Grünen in Waltrop - Bündnis 90 / Die Grünen OV Waltrop" }, - "duration": 46, + "duration": 49, "error": null, "responsive": { "document_width": { @@ -35440,7 +35461,7 @@ "opengraph": null, "title": "Die Grünen in Waltrop - Bündnis 90 / Die Grünen OV Waltrop" }, - "duration": 45, + "duration": 51, "error": null, "responsive": { "document_width": { @@ -35490,7 +35511,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 46 + "value": 50 }, "RESPONSIVE": { "score": 0, @@ -35531,9 +35552,9 @@ "resolved_hostname": "www.diegrueneninhagenatw.de" } }, - "icons": [ - "8ec59ec3187a8d050bf99a8f1c71772c.ico" - ], + "icons": { + "http://www.diegrueneninhagenatw.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico" + }, "ipv4_addresses": [ "46.30.213.20" ], @@ -35550,7 +35571,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35558,7 +35579,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35581,7 +35602,7 @@ "opengraph": null, "title": "Die Grünen in Hagen a.T.W. - Home" }, - "duration": 852, + "duration": 473, "error": null, "responsive": { "document_width": { @@ -35604,7 +35625,7 @@ "opengraph": null, "title": "Die Grünen in Hagen a.T.W. - Home" }, - "duration": 480, + "duration": 479, "error": null, "responsive": { "document_width": { @@ -35654,7 +35675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 666 + "value": 476 }, "RESPONSIVE": { "score": 0, @@ -35711,7 +35732,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35719,7 +35740,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35739,7 +35760,7 @@ "opengraph": null, "title": "" }, - "duration": 56, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -35762,7 +35783,7 @@ "opengraph": null, "title": "" }, - "duration": 77, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -35813,7 +35834,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -35904,7 +35925,7 @@ "opengraph": null, "title": "GAL Bamberg: Aktuell" }, - "duration": 189, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -35930,7 +35951,7 @@ "opengraph": null, "title": "GAL Bamberg: Aktuell" }, - "duration": 182, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -35980,7 +36001,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 203 }, "RESPONSIVE": { "score": 0, @@ -36065,7 +36086,7 @@ "opengraph": null, "title": "Grüne und Alternative Liste Uttenreuth (GAL)" }, - "duration": 62, + "duration": 90, "error": null, "responsive": { "document_width": { @@ -36088,7 +36109,7 @@ "opengraph": null, "title": "Grüne und Alternative Liste Uttenreuth (GAL)" }, - "duration": 63, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -36139,7 +36160,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 82 }, "RESPONSIVE": { "score": 0, @@ -36218,7 +36239,7 @@ "opengraph": null, "title": "Die Grünen Weinheim |" }, - "duration": 513, + "duration": 285, "error": null, "responsive": { "document_width": { @@ -36266,7 +36287,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 513 + "value": 285 }, "RESPONSIVE": { "score": 0, @@ -36308,9 +36329,9 @@ "resolved_hostname": "www.galb.de" } }, - "icons": [ - "b15c61968c780e09ed43bbe05688fc62.ico" - ], + "icons": { + "http://www.galb.de/favicon.ico": "b15c61968c780e09ed43bbe05688fc62.ico" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -36355,7 +36376,7 @@ "opengraph": null, "title": "GALB - Grün-alternative Liste Bischofsheim" }, - "duration": 65, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -36378,7 +36399,7 @@ "opengraph": null, "title": "GALB - Grün-alternative Liste Bischofsheim" }, - "duration": 63, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -36513,7 +36534,7 @@ "opengraph": null, "title": "Grüne Liste Gaiberg e.V. - Startseite" }, - "duration": 68, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -36536,7 +36557,7 @@ "opengraph": null, "title": "Grüne Liste Gaiberg e.V. - Startseite" }, - "duration": 63, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -36587,7 +36608,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 67 }, "RESPONSIVE": { "score": 0, @@ -36626,9 +36647,9 @@ "resolvable": false } }, - "icons": [ - "d30f85678cdff251d9cecea21d32060f.ico" - ], + "icons": { + "http://www.glb-im-web.de/favicon.ico": "d30f85678cdff251d9cecea21d32060f.ico" + }, "ipv4_addresses": [ "81.169.145.78" ], @@ -36657,7 +36678,7 @@ "opengraph": null, "title": "GLB - Grüne Liste Büttelborn" }, - "duration": 68, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -36706,7 +36727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -36792,7 +36813,7 @@ "opengraph": null, "title": "Grüne Liste Trebur" }, - "duration": 71, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -36866,7 +36887,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 80 }, "RESPONSIVE": { "score": 0, @@ -36906,9 +36927,9 @@ "resolved_hostname": "www.gruene-aachen.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-aachen.de/typo3conf/ext/gac/Resources/Public/Images/fav.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.117.82.81" ], @@ -36963,7 +36984,7 @@ ], "title": "Home - BÜNDNIS 90/DIE GRÜNEN OV Aachen" }, - "duration": 118, + "duration": 114, "error": null, "responsive": { "document_width": { @@ -37012,7 +37033,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 118 + "value": 114 }, "RESPONSIVE": { "score": 1, @@ -37051,9 +37072,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-aalen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -37082,7 +37103,7 @@ "opengraph": null, "title": "Grüne Ostwürttemberg: HOME" }, - "duration": 643, + "duration": 713, "error": null, "responsive": { "document_width": { @@ -37130,7 +37151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 643 + "value": 713 }, "RESPONSIVE": { "score": 0, @@ -37175,9 +37196,9 @@ "resolved_hostname": "www.gruene-adelebsen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-adelebsen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.252.18.61" ], @@ -37235,7 +37256,7 @@ ], "title": "Ortsverband Adelebsen" }, - "duration": 411, + "duration": 408, "error": null, "responsive": { "document_width": { @@ -37283,7 +37304,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 411 + "value": 408 }, "RESPONSIVE": { "score": 1, @@ -37319,8 +37340,8 @@ }, "www.gruene-ahaus.de": { "ip_addresses": [ - "81.88.42.154", - "81.88.32.178" + "81.88.32.178", + "81.88.42.154" ], "resolvable": true, "resolved_hostname": "www.gruene-ahaus.de" @@ -37371,7 +37392,7 @@ "opengraph": null, "title": "B90 Die Grnen in Ahaus" }, - "duration": 80, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -37394,7 +37415,7 @@ "opengraph": null, "title": "B90 Die Grnen in Ahaus" }, - "duration": 88, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -37445,7 +37466,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 84 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -37485,9 +37506,9 @@ "resolved_hostname": "www.gruene-ahlen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ahlen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -37529,7 +37550,7 @@ "opengraph": null, "title": "Ortsverband Ahlen: Aktuelles" }, - "duration": 214, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -37577,7 +37598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -37617,6 +37638,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -37645,7 +37667,7 @@ "opengraph": null, "title": "Grüne Kreis Alb-Donau: Startseite" }, - "duration": 333, + "duration": 531, "error": null, "responsive": { "document_width": { @@ -37668,7 +37690,7 @@ "opengraph": null, "title": "Grüne Kreis Alb-Donau: Startseite" }, - "duration": 407, + "duration": 395, "error": null, "responsive": { "document_width": { @@ -37702,9 +37724,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -37718,7 +37739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 370 + "value": 463 }, "RESPONSIVE": { "score": 0, @@ -37735,7 +37756,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -37762,9 +37783,9 @@ "resolved_hostname": "www.gruene-allach-untermenzing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-allach-untermenzing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -37812,7 +37833,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Allach/Untermenzing: Startseite Grüne Allach/Untermenzing" }, - "duration": 115, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -37858,9 +37879,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 115 + "value": 94 }, "RESPONSIVE": { "score": 0, @@ -37876,7 +37897,7 @@ "value": true } }, - "score": 6.5 + "score": 7.0 }, { "details": { @@ -37906,9 +37927,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -37925,7 +37947,7 @@ } ], "responsive": { - "min_width": 570, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -37943,6 +37965,7 @@ "icon": "http://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -37950,13 +37973,13 @@ ], "title": "Bündnis 90 / Die Grünen OV Alpen" }, - "duration": 351, + "duration": 387, "error": null, "responsive": { "document_width": { "1024x768": 1065, "1920x1080": 1920, - "320x480": 570, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -37976,6 +37999,7 @@ "icon": "https://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -37983,13 +38007,13 @@ ], "title": "Bündnis 90 / Die Grünen OV Alpen" }, - "duration": 415, + "duration": 404, "error": null, "responsive": { "document_width": { "1024x768": 1065, "1920x1080": 1920, - "320x480": 570, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -38031,12 +38055,12 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 396 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -38048,7 +38072,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -38076,9 +38100,9 @@ "resolved_hostname": "www.gruene-alsdorf.de" } }, - "icons": [ - "732bd7f50ca99981afb8252c153a7fb7.png" - ], + "icons": { + "http://gruene-region-aachen.de/alsdorf/wp/wp-content/uploads/2014/04/favicon.png": "732bd7f50ca99981afb8252c153a7fb7.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -38095,7 +38119,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -38103,7 +38127,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -38130,7 +38154,7 @@ "opengraph": null, "title": "Grüne Alsdorf" }, - "duration": 515, + "duration": 505, "error": null, "responsive": { "document_width": { @@ -38157,7 +38181,7 @@ "opengraph": null, "title": "Grüne Alsdorf" }, - "duration": 480, + "duration": 502, "error": null, "responsive": { "document_width": { @@ -38206,7 +38230,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 498 + "value": 504 }, "RESPONSIVE": { "score": 1, @@ -38246,9 +38270,9 @@ "resolved_hostname": "www.gruene-altenberge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-altenberge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38290,7 +38314,7 @@ "opengraph": null, "title": "Grüner OV Altenberge: Home" }, - "duration": 181, + "duration": 169, "error": null, "responsive": { "document_width": { @@ -38338,7 +38362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 169 }, "RESPONSIVE": { "score": 1, @@ -38378,9 +38402,9 @@ "resolved_hostname": "www.gruene-altona.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-altona.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38422,7 +38446,7 @@ "opengraph": null, "title": "GRÜNE Altona: Home" }, - "duration": 187, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -38470,7 +38494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 244 }, "RESPONSIVE": { "score": 1, @@ -38514,9 +38538,9 @@ "resolved_hostname": "www.gruene-amelinghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-amelinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.80.210.150" ], @@ -38574,7 +38598,7 @@ ], "title": "- Grüne Amelinghausen" }, - "duration": 380, + "duration": 310, "error": null, "responsive": { "document_width": { @@ -38622,7 +38646,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 380 + "value": 310 }, "RESPONSIVE": { "score": 1, @@ -38662,9 +38686,9 @@ "resolved_hostname": "www.gruene-ammerland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ammerland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38706,7 +38730,7 @@ "opengraph": null, "title": "GRÜNE KV Ammerland: Home" }, - "duration": 215, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -38754,7 +38778,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -38797,9 +38821,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-anhalt-bitterfeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.74" ], @@ -38841,7 +38865,7 @@ ], "title": "Kreisverband Anhalt-Bitterfeld | BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 346, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -38886,9 +38910,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 346 + "value": 94 }, "RESPONSIVE": { "score": 1, @@ -38905,7 +38929,7 @@ "value": false } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -38916,7 +38940,7 @@ "hostnames": { "gruene-anroechte.de": { "ip_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable": true, "resolved_hostname": "gruene-anroechte.de" @@ -38926,7 +38950,7 @@ } }, "ipv4_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable_urls": [ { @@ -38949,7 +38973,7 @@ "urlchecks": [ { "content": null, - "duration": 276, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -38998,7 +39022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -39039,9 +39063,9 @@ "resolved_hostname": "www.gruene-ansbach.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-ansbach.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -39083,7 +39107,7 @@ "opengraph": null, "title": "Die Grünen Ansbach: Die Grünen in Stadt und Landkreis Ansbach" }, - "duration": 142, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -39131,7 +39155,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 142 + "value": 162 }, "RESPONSIVE": { "score": 1, @@ -39175,9 +39199,9 @@ "resolved_hostname": "www.gruene-arnsberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-arnsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "148.251.67.105" ], @@ -39237,7 +39261,7 @@ ], "title": "Grüne Arnsberg" }, - "duration": 584, + "duration": 761, "error": null, "responsive": { "document_width": { @@ -39285,7 +39309,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 584 + "value": 761 }, "RESPONSIVE": { "score": 1, @@ -39325,9 +39349,9 @@ "resolved_hostname": "www.gruene-artland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-artland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -39369,7 +39393,7 @@ "opengraph": null, "title": "Die Grünen im Artland: Startseite" }, - "duration": 161, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -39417,7 +39441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 161 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -39502,7 +39526,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 216, + "duration": 239, "error": null, "responsive": { "document_width": { @@ -39525,7 +39549,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 216, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -39576,7 +39600,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 222 }, "RESPONSIVE": { "score": 0, @@ -39616,9 +39640,9 @@ "resolved_hostname": "www.gruene-aurich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-aurich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -39660,7 +39684,7 @@ "opengraph": null, "title": "Kreisverband Aurich Norden: Startseite" }, - "duration": 307, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -39708,7 +39732,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 307 + "value": 257 }, "RESPONSIVE": { "score": 1, @@ -39793,7 +39817,7 @@ "opengraph": null, "title": null }, - "duration": 62, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -39816,7 +39840,7 @@ "opengraph": null, "title": null }, - "duration": 59, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -39867,7 +39891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -39948,7 +39972,7 @@ "urlchecks": [ { "content": null, - "duration": 178, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -39964,7 +39988,7 @@ }, { "content": null, - "duration": 170, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -40015,7 +40039,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 174 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -40057,9 +40081,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-bad-muenstereifel.de/blog/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.88" ], @@ -40094,7 +40118,7 @@ "opengraph": null, "title": "Startseite - Bündnis 90 DIE GRÜNEN Ortsverband Bad Münstereifel" }, - "duration": 134, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -40142,7 +40166,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 148 }, "RESPONSIVE": { "score": 0, @@ -40188,9 +40212,9 @@ "resolved_hostname": "www.gruene-bad-soden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grüne-bad-soden.de/gruene-bad-soden/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.132.30" ], @@ -40223,7 +40247,7 @@ } ], "responsive": { - "min_width": 404, + "min_width": 329, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -40249,13 +40273,13 @@ ], "title": "B90/Grüne Bad Soden" }, - "duration": 494, + "duration": 499, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 404, + "320x480": 329, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -40283,13 +40307,13 @@ ], "title": "B90/Grüne Bad Soden" }, - "duration": 485, + "duration": 502, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 404, + "320x480": 329, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -40332,7 +40356,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 490 + "value": 500 }, "RESPONSIVE": { "score": 1, @@ -40376,9 +40400,9 @@ "resolved_hostname": "www.gruene-badoeynhausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-badoeynhausen.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.108.41.20" ], @@ -40430,7 +40454,7 @@ ], "title": "Die Grünen Bad Oeynhausen" }, - "duration": 554, + "duration": 752, "error": null, "responsive": { "document_width": { @@ -40477,7 +40501,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 752 }, "RESPONSIVE": { "score": 1, @@ -40522,9 +40546,9 @@ "resolved_hostname": "www.gruene-badschoenborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-badschoenborn.de/gruenewelle/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.74.158.150" ], @@ -40577,7 +40601,7 @@ ], "title": "Grüne Liste Bad Schönborn" }, - "duration": 612, + "duration": 614, "error": null, "responsive": { "document_width": { @@ -40624,7 +40648,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 612 + "value": 614 }, "RESPONSIVE": { "score": 1, @@ -40664,9 +40688,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-badurach.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-badurach.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -40698,7 +40723,7 @@ "opengraph": null, "title": "GRÜNE BAD URACH/DETTINGEN/HÜLBEN/GRABENSTETTEN: Ortsverband Bad Urach" }, - "duration": 488, + "duration": 534, "error": null, "responsive": { "document_width": { @@ -40721,7 +40746,7 @@ "opengraph": null, "title": "GRÜNE BAD URACH/DETTINGEN/HÜLBEN/GRABENSTETTEN: Ortsverband Bad Urach" }, - "duration": 100, + "duration": 788, "error": null, "responsive": { "document_width": { @@ -40770,7 +40795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 661 }, "RESPONSIVE": { "score": 1, @@ -40815,9 +40840,9 @@ "resolved_hostname": "www.gruene-badvilbel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-badvilbel.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.173.102.23" ], @@ -40877,7 +40902,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Bad Vilbel - Willkommen bei den Grünen in Bad VilbelBündnis 90/DIE GRÜNEN Bad Vilbel" }, - "duration": 680, + "duration": 122, "error": null, "responsive": { "document_width": { @@ -40925,7 +40950,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 680 + "value": 122 }, "RESPONSIVE": { "score": 1, @@ -40970,9 +40995,10 @@ "resolved_hostname": "www.gruene-bammental.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-bammental.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-bammental.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -40999,7 +41025,7 @@ } ], "responsive": { - "min_width": 351, + "min_width": 322, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" ] @@ -41018,13 +41044,13 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 891, + "duration": 30, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 351, + "320x480": 322, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" @@ -41045,13 +41071,13 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 993, + "duration": 945, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 351, + "320x480": 322, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" @@ -41093,7 +41119,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 942 + "value": 488 }, "RESPONSIVE": { "score": 1, @@ -41137,9 +41163,9 @@ "resolved_hostname": "www.gruene-barnim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-barnim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -41197,7 +41223,7 @@ ], "title": "- Kreisverband Barnim, Brandenburg" }, - "duration": 741, + "duration": 974, "error": null, "responsive": { "document_width": { @@ -41245,7 +41271,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 741 + "value": 974 }, "RESPONSIVE": { "score": 1, @@ -41285,9 +41311,9 @@ "resolved_hostname": "www.gruene-bassum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bassum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -41329,7 +41355,7 @@ "opengraph": null, "title": "Grüne in Bassum: Startseite" }, - "duration": 219, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -41377,7 +41403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -41420,9 +41446,9 @@ "resolved_hostname": "www.gruene-bautzen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-bautzen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -41470,7 +41496,7 @@ "opengraph": null, "title": "Homepage - BÜNDNIS 90/DIE GRÜNEN Kreisverband Bautzen – Zwjazk 90/Zeleni Budyšin" }, - "duration": 239, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -41518,7 +41544,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 231 }, "RESPONSIVE": { "score": 0, @@ -41557,9 +41583,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bc.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -41588,7 +41614,7 @@ "opengraph": null, "title": "Grüne Kreisverband Biberach: Aktuell" }, - "duration": 613, + "duration": 741, "error": null, "responsive": { "document_width": { @@ -41636,7 +41662,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 613 + "value": 741 }, "RESPONSIVE": { "score": 0, @@ -41677,9 +41703,9 @@ "resolved_hostname": "www.gruene-beckum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-beckum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -41721,7 +41747,7 @@ "opengraph": null, "title": "Ehrlich.Gut.Grün für Beckum: Startseite" }, - "duration": 198, + "duration": 263, "error": null, "responsive": { "document_width": { @@ -41769,7 +41795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 263 }, "RESPONSIVE": { "score": 1, @@ -41839,7 +41865,7 @@ "opengraph": null, "title": "Herzlich willkommen bei den Gruenen in Bedburg-Hau" }, - "duration": 125, + "duration": 121, "error": null, "responsive": { "document_width": { @@ -41888,7 +41914,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 125 + "value": 121 }, "RESPONSIVE": { "score": 1, @@ -41959,7 +41985,7 @@ "opengraph": null, "title": "STRATO" }, - "duration": 81, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -42009,7 +42035,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 81 + "value": 69 }, "RESPONSIVE": { "score": 0, @@ -42053,9 +42079,9 @@ "resolved_hostname": "www.gruene-bergedorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergedorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42100,7 +42126,7 @@ "opengraph": null, "title": "Grüne Bergedorf: Home" }, - "duration": 191, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -42147,7 +42173,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -42187,9 +42213,9 @@ "resolved_hostname": "www.gruene-bergheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bergheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42231,7 +42257,7 @@ "opengraph": null, "title": "GRÜNE Bergheim: Startseite" }, - "duration": 171, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -42279,7 +42305,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 163 }, "RESPONSIVE": { "score": 1, @@ -42319,9 +42345,9 @@ "resolved_hostname": "www.gruene-bergischgladbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergischgladbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42363,7 +42389,7 @@ "opengraph": null, "title": "GRÜNE BERGISCH GLADBACH: Home" }, - "duration": 194, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -42411,7 +42437,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -42572,7 +42598,7 @@ ], "title": "GRÜNE Bielefeld" }, - "duration": 672, + "duration": 630, "error": null, "responsive": { "document_width": { @@ -42621,7 +42647,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 672 + "value": 630 }, "RESPONSIVE": { "score": 1, @@ -42666,9 +42692,10 @@ "resolved_hostname": "www.gruene-birkenau.de" } }, - "icons": [ - "eec3b00d19c99ce60fd19e6bc55abfb2.ico" - ], + "icons": { + "http://gruene-birkenau.de/templates/gruene13/favicon.ico": "eec3b00d19c99ce60fd19e6bc55abfb2.ico", + "http://www.gruene-birkenau.de/templates/gruene13/favicon.ico": "eec3b00d19c99ce60fd19e6bc55abfb2.ico" + }, "ipv4_addresses": [ "46.252.18.205" ], @@ -42720,7 +42747,7 @@ "opengraph": null, "title": "www.gruene-birkenau.de" }, - "duration": 310, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -42747,7 +42774,7 @@ "opengraph": null, "title": "www.gruene-birkenau.de" }, - "duration": 295, + "duration": 317, "error": null, "responsive": { "document_width": { @@ -42796,7 +42823,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 302 + "value": 308 }, "RESPONSIVE": { "score": 0, @@ -42836,9 +42863,9 @@ "resolved_hostname": "www.gruene-bitburg-pruem.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bitburg-pruem.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42880,7 +42907,7 @@ "opengraph": null, "title": "Kreisverband Bitburg-Prüm: Startseite" }, - "duration": 231, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -42928,7 +42955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -43005,7 +43032,7 @@ "urlchecks": [ { "content": null, - "duration": 56, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -43021,7 +43048,7 @@ }, { "content": null, - "duration": 57, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -43037,7 +43064,7 @@ }, { "content": null, - "duration": 129, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -43053,7 +43080,7 @@ }, { "content": null, - "duration": 131, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -43101,9 +43128,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 93 + "value": 105 }, "RESPONSIVE": { "score": 1, @@ -43119,7 +43146,7 @@ "value": true } }, - "score": 7.0 + "score": 6.5 }, { "details": { @@ -43144,9 +43171,9 @@ "resolved_hostname": "www.gruene-blomberg.de" } }, - "icons": [ - "bdfb10eae0a5c3da60676ab1f02e0e0b.ico" - ], + "icons": { + "http://www.gruene-blomberg.de/favicon.ico": "bdfb10eae0a5c3da60676ab1f02e0e0b.ico" + }, "ipv4_addresses": [ "217.160.223.18" ], @@ -43191,7 +43218,7 @@ "opengraph": null, "title": "Blombergs GRÜNE Seiten - Das Internetangebot von Bündnis 90 / DIE GRÜNEN" }, - "duration": 63, + "duration": 128, "error": null, "responsive": { "document_width": { @@ -43214,7 +43241,7 @@ "opengraph": null, "title": "Blombergs GRÜNE Seiten - Das Internetangebot von Bündnis 90 / DIE GRÜNEN" }, - "duration": 69, + "duration": 83, "error": null, "responsive": { "document_width": { @@ -43262,9 +43289,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 66 + "value": 106 }, "RESPONSIVE": { "score": 0, @@ -43280,7 +43307,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -43304,9 +43331,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -43348,7 +43375,7 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 210, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -43396,7 +43423,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -43456,7 +43483,7 @@ "urlchecks": [ { "content": null, - "duration": 76, + "duration": 89, "error": null, "responsive": { "document_width": { @@ -43506,7 +43533,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 76 + "value": 89 }, "RESPONSIVE": { "score": 0, @@ -43552,9 +43579,10 @@ "resolved_hostname": "www.gruene-bohmte.de" } }, - "icons": [ - "0deb279b67c6b805d11e27fc8df48f3a.ico" - ], + "icons": { + "http://gruene-bohmte.de/templates/bohmte/favicon.ico": "0deb279b67c6b805d11e27fc8df48f3a.ico", + "http://www.gruene-bohmte.de/templates/bohmte/favicon.ico": "0deb279b67c6b805d11e27fc8df48f3a.ico" + }, "ipv4_addresses": [ "178.254.50.123" ], @@ -43603,7 +43631,7 @@ "opengraph": null, "title": "Buendnis 90/Die Gruenen, OV Bohmte - Bündnis 90/Die Grünen" }, - "duration": 232, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -43630,7 +43658,7 @@ "opengraph": null, "title": "Buendnis 90/Die Gruenen, OV Bohmte - Bündnis 90/Die Grünen" }, - "duration": 282, + "duration": 256, "error": null, "responsive": { "document_width": { @@ -43679,7 +43707,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 294 }, "RESPONSIVE": { "score": 0, @@ -43719,9 +43747,9 @@ "resolved_hostname": "www.gruene-bottrop.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bottrop.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -43763,7 +43791,7 @@ "opengraph": null, "title": "GRÜNE IN BOTTROP: Startseite" }, - "duration": 194, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -43811,7 +43839,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -43854,9 +43882,9 @@ "resolvable": false } }, - "icons": [ - "d3067746e5ec12230b13fc7fedfbdaf1.ico" - ], + "icons": { + "http://www.gruene-brachttal.de/favicon.ico": "d3067746e5ec12230b13fc7fedfbdaf1.ico" + }, "ipv4_addresses": [ "81.169.145.75" ], @@ -43892,7 +43920,7 @@ "opengraph": null, "title": "Brachttal Grüne | Die Brachttal Grünen bitten zur Diskussion" }, - "duration": 273, + "duration": 283, "error": null, "responsive": { "document_width": { @@ -43940,7 +43968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 283 }, "RESPONSIVE": { "score": 0, @@ -43982,9 +44010,9 @@ "resolved_hostname": "www.gruene-bramsche.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-bramsche.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -44032,7 +44060,7 @@ ], "title": "Grüne Ortsverband Bramsche ::\tWir machen das klar." }, - "duration": 405, + "duration": 430, "error": null, "responsive": { "document_width": { @@ -44058,7 +44086,7 @@ ], "title": "Grüne Ortsverband Bramsche ::\tWir machen das klar." }, - "duration": 460, + "duration": 453, "error": null, "responsive": { "document_width": { @@ -44108,7 +44136,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 432 + "value": 442 }, "RESPONSIVE": { "score": 0, @@ -44148,9 +44176,9 @@ "resolved_hostname": "www.gruene-bremen-mitte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bremen-mitte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44192,7 +44220,7 @@ "opengraph": null, "title": "Grüne Mitte - Östliche Vorstadt: Startseite" }, - "duration": 220, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -44240,7 +44268,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -44280,9 +44308,9 @@ "resolved_hostname": "www.gruene-bremen-nord.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-nord.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44324,7 +44352,7 @@ "opengraph": null, "title": "KV Grüne Bremen-Nord: Startseite" }, - "duration": 218, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -44372,7 +44400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -44412,9 +44440,9 @@ "resolved_hostname": "www.gruene-bremerhaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremerhaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44456,7 +44484,7 @@ "opengraph": null, "title": "Kreisverband Bremerhaven: Home" }, - "duration": 195, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -44504,7 +44532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -44549,9 +44577,9 @@ "resolved_hostname": "www.gruene-brookmerland-hinte-suedbrookmerland.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruenerovbhsbl.alfahosting.org/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.134.8" ], @@ -44599,7 +44627,7 @@ "opengraph": null, "title": null }, - "duration": 69, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -44632,7 +44660,7 @@ ], "title": "Ortsverband" }, - "duration": 226, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -44751,7 +44779,7 @@ "opengraph": null, "title": "Bündnis90 / Die Grünen Ortsverband Bruchköbel" }, - "duration": 55, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -44801,7 +44829,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 55 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -44846,6 +44874,7 @@ "resolved_hostname": "www.gruene-brueggen.de" } }, + "icons": {}, "ipv4_addresses": [ "5.35.225.200" ], @@ -44904,7 +44933,7 @@ ], "title": "B'90/GRÜNE Brüggen" }, - "duration": 671, + "duration": 667, "error": null, "responsive": { "document_width": { @@ -44937,9 +44966,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -44952,7 +44980,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 671 + "value": 667 }, "RESPONSIVE": { "score": 1, @@ -44968,7 +44996,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -44992,9 +45020,9 @@ "resolved_hostname": "www.gruene-bueckeburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schaumburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45036,7 +45064,7 @@ "opengraph": null, "title": "Stadtverband Bückeburg: Stadtverband Bückeburg" }, - "duration": 212, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -45084,7 +45112,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -45128,9 +45156,10 @@ "resolved_hostname": "www.gruene-buende.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-buende.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-buende.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.48" ], @@ -45182,7 +45211,7 @@ ], "title": "Grünspecht" }, - "duration": 440, + "duration": 400, "error": null, "responsive": { "document_width": { @@ -45215,7 +45244,7 @@ ], "title": "Grünspecht" }, - "duration": 504, + "duration": 560, "error": null, "responsive": { "document_width": { @@ -45263,7 +45292,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 472 + "value": 480 }, "RESPONSIVE": { "score": 1, @@ -45306,9 +45335,9 @@ "resolved_hostname": "www.gruene-burgwedel.de" } }, - "icons": [ - "7b112a77ea87f04a01274c624274a369.ico" - ], + "icons": { + "http://www.gruene-burgwedel.de/wp-content/themes/blum-o-matic/favicon.ico": "7b112a77ea87f04a01274c624274a369.ico" + }, "ipv4_addresses": [ "80.237.133.239" ], @@ -45325,7 +45354,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -45333,7 +45362,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -45356,7 +45385,7 @@ "opengraph": null, "title": "Startseite - Die Grünen in Burgwedel" }, - "duration": 565, + "duration": 519, "error": null, "responsive": { "document_width": { @@ -45404,7 +45433,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 519 }, "RESPONSIVE": { "score": 0, @@ -45444,9 +45473,9 @@ "resolved_hostname": "www.gruene-buxtehude.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-buxtehude.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45488,7 +45517,7 @@ "opengraph": null, "title": "GRÜNE Buxtehude: Herzlich Willkommen beim Ortsverband Buxtehude-Apensen" }, - "duration": 278, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -45536,7 +45565,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -45580,9 +45609,9 @@ "resolved_hostname": "www.gruene-castrop-rauxel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-castrop-rauxel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.133.104.29" ], @@ -45640,7 +45669,7 @@ ], "title": "Stadtverband Castrop-Rauxel" }, - "duration": 585, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -45688,7 +45717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 585 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -45728,9 +45757,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45772,7 +45801,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 219, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -45820,7 +45849,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -45860,9 +45889,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45904,7 +45933,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 316, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -45952,7 +45981,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 316 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -45992,9 +46021,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46036,7 +46065,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 196, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -46084,7 +46113,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -46124,9 +46153,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46168,7 +46197,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 200, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -46216,7 +46245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -46256,9 +46285,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46300,7 +46329,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 220, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -46348,7 +46377,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -46435,7 +46464,7 @@ "opengraph": null, "title": "Grüne Cochem Zell | Grün wirkt!" }, - "duration": 469, + "duration": 461, "error": null, "responsive": { "document_width": { @@ -46462,7 +46491,7 @@ "opengraph": null, "title": "Grüne Cochem Zell | Grün wirkt!" }, - "duration": 563, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -46511,7 +46540,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 516 + "value": 343 }, "RESPONSIVE": { "score": 0, @@ -46552,9 +46581,10 @@ "resolved_hostname": "www.gruene-coe.de" } }, - "icons": [ - "52582e72bd938205498521c6b509c49d.ico" - ], + "icons": { + "https://gruene-coe.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico", + "https://www.gruene-coe.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -46593,7 +46623,7 @@ "opengraph": null, "title": "Die Grünen KV Coesfeld - Startseite" }, - "duration": 257, + "duration": 242, "error": null, "responsive": { "document_width": { @@ -46616,7 +46646,7 @@ "opengraph": null, "title": "Die Grünen KV Coesfeld - Startseite" }, - "duration": 587, + "duration": 620, "error": null, "responsive": { "document_width": { @@ -46665,7 +46695,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 431 }, "RESPONSIVE": { "score": 0, @@ -46706,9 +46736,10 @@ "resolved_hostname": "www.gruene-coesfeld.de" } }, - "icons": [ - "52582e72bd938205498521c6b509c49d.ico" - ], + "icons": { + "https://gruene-coesfeld.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico", + "https://www.gruene-coesfeld.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -46747,7 +46778,7 @@ "opengraph": null, "title": "Die Grünen OV Coesfeld - Startseite" }, - "duration": 284, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -46770,7 +46801,7 @@ "opengraph": null, "title": "Die Grünen OV Coesfeld - Startseite" }, - "duration": 401, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -46819,7 +46850,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 300 }, "RESPONSIVE": { "score": 0, @@ -46859,9 +46890,9 @@ "resolved_hostname": "www.gruene-cuxhaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kv-cuxhaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "80.67.16.8" ], @@ -46878,7 +46909,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -46886,7 +46917,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -46909,7 +46940,7 @@ "opengraph": null, "title": "Kreisverband Cuxhaven: Home" }, - "duration": 257, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -46957,7 +46988,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -47035,7 +47066,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -47051,7 +47082,7 @@ }, { "content": null, - "duration": 62, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -47102,7 +47133,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -47183,7 +47214,7 @@ "opengraph": null, "title": "Grüne Darmstadt Startseite | gruene-darmstadt.de" }, - "duration": 131, + "duration": 124, "error": null, "responsive": { "document_width": { @@ -47232,7 +47263,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 131 + "value": 124 }, "RESPONSIVE": { "score": 1, @@ -47272,9 +47303,9 @@ "resolved_hostname": "www.gruene-datteln.de" } }, - "icons": [ - "9baf3023ef50148103c1f0996ed96874.ico" - ], + "icons": { + "https://www.gruene-datteln.de/favicon_d1_res.ico": "9baf3023ef50148103c1f0996ed96874.ico" + }, "ipv4_addresses": [ "217.160.0.61" ], @@ -47316,7 +47347,7 @@ "opengraph": null, "title": "Home" }, - "duration": 184, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -47364,7 +47395,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 177 }, "RESPONSIVE": { "score": 0, @@ -47409,9 +47440,9 @@ "resolved_hostname": "www.gruene-dessau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-dessau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.63.49.198" ], @@ -47470,7 +47501,7 @@ ], "title": "-" }, - "duration": 643, + "duration": 625, "error": null, "responsive": { "document_width": { @@ -47518,7 +47549,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 643 + "value": 625 }, "RESPONSIVE": { "score": 0, @@ -47558,9 +47589,9 @@ "resolved_hostname": "www.gruene-detmold.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-detmold.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47602,7 +47633,7 @@ "opengraph": null, "title": "Ortsverband Detmold: Start" }, - "duration": 210, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -47650,7 +47681,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -47690,9 +47721,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47734,7 +47765,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 204, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -47782,7 +47813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 206 }, "RESPONSIVE": { "score": 0, @@ -47822,9 +47853,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47866,7 +47897,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 203, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -47914,7 +47945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 212 }, "RESPONSIVE": { "score": 0, @@ -47954,9 +47985,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47998,7 +48029,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 430, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -48046,7 +48077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 216 }, "RESPONSIVE": { "score": 0, @@ -48086,9 +48117,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48130,7 +48161,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 233, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -48178,7 +48209,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 193 }, "RESPONSIVE": { "score": 0, @@ -48218,9 +48249,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48262,7 +48293,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 276, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -48310,7 +48341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 199 }, "RESPONSIVE": { "score": 0, @@ -48350,9 +48381,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48394,7 +48425,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 238, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -48442,7 +48473,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 196 }, "RESPONSIVE": { "score": 0, @@ -48482,9 +48513,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48526,7 +48557,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 241, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -48574,7 +48605,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 210 }, "RESPONSIVE": { "score": 0, @@ -48618,9 +48649,9 @@ "resolved_hostname": "www.gruene-dillingen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dillingen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -48647,7 +48678,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -48666,13 +48697,13 @@ "opengraph": null, "title": "Die Grünen in Dillingen - BÜNDNIS 90/DIE GRÜNEN Dillingen/Saar" }, - "duration": 318, + "duration": 294, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -48713,7 +48744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 318 + "value": 294 }, "RESPONSIVE": { "score": 1, @@ -48798,7 +48829,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 78, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -48821,7 +48852,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 87, + "duration": 93, "error": null, "responsive": { "document_width": { @@ -48872,7 +48903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 82 + "value": 84 }, "RESPONSIVE": { "score": 0, @@ -48916,9 +48947,9 @@ "resolved_hostname": "www.gruene-dinslaken.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-dinslaken.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.196" ], @@ -48976,7 +49007,7 @@ ], "title": "Grüne Dinslaken - Homepage von Bündnis '90 / DIE GRÜNEN in DinslakenGrüne Dinslaken" }, - "duration": 970, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -49022,9 +49053,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 970 + "value": 87 }, "RESPONSIVE": { "score": 0, @@ -49040,7 +49071,7 @@ "value": true } }, - "score": 6.5 + "score": 7.0 }, { "details": { @@ -49065,9 +49096,9 @@ "resolved_hostname": "www.gruene-dissen.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-dissen.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -49115,7 +49146,7 @@ ], "title": "Grüne Ortsverband Dissen ::\tWir machen das klar." }, - "duration": 409, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -49141,7 +49172,7 @@ ], "title": "Grüne Ortsverband Dissen ::\tWir machen das klar." }, - "duration": 457, + "duration": 461, "error": null, "responsive": { "document_width": { @@ -49191,7 +49222,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 433 + "value": 525 }, "RESPONSIVE": { "score": 0, @@ -49231,9 +49262,9 @@ "resolved_hostname": "www.gruene-dithmarschen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-dithmarschen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -49275,7 +49306,7 @@ "opengraph": null, "title": "Kreisverband Dithmarschen: Startseite" }, - "duration": 193, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -49323,7 +49354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -49366,9 +49397,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-dormagen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -49410,7 +49441,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 915, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -49457,7 +49488,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 915 + "value": 175 }, "RESPONSIVE": { "score": 0, @@ -49498,9 +49529,9 @@ "resolved_hostname": "www.gruene-dorsten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dorsten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -49542,7 +49573,7 @@ "opengraph": null, "title": "DIE GRÜNEN IN DORSTEN: Startseite" }, - "duration": 231, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -49590,7 +49621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -49631,9 +49662,7 @@ "resolved_hostname": "www.gruene-dortmund.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "217.160.230.170" ], @@ -49681,7 +49710,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN - Die GRÜNEN in Dortmund - Kreisverband - Kreisverband Dortmund" }, - "duration": 213, + "duration": 599, "error": null, "responsive": { "document_width": { @@ -49704,7 +49733,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN - Die GRÜNEN in Dortmund - Kreisverband - Kreisverband Dortmund" }, - "duration": 157, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -49754,7 +49783,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 185 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -49795,9 +49824,9 @@ "resolved_hostname": "www.gruene-drensteinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "http://www.gruene-drensteinfurt.de/cms/images/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.132.181" ], @@ -49839,7 +49868,7 @@ "opengraph": null, "title": "GRÜNE Drensteinfurt" }, - "duration": 174, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -49862,7 +49891,7 @@ "opengraph": null, "title": "GRÜNE Drensteinfurt" }, - "duration": 213, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -49911,7 +49940,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -49996,7 +50025,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen in Nordsachsen" }, - "duration": 86, + "duration": 100, "error": null, "responsive": { "document_width": { @@ -50019,7 +50048,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen in Nordsachsen" }, - "duration": 68, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -50070,7 +50099,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 77 + "value": 86 }, "RESPONSIVE": { "score": 0, @@ -50114,9 +50143,9 @@ "resolved_hostname": "www.gruene-duesseldorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-duesseldorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.57.13" ], @@ -50175,7 +50204,7 @@ ], "title": "GRÜNE Düsseldorf" }, - "duration": 963, + "duration": 115, "error": null, "responsive": { "document_width": { @@ -50223,7 +50252,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 963 + "value": 115 }, "RESPONSIVE": { "score": 1, @@ -50263,9 +50292,9 @@ "resolved_hostname": "www.gruene-duew.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-duew.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -50307,7 +50336,7 @@ "opengraph": null, "title": "Grüner KV Bad Dürkheim: Startseite" }, - "duration": 197, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -50355,7 +50384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -50395,9 +50424,7 @@ "resolved_hostname": "www.gruene-echzell.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "89.107.186.22" ], @@ -50442,7 +50469,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Ortsverband Echzell | Kommunapolitik für Echzell ... ökologisch sozial interkulturell" }, - "duration": 62, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -50491,7 +50518,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 72 }, "RESPONSIVE": { "score": 0, @@ -50530,9 +50557,9 @@ "resolvable": false } }, - "icons": [ - "1b890842ba700bd1869198e993f498ac.ico" - ], + "icons": { + "http://gruene-edermuende.de/images/favicon.ico": "1b890842ba700bd1869198e993f498ac.ico" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -50564,7 +50591,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Edermünde - News" }, - "duration": 137, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -50613,7 +50640,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 137 + "value": 143 }, "RESPONSIVE": { "score": 0, @@ -50656,6 +50683,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "81.169.145.69" ], @@ -50698,7 +50726,7 @@ ], "title": "Grüne Edewecht • BlickWechsel Infos über GRÜNE Politik in Edewecht" }, - "duration": 306, + "duration": 3, "error": null, "responsive": { "document_width": { @@ -50731,9 +50759,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -50745,9 +50772,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 306 + "value": 3 }, "RESPONSIVE": { "score": 0, @@ -50764,7 +50791,7 @@ "value": false } }, - "score": 4.5 + "score": 6.0 }, { "details": { @@ -50789,9 +50816,9 @@ "resolved_hostname": "www.gruene-egg-leo.de" } }, - "icons": [ - "93655d21a8137fea9cd27c022302258d.ico" - ], + "icons": { + "http://www.gruene-egg-leo.de/favicon.ico": "93655d21a8137fea9cd27c022302258d.ico" + }, "ipv4_addresses": [ "82.165.201.248" ], @@ -50808,7 +50835,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -50816,7 +50843,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -50836,7 +50863,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen — Ortsverband Eggenstein-Leopoldshafen" }, - "duration": 125, + "duration": 112, "error": null, "responsive": { "document_width": { @@ -50859,7 +50886,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen — Ortsverband Eggenstein-Leopoldshafen" }, - "duration": 108, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -50949,9 +50976,9 @@ "resolved_hostname": "www.gruene-eimsbuettel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eimsbuettel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -50993,7 +51020,7 @@ "opengraph": null, "title": "GRÜNE Eimsbüttel: Home" }, - "duration": 217, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -51041,7 +51068,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -51126,7 +51153,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Eitorf" }, - "duration": 61, + "duration": 48, "error": null, "responsive": { "document_width": { @@ -51149,7 +51176,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Eitorf" }, - "duration": 70, + "duration": 56, "error": null, "responsive": { "document_width": { @@ -51200,7 +51227,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 52 }, "RESPONSIVE": { "score": 0, @@ -51243,9 +51270,9 @@ "resolved_hostname": "www.gruene-elbe-weisseritz.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-elbe-weisseritz.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -51293,7 +51320,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Sächsische Schweiz - Osterzgebirge" }, - "duration": 238, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -51341,7 +51368,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 243 }, "RESPONSIVE": { "score": 0, @@ -51381,9 +51408,9 @@ "resolved_hostname": "www.gruene-els.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-els.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -51425,7 +51452,7 @@ "opengraph": null, "title": "Grüne Emsland Süd: Home" }, - "duration": 198, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -51473,7 +51500,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -51513,9 +51540,9 @@ "resolved_hostname": "www.gruene-els.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-els.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -51557,7 +51584,7 @@ "opengraph": null, "title": "Grüne Emsland Süd: Home" }, - "duration": 189, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -51605,7 +51632,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -51684,7 +51711,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Elsdorf: Gruene-Elsdorf" }, - "duration": 329, + "duration": 387, "error": null, "responsive": { "document_width": { @@ -51707,7 +51734,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Elsdorf: Gruene-Elsdorf" }, - "duration": 333, + "duration": 446, "error": null, "responsive": { "document_width": { @@ -51757,7 +51784,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 331 + "value": 416 }, "RESPONSIVE": { "score": 0, @@ -51801,9 +51828,9 @@ "resolved_hostname": "www.gruene-em.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-em.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.38.249.13" ], @@ -51856,7 +51883,7 @@ ], "title": "Grüne im Kreis Emmendingen" }, - "duration": 257, + "duration": 662, "error": null, "responsive": { "document_width": { @@ -51903,7 +51930,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 662 }, "RESPONSIVE": { "score": 1, @@ -51924,12 +51951,15 @@ { "details": { "canonical_urls": [ - "http://gruene-emden.de/" + "http://gruene-emden.de/", + "https://gruene-emden.de/" ], "cms": "wordpress", "feeds": [ "http://gruene-emden.de/comments/feed/", - "http://gruene-emden.de/feed/" + "http://gruene-emden.de/feed/", + "https://gruene-emden.de/comments/feed/", + "https://gruene-emden.de/feed/" ], "hostnames": { "gruene-emden.de": { @@ -51947,9 +51977,10 @@ "resolved_hostname": "www.gruene-emden.de" } }, - "icons": [ - "a4046cbaf002313241763cf17befce6e.jpg" - ], + "icons": { + "http://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg": "a4046cbaf002313241763cf17befce6e.jpg", + "https://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg": "a4046cbaf002313241763cf17befce6e.jpg" + }, "ipv4_addresses": [ "109.237.140.52" ], @@ -51965,17 +51996,14 @@ "url": "http://www.gruene-emden.de/" }, { - "error": { - "message": "HTTPSConnectionPool(host='gruene-emden.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-emden.de' doesn't match either of '*.alfahosting-server.de', 'alfahosting-server.de'\",),))", - "type": "" - }, + "error": null, "redirects_to": null, "url": "https://gruene-emden.de/" }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-emden.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-emden.de' doesn't match either of '*.alfahosting-server.de', 'alfahosting-server.de'\",),))", - "type": "" + "message": "('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))", + "type": "" }, "redirects_to": null, "url": "https://www.gruene-emden.de/" @@ -52008,7 +52036,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Emden - Mehr GRÜN für Emden" }, - "duration": 355, + "duration": 923, "error": null, "responsive": { "document_width": { @@ -52021,6 +52049,40 @@ }, "status_code": 200, "url": "http://gruene-emden.de/" + }, + { + "content": { + "canonical_link": "https://gruene-emden.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-emden.de/feed/", + "https://gruene-emden.de/comments/feed/" + ], + "generator": "WordPress 4.9.8", + "icon": "https://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg", + "opengraph": [ + "og:description", + "og:locale", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "BÜNDNIS 90/DIE GRÜNEN Emden - Mehr GRÜN für Emden" + }, + "duration": 651, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-emden.de/" } ] }, @@ -52033,8 +52095,9 @@ }, "result": { "CANONICAL_URL": { - "score": 1, - "value": true + "score": 0, + "type": "boolean", + "value": false }, "DNS_RESOLVABLE_IPV4": { "score": 1, @@ -52049,14 +52112,13 @@ "value": true }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 355 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -52072,7 +52134,7 @@ "value": true } }, - "score": 7.5 + "score": 8.5 }, { "details": { @@ -52096,9 +52158,9 @@ "resolved_hostname": "www.gruene-emsdetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-emsdetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52140,7 +52202,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Emsdetten: Home" }, - "duration": 212, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -52188,7 +52250,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 193 }, "RESPONSIVE": { "score": 1, @@ -52228,9 +52290,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52272,7 +52334,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 210, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -52320,7 +52382,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -52360,9 +52422,9 @@ "resolved_hostname": "www.gruene-engelskirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-engelskirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52404,7 +52466,7 @@ "opengraph": null, "title": "Grüne Engelskirchen: Startseite" }, - "duration": 230, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -52452,7 +52514,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -52496,9 +52558,9 @@ "resolved_hostname": "www.gruene-eppelborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -52531,7 +52593,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -52557,13 +52619,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 454, + "duration": 457, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -52605,7 +52667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 457 }, "RESPONSIVE": { "score": 1, @@ -52686,7 +52748,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 155, + "duration": 159, "error": null, "responsive": { "document_width": { @@ -52709,7 +52771,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 145, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -52732,7 +52794,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 419, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -52755,7 +52817,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 294, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -52805,7 +52867,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 253 + "value": 216 }, "RESPONSIVE": { "score": 0, @@ -52845,9 +52907,9 @@ "resolved_hostname": "www.gruene-erkrath.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erkrath.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52889,7 +52951,7 @@ "opengraph": null, "title": "DIE GRÜNEN IN ERKRATH: Home" }, - "duration": 210, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -52937,7 +52999,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -52980,9 +53042,9 @@ "resolved_hostname": "www.gruene-erzgebirge.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-erzgebirge.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -53030,7 +53092,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN im Erzgebirge" }, - "duration": 221, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -53078,7 +53140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 234 }, "RESPONSIVE": { "score": 0, @@ -53118,9 +53180,9 @@ "resolved_hostname": "www.gruene-es.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-es.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -53162,7 +53224,7 @@ "opengraph": null, "title": "Kreisverband Esslingen: HOME" }, - "duration": 265, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -53210,7 +53272,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 265 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -53291,14 +53353,14 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 65, + "duration": 122, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 980, - "768x1024": 980 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": null }, @@ -53314,7 +53376,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 69, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -53337,7 +53399,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 155, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -53360,14 +53422,14 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 152, + "duration": 147, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 + "320x480": 980, + "768x1024": 980 }, "viewport_meta_tag": null }, @@ -53410,7 +53472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 110 + "value": 131 }, "RESPONSIVE": { "score": 0, @@ -53459,9 +53521,12 @@ "resolved_hostname": "www.gruene-esslingen.de" } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "http://gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "http://www.gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "https://gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "https://www.gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "134.119.234.65" ], @@ -53507,7 +53572,7 @@ "opengraph": null, "title": "Home" }, - "duration": 342, + "duration": 328, "error": null, "responsive": { "document_width": { @@ -53534,7 +53599,7 @@ "opengraph": null, "title": "Home" }, - "duration": 305, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -53561,7 +53626,7 @@ "opengraph": null, "title": "Home" }, - "duration": 445, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -53588,7 +53653,7 @@ "opengraph": null, "title": "Home" }, - "duration": 401, + "duration": 414, "error": null, "responsive": { "document_width": { @@ -53636,7 +53701,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 373 + "value": 400 }, "RESPONSIVE": { "score": 1, @@ -53680,9 +53745,9 @@ "resolved_hostname": "www.gruene-euskirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-euskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -53734,7 +53799,7 @@ ], "title": "Bündnis 90/Die Grünen KV Euskirchen" }, - "duration": 541, + "duration": 601, "error": null, "responsive": { "document_width": { @@ -53781,7 +53846,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 601 }, "RESPONSIVE": { "score": 1, @@ -53820,9 +53885,9 @@ "resolvable": false } }, - "icons": [ - "11ef6c0950e86d4aafd15be832deddd9.ico" - ], + "icons": { + "https://gruene-everswinkel.de/fileadmin/die-gruenen/images/favicon.ico": "11ef6c0950e86d4aafd15be832deddd9.ico" + }, "ipv4_addresses": [ "85.13.144.127" ], @@ -53854,7 +53919,7 @@ "opengraph": null, "title": "Die Grünen Everswinkel: Die Grünen aktuell" }, - "duration": 245, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -53902,7 +53967,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -53952,9 +54017,9 @@ "resolved_hostname": "www.gruene-fernwald.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-fernwald.de/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "217.160.0.75" ], @@ -53998,7 +54063,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Fernwald" }, - "duration": 733, + "duration": 847, "error": null, "responsive": { "document_width": { @@ -54026,7 +54091,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Fernwald" }, - "duration": 843, + "duration": 890, "error": null, "responsive": { "document_width": { @@ -54074,7 +54139,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 788 + "value": 868 }, "RESPONSIVE": { "score": 0, @@ -54115,6 +54180,7 @@ "resolved_hostname": "www.gruene-feuchtwangen.de" } }, + "icons": {}, "ipv4_addresses": [ "134.119.225.68" ], @@ -54155,11 +54221,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.1 CMS", - "icon": "http://www.wirfuerfeu-gruene.de/fileadmin/pics/favicon.ico", + "icon": "http://www.gruene-feuchtwangen.de/fileadmin/pics/favicon.ico", "opengraph": null, "title": "Startseite" }, - "duration": 234, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -54178,11 +54244,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.1 CMS", - "icon": "http://www.wirfuerfeu-gruene.de/fileadmin/pics/favicon.ico", + "icon": "http://www.gruene-feuchtwangen.de/fileadmin/pics/favicon.ico", "opengraph": null, "title": "Startseite" }, - "duration": 205, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -54216,9 +54282,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -54233,7 +54298,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 228 }, "RESPONSIVE": { "score": 0, @@ -54249,7 +54314,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -54273,9 +54338,9 @@ "resolved_hostname": "www.gruene-fichtelgebirge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-fichtelgebirge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -54317,7 +54382,7 @@ "opengraph": null, "title": "GRÜNE-FICHTELGEBIRGE : Home" }, - "duration": 188, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -54365,7 +54430,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -54404,9 +54469,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-filderstadt.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -54435,7 +54500,7 @@ "opengraph": null, "title": "Grüne Filderstadt: HOME" }, - "duration": 552, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -54483,7 +54548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 552 + "value": 540 }, "RESPONSIVE": { "score": 0, @@ -54524,9 +54589,9 @@ "resolved_hostname": "www.gruene-flensburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-flensburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -54568,7 +54633,7 @@ "opengraph": null, "title": "GRÜNE Flensburg: Home" }, - "duration": 236, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -54616,7 +54681,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -54697,7 +54762,7 @@ "opengraph": null, "title": "Home" }, - "duration": 801, + "duration": 750, "error": null, "responsive": { "document_width": { @@ -54746,7 +54811,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 801 + "value": 750 }, "RESPONSIVE": { "score": 1, @@ -54827,7 +54892,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 161, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -54850,7 +54915,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 189, + "duration": 159, "error": null, "responsive": { "document_width": { @@ -54873,7 +54938,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 271, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -54896,7 +54961,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 315, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -54946,7 +55011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 266 }, "RESPONSIVE": { "score": 0, @@ -55025,7 +55090,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 150, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -55048,7 +55113,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 138, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -55098,7 +55163,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 144 + "value": 156 }, "RESPONSIVE": { "score": 0, @@ -55171,7 +55236,7 @@ "opengraph": null, "title": "Das Neueste" }, - "duration": 221, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -55219,7 +55284,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 179 }, "RESPONSIVE": { "score": 0, @@ -55264,9 +55329,9 @@ "resolved_hostname": "www.gruene-freisen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -55299,7 +55364,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -55325,13 +55390,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 426, + "duration": 487, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -55373,7 +55438,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 426 + "value": 487 }, "RESPONSIVE": { "score": 1, @@ -55416,9 +55481,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-freudenberg-kzb.de/wp-content/themes/1508266415-zKE0fS/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -55456,6 +55521,7 @@ "icon": "http://xn--grne-freudenberg-kzb.de/wp-content/themes/1508266415-zKE0fS/favicon.png", "opengraph": [ "og:description", + "og:image", "og:locale", "og:site_name", "og:title", @@ -55464,7 +55530,7 @@ ], "title": "Stadtverband Freudenberg" }, - "duration": 213, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -55512,7 +55578,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -55556,9 +55622,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-freudenstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.159" ], @@ -55603,7 +55669,7 @@ ], "title": "Kreisverband Freudenstadt" }, - "duration": 546, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -55651,7 +55717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 546 + "value": 583 }, "RESPONSIVE": { "score": 1, @@ -55740,7 +55806,7 @@ ], "title": "Bündnis 90 / Die Grünen Friedberg (Hessen) – Kommunapolitik für Friedberg ökologisch sozial interkulturell" }, - "duration": 565, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -55789,7 +55855,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 152 }, "RESPONSIVE": { "score": 1, @@ -55836,9 +55902,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -55881,7 +55948,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 303, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -55915,7 +55982,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 385, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -55963,7 +56030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 344 + "value": 373 }, "RESPONSIVE": { "score": 1, @@ -56010,9 +56077,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56055,7 +56123,182 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 283, + "duration": 300, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 370, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-fuerth-land.de/" + }, + { + "content": { + "canonical_link": "https://www.gruene-fuerth-land.de/", + "encoding": "utf-8", + "feeds": [ + "https://www.gruene-fuerth-land.de/feed/", + "https://www.gruene-fuerth-land.de/comments/feed/" + ], + "generator": null, + "icon": "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "KREISVERBAND FÜRTH-LAND" + }, + "duration": 396, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 370, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://www.gruene-fuerth-land.de/" + } + ] + }, + "input_url": "http://www.gruene-fuerth-land.de/category/ov-groshabersdorf/", + "meta": { + "city": "Großhabersdorf", + "district": "Fürth-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 0, + "type": "boolean", + "value": false + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 348 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 7.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-fuerth-land.de/", + "https://www.gruene-fuerth-land.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-fuerth-land.de/comments/feed/", + "http://www.gruene-fuerth-land.de/feed/", + "https://www.gruene-fuerth-land.de/comments/feed/", + "https://www.gruene-fuerth-land.de/feed/" + ], + "hostnames": { + "gruene-fuerth-land.de": { + "aliases": [ + "www.gruene-fuerth-land.de" + ], + "ip_addresses": [ + "81.169.145.82" + ], + "resolvable": true, + "resolved_hostname": "gruene-fuerth-land.de" + }, + "www.gruene-fuerth-land.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "81.169.145.82" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-fuerth-land.de/", + "url": "http://gruene-fuerth-land.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-fuerth-land.de/", + "url": "https://gruene-fuerth-land.de/" + } + ], + "responsive": { + "min_width": 370, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "http://www.gruene-fuerth-land.de/", + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-fuerth-land.de/feed/", + "http://www.gruene-fuerth-land.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "KREISVERBAND FÜRTH-LAND" + }, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -56105,180 +56348,6 @@ } ] }, - "input_url": "http://www.gruene-fuerth-land.de/category/ov-groshabersdorf/", - "meta": { - "city": "Großhabersdorf", - "district": "Fürth-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 0, - "type": "boolean", - "value": false - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 324 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 7.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-fuerth-land.de/", - "https://www.gruene-fuerth-land.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-fuerth-land.de/comments/feed/", - "http://www.gruene-fuerth-land.de/feed/", - "https://www.gruene-fuerth-land.de/comments/feed/", - "https://www.gruene-fuerth-land.de/feed/" - ], - "hostnames": { - "gruene-fuerth-land.de": { - "aliases": [ - "www.gruene-fuerth-land.de" - ], - "ip_addresses": [ - "81.169.145.82" - ], - "resolvable": true, - "resolved_hostname": "gruene-fuerth-land.de" - }, - "www.gruene-fuerth-land.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "81.169.145.82" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-fuerth-land.de/", - "url": "http://gruene-fuerth-land.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-fuerth-land.de/", - "url": "https://gruene-fuerth-land.de/" - } - ], - "responsive": { - "min_width": 370, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "http://www.gruene-fuerth-land.de/", - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-fuerth-land.de/feed/", - "http://www.gruene-fuerth-land.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "KREISVERBAND FÜRTH-LAND" - }, - "duration": 326, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 370, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-fuerth-land.de/" - }, - { - "content": { - "canonical_link": "https://www.gruene-fuerth-land.de/", - "encoding": "utf-8", - "feeds": [ - "https://www.gruene-fuerth-land.de/feed/", - "https://www.gruene-fuerth-land.de/comments/feed/" - ], - "generator": null, - "icon": "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "KREISVERBAND FÜRTH-LAND" - }, - "duration": 325, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 370, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://www.gruene-fuerth-land.de/" - } - ] - }, "input_url": "http://www.gruene-fuerth-land.de/category/ov-rosstal/", "meta": { "city": "Roßtal", @@ -56311,7 +56380,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 326 + "value": 328 }, "RESPONSIVE": { "score": 1, @@ -56358,9 +56427,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56403,7 +56473,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 347, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -56437,7 +56507,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 420, + "duration": 505, "error": null, "responsive": { "document_width": { @@ -56485,7 +56555,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 384 + "value": 388 }, "RESPONSIVE": { "score": 1, @@ -56532,9 +56602,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56577,7 +56648,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 315, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -56611,7 +56682,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 418, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -56659,7 +56730,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 366 + "value": 362 }, "RESPONSIVE": { "score": 1, @@ -56704,9 +56775,9 @@ "resolved_hostname": "www.gruene-fuerth.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-fuerth.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.47.73.227" ], @@ -56759,7 +56830,7 @@ ], "title": "Bündnis 90 / Die Grünen Fürth" }, - "duration": 371, + "duration": 289, "error": null, "responsive": { "document_width": { @@ -56806,7 +56877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 289 }, "RESPONSIVE": { "score": 0, @@ -56846,9 +56917,9 @@ "resolved_hostname": "www.gruene-fulda.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-fulda.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -56890,7 +56961,7 @@ "opengraph": null, "title": "Kreis FULDA: Home" }, - "duration": 199, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -56938,7 +57009,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -56981,9 +57052,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-gehrden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.163" ], @@ -57029,7 +57100,7 @@ ], "title": "Grüne Gehrden" }, - "duration": 457, + "duration": 484, "error": null, "responsive": { "document_width": { @@ -57077,7 +57148,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 457 + "value": 484 }, "RESPONSIVE": { "score": 1, @@ -57122,9 +57193,9 @@ "resolved_hostname": "www.gruene-geldern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-geldern.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.17" ], @@ -57183,7 +57254,7 @@ ], "title": "" }, - "duration": 678, + "duration": 598, "error": null, "responsive": { "document_width": { @@ -57231,7 +57302,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 678 + "value": 598 }, "RESPONSIVE": { "score": 1, @@ -57276,9 +57347,9 @@ "resolved_hostname": "www.gruene-gellersen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gellersen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.129.244" ], @@ -57331,11 +57402,11 @@ ], "title": "Grüne Gellersen" }, - "duration": 983, + "duration": 846, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1027, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -57378,7 +57449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 983 + "value": 846 }, "RESPONSIVE": { "score": 1, @@ -57424,9 +57495,10 @@ "resolved_hostname": "www.gruene-gelsenkirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-gelsenkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-gelsenkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.252.18.146" ], @@ -57453,7 +57525,7 @@ } ], "responsive": { - "min_width": 437, + "min_width": 410, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -57481,13 +57553,13 @@ ], "title": "GRÜNE Gelsenkirchen" }, - "duration": 13, + "duration": 197, "error": null, "responsive": { "document_width": { "1024x768": 1090, "1920x1080": 1920, - "320x480": 437, + "320x480": 410, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -57517,13 +57589,13 @@ ], "title": "GRÜNE Gelsenkirchen" }, - "duration": 178, + "duration": 625, "error": null, "responsive": { "document_width": { "1024x768": 1090, "1920x1080": 1920, - "320x480": 437, + "320x480": 410, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -57563,9 +57635,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 96 + "value": 411 }, "RESPONSIVE": { "score": 1, @@ -57581,7 +57653,7 @@ "value": true } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -57605,9 +57677,9 @@ "resolved_hostname": "www.gruene-georgsmarienhuette.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-georgsmarienhuette.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -57655,7 +57727,7 @@ ], "title": "Grüne Ortsverband Georgmarienhütte ::\tWir machen das klar." }, - "duration": 362, + "duration": 433, "error": null, "responsive": { "document_width": { @@ -57704,7 +57776,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 362 + "value": 433 }, "RESPONSIVE": { "score": 0, @@ -57743,9 +57815,9 @@ "resolvable": false } }, - "icons": [ - "5b8565f8cba452e6903b09c8e60530ec.png" - ], + "icons": { + "http://gruene-gescher.de/assets/images/sonnenblume-auf-transparent-hellesgelb-01-126x128-96.png": "5b8565f8cba452e6903b09c8e60530ec.png" + }, "ipv4_addresses": [ "81.169.145.94" ], @@ -57780,7 +57852,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Gescher | Willkommen" }, - "duration": 78, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -57829,7 +57901,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 64 }, "RESPONSIVE": { "score": 1, @@ -57874,9 +57946,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -57933,7 +58005,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 704, + "duration": 666, "error": null, "responsive": { "document_width": { @@ -57980,7 +58052,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 704 + "value": 666 }, "RESPONSIVE": { "score": 1, @@ -58022,9 +58094,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-gladbeck.de/cms/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.151" ], @@ -58059,7 +58131,7 @@ "opengraph": null, "title": "Startseite - Grüne Gladbeck" }, - "duration": 257, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -58107,7 +58179,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 238 }, "RESPONSIVE": { "score": 0, @@ -58194,7 +58266,7 @@ ], "title": "Bündnis 90/Die Grünen Glashütten" }, - "duration": 428, + "duration": 404, "error": null, "responsive": { "document_width": { @@ -58243,7 +58315,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 404 }, "RESPONSIVE": { "score": 1, @@ -58283,9 +58355,9 @@ "resolved_hostname": "www.gruene-gleichen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-gleichen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -58327,7 +58399,7 @@ "opengraph": null, "title": "Gemeindeverband Gleichen: Home" }, - "duration": 219, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -58375,7 +58447,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -58448,7 +58520,7 @@ "opengraph": null, "title": "Start - Grüne Goch" }, - "duration": 194, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -58498,7 +58570,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 214 }, "RESPONSIVE": { "score": 0, @@ -58560,7 +58632,7 @@ "urlchecks": [ { "content": null, - "duration": 234, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -58576,7 +58648,7 @@ }, { "content": null, - "duration": 304, + "duration": 748, "error": null, "responsive": { "document_width": { @@ -58626,7 +58698,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 269 + "value": 510 }, "RESPONSIVE": { "score": 0, @@ -58688,7 +58760,7 @@ "urlchecks": [ { "content": null, - "duration": 222, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -58704,7 +58776,7 @@ }, { "content": null, - "duration": 291, + "duration": 303, "error": null, "responsive": { "document_width": { @@ -58754,7 +58826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 256 + "value": 264 }, "RESPONSIVE": { "score": 0, @@ -58798,9 +58870,9 @@ "resolved_hostname": "www.gruene-goerlitz.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-goerlitz.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -58848,7 +58920,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Görlitz" }, - "duration": 257, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -58896,7 +58968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 226 }, "RESPONSIVE": { "score": 0, @@ -58936,9 +59008,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -58980,7 +59052,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 188, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -59028,7 +59100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -59068,9 +59140,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59112,7 +59184,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 245, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -59160,7 +59232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -59200,9 +59272,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59244,7 +59316,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 200, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -59292,7 +59364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -59332,9 +59404,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59376,7 +59448,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 223, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -59424,7 +59496,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -59464,9 +59536,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59508,7 +59580,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 240, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -59556,7 +59628,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -59596,9 +59668,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59640,7 +59712,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 199, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -59688,7 +59760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -59728,9 +59800,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59772,7 +59844,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 209, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -59820,7 +59892,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -59860,9 +59932,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59904,7 +59976,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 236, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -59952,7 +60024,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -59992,9 +60064,9 @@ "resolved_hostname": "www.gruene-goslar.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goslar.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60036,7 +60108,7 @@ "opengraph": null, "title": "Kreisverband Goslar: Home" }, - "duration": 191, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -60084,7 +60156,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -60192,7 +60264,7 @@ "opengraph": null, "title": "B90/Grüne Gräfenberger Oberland" }, - "duration": 61, + "duration": 57, "error": null, "responsive": { "document_width": { @@ -60243,7 +60315,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -60284,9 +60356,10 @@ "resolved_hostname": "www.gruene-grafrath.de" } }, - "icons": [ - "79ded96df21306ec7044622d38902355.ico" - ], + "icons": { + "http://gruene-grafrath.de/favicon.ico": "79ded96df21306ec7044622d38902355.ico", + "http://www.gruene-grafrath.de/favicon.ico": "79ded96df21306ec7044622d38902355.ico" + }, "ipv4_addresses": [ "80.150.6.143" ], @@ -60331,7 +60404,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Grafrath/Kottgeisering" }, - "duration": 66, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -60354,7 +60427,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Grafrath/Kottgeisering" }, - "duration": 61, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -60404,7 +60477,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 66 }, "RESPONSIVE": { "score": 0, @@ -60444,9 +60517,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60488,7 +60561,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 224, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -60536,7 +60609,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -60576,9 +60649,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60620,7 +60693,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 181, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -60668,7 +60741,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -60708,9 +60781,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60752,7 +60825,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 242, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -60800,7 +60873,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 242 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -60954,9 +61027,9 @@ "resolved_hostname": "www.gruene-greven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-greven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60998,7 +61071,7 @@ "opengraph": null, "title": "GRÜNE GREVEN: Startseite" }, - "duration": 228, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -61046,7 +61119,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -61091,9 +61164,9 @@ "resolved_hostname": "www.gruene-griesheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://wordpress.gruene-griesheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.76" ], @@ -61110,7 +61183,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -61118,7 +61191,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -61151,7 +61224,7 @@ ], "title": "Bündnis 90/Die Grünen Griesheim" }, - "duration": 870, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -61184,7 +61257,7 @@ ], "title": "Bündnis 90/Die Grünen Griesheim" }, - "duration": 800, + "duration": 702, "error": null, "responsive": { "document_width": { @@ -61233,7 +61306,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 835 + "value": 704 }, "RESPONSIVE": { "score": 1, @@ -61318,7 +61391,7 @@ "opengraph": null, "title": "Buendnis 90 Die Grünen - Ortsverband Guxhagen" }, - "duration": 66, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -61341,7 +61414,7 @@ "opengraph": null, "title": "Buendnis 90 Die Grünen - Ortsverband Guxhagen" }, - "duration": 60, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -61392,7 +61465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 63 + "value": 64 }, "RESPONSIVE": { "score": 0, @@ -61436,9 +61509,9 @@ "resolved_hostname": "www.gruene-gv.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-gv.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.131.236" ], @@ -61497,7 +61570,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN | Grevenbroich" }, - "duration": 524, + "duration": 586, "error": null, "responsive": { "document_width": { @@ -61545,7 +61618,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 586 }, "RESPONSIVE": { "score": 1, @@ -61590,9 +61663,10 @@ "resolved_hostname": "www.gruene-hagen-cux.de" } }, - "icons": [ - "0ab85f7ffac1aa671cfb2f15116fbc23.ico" - ], + "icons": { + "http://gruene-hagen-cux.de/templates/gruene_02/favicon.ico": "0ab85f7ffac1aa671cfb2f15116fbc23.ico", + "http://www.gruene-hagen-cux.de/templates/gruene_02/favicon.ico": "0ab85f7ffac1aa671cfb2f15116fbc23.ico" + }, "ipv4_addresses": [ "217.160.233.227" ], @@ -61644,7 +61718,7 @@ "opengraph": null, "title": "Home" }, - "duration": 439, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -61671,7 +61745,7 @@ "opengraph": null, "title": "Home" }, - "duration": 275, + "duration": 272, "error": null, "responsive": { "document_width": { @@ -61720,7 +61794,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 276 }, "RESPONSIVE": { "score": 0, @@ -61808,7 +61882,7 @@ "opengraph": null, "title": "Grüne Hagen" }, - "duration": 72, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -61831,7 +61905,7 @@ "opengraph": null, "title": "Grüne Hagen" }, - "duration": 84, + "duration": 88, "error": null, "responsive": { "document_width": { @@ -61882,7 +61956,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 88 }, "RESPONSIVE": { "score": 1, @@ -61967,7 +62041,7 @@ "opengraph": null, "title": "Die Grünen - Hainburg" }, - "duration": 64, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -61990,7 +62064,7 @@ "opengraph": null, "title": "Die Grünen - Hainburg" }, - "duration": 71, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -62041,7 +62115,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 93 }, "RESPONSIVE": { "score": 0, @@ -62082,9 +62156,10 @@ "resolved_hostname": "www.gruene-haltern.de" } }, - "icons": [ - "a9b8fd90e34da5dc334d8c20c9d11c42.ico" - ], + "icons": { + "https://gruene-haltern.de/fileadmin/gruene.ico": "a9b8fd90e34da5dc334d8c20c9d11c42.ico", + "https://www.gruene-haltern.de/fileadmin/gruene.ico": "a9b8fd90e34da5dc334d8c20c9d11c42.ico" + }, "ipv4_addresses": [ "94.102.209.169" ], @@ -62123,7 +62198,7 @@ "opengraph": null, "title": "Grüne Haltern: Grüne Haltern: Aktuelles" }, - "duration": 728, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -62146,7 +62221,7 @@ "opengraph": null, "title": "Grüne Haltern: Grüne Haltern: Aktuelles" }, - "duration": 515, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -62195,7 +62270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 622 + "value": 374 }, "RESPONSIVE": { "score": 0, @@ -62240,9 +62315,10 @@ "resolved_hostname": "www.gruene-halver.de" } }, - "icons": [ - "0ecdac24b862d6cb40828fa64c969386.ico" - ], + "icons": { + "http://gruene-halver.de/templates/greenfield/favicon.ico": "0ecdac24b862d6cb40828fa64c969386.ico", + "http://www.gruene-halver.de/templates/greenfield/favicon.ico": "0ecdac24b862d6cb40828fa64c969386.ico" + }, "ipv4_addresses": [ "217.160.231.175" ], @@ -62291,7 +62367,7 @@ "opengraph": null, "title": "Die Grünen Halver - Startseite" }, - "duration": 470, + "duration": 413, "error": null, "responsive": { "document_width": { @@ -62318,7 +62394,7 @@ "opengraph": null, "title": "Die Grünen Halver - Startseite" }, - "duration": 436, + "duration": 501, "error": null, "responsive": { "document_width": { @@ -62367,7 +62443,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 453 + "value": 457 }, "RESPONSIVE": { "score": 0, @@ -62411,9 +62487,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62460,7 +62536,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 264, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -62508,7 +62584,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -62553,9 +62629,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62602,7 +62678,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 250, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -62650,7 +62726,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 247 }, "RESPONSIVE": { "score": 0, @@ -62695,9 +62771,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62744,7 +62820,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 244, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -62792,7 +62868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 265 }, "RESPONSIVE": { "score": 0, @@ -62836,9 +62912,9 @@ "resolved_hostname": "www.gruene-hamm.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-hamm.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.198.176.136" ], @@ -62890,7 +62966,7 @@ ], "title": "Kreisverband Hamm/Westf." }, - "duration": 524, + "duration": 565, "error": null, "responsive": { "document_width": { @@ -62937,7 +63013,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 565 }, "RESPONSIVE": { "score": 1, @@ -62980,9 +63056,9 @@ "resolved_hostname": "www.gruene-hamminkeln.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-hamminkeln.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "91.233.85.52" ], @@ -63030,7 +63106,7 @@ "opengraph": null, "title": "Startseite - Bündnis 90/Die Grünen Ortsverband Hamminkeln" }, - "duration": 585, + "duration": 802, "error": null, "responsive": { "document_width": { @@ -63078,7 +63154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 585 + "value": 802 }, "RESPONSIVE": { "score": 0, @@ -63119,9 +63195,10 @@ "resolved_hostname": "www.gruene-hannover.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hannover.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-hannover.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -63163,7 +63240,7 @@ "opengraph": null, "title": "Grüne Hannover | ." }, - "duration": 205, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -63186,7 +63263,7 @@ "opengraph": null, "title": "Grüne Hannover | ." }, - "duration": 217, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -63235,7 +63312,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -63279,9 +63356,9 @@ "resolved_hostname": "www.gruene-harburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-harburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.19" ], @@ -63308,7 +63385,7 @@ } ], "responsive": { - "min_width": 333, + "min_width": 510, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -63333,13 +63410,13 @@ ], "title": "Willkommen" }, - "duration": 770, + "duration": 829, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1291, "1920x1080": 1920, - "320x480": 333, + "320x480": 510, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -63380,12 +63457,12 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 829 }, "RESPONSIVE": { - "score": 1, + "score": 0, "type": "boolean", - "value": true + "value": false }, "SITE_REACHABLE": { "score": 1, @@ -63396,7 +63473,7 @@ "value": true } }, - "score": 9.5 + "score": 8.5 }, { "details": { @@ -63419,9 +63496,9 @@ "resolvable": false } }, - "icons": [ - "a167ee74a53751f5610fbb9467069b0a.ico" - ], + "icons": { + "http://www.gruene-hardt.de/fileadmin/images/favicon.ico": "a167ee74a53751f5610fbb9467069b0a.ico" + }, "ipv4_addresses": [ "87.118.72.18" ], @@ -63449,11 +63526,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 CMS 6.2", - "icon": "http://gruene-hardt.de/fileadmin/images/favicon.ico", + "icon": "http://www.gruene-hardt.de/fileadmin/images/favicon.ico", "opengraph": null, "title": "Grüne im Rhein-Neckar Kreis - Der Kreisverband Hardt" }, - "duration": 89, + "duration": 80, "error": null, "responsive": { "document_width": { @@ -63502,7 +63579,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 89 + "value": 80 }, "RESPONSIVE": { "score": 0, @@ -63543,9 +63620,9 @@ "resolved_hostname": "www.gruene-harpstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "80.67.16.8" ], @@ -63562,7 +63639,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -63570,7 +63647,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -63593,7 +63670,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: OV Harpstedt" }, - "duration": 213, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -63641,7 +63718,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 227 }, "RESPONSIVE": { "score": 1, @@ -63667,8 +63744,8 @@ ], "cms": null, "feeds": [ - "https://gruene-harsewinkel.de/news.php?session=3i1mjva4hcmd6gnct959jl8p64&rss=1", - "https://www.gruene-harsewinkel.de/news.php?session=iegbp06pscg0iedc3k65p7oat6&rss=1" + "https://gruene-harsewinkel.de/news.php?session=b6nhfe1qhh0olj6fau240kc895&rss=1", + "https://www.gruene-harsewinkel.de/news.php?session=64st9jju6ib2kro9drlu36l7k4&rss=1" ], "hostnames": { "gruene-harsewinkel.de": { @@ -63686,9 +63763,9 @@ "resolved_hostname": "www.gruene-harsewinkel.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "https://www.gruene-harsewinkel.de/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "31.47.250.66" ], @@ -63723,7 +63800,7 @@ "canonical_link": "http://gruene-harsewinkel.de/", "encoding": "utf-8", "feeds": [ - "https://gruene-harsewinkel.de/news.php?session=3i1mjva4hcmd6gnct959jl8p64&rss=1" + "https://gruene-harsewinkel.de/news.php?session=b6nhfe1qhh0olj6fau240kc895&rss=1" ], "generator": null, "icon": "https://www.gruene-harsewinkel.de/favicon.ico", @@ -63735,7 +63812,7 @@ ], "title": "Startseite – BÜNDNIS 90/DIE GRÜNEN Harsewinkel" }, - "duration": 215, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -63754,7 +63831,7 @@ "canonical_link": "http://www.gruene-harsewinkel.de/", "encoding": "utf-8", "feeds": [ - "https://www.gruene-harsewinkel.de/news.php?session=iegbp06pscg0iedc3k65p7oat6&rss=1" + "https://www.gruene-harsewinkel.de/news.php?session=64st9jju6ib2kro9drlu36l7k4&rss=1" ], "generator": null, "icon": "https://www.gruene-harsewinkel.de/favicon.ico", @@ -63766,7 +63843,7 @@ ], "title": "Startseite – BÜNDNIS 90/DIE GRÜNEN Harsewinkel" }, - "duration": 209, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -63814,7 +63891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 240 }, "RESPONSIVE": { "score": 0, @@ -63854,9 +63931,9 @@ "resolved_hostname": "www.gruene-harz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-harz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -63898,7 +63975,7 @@ "opengraph": null, "title": "Grüne im Landkreis Harz: Willkommen" }, - "duration": 258, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -63946,7 +64023,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 237 }, "RESPONSIVE": { "score": 1, @@ -63991,9 +64068,9 @@ "resolved_hostname": "www.gruene-hattingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-hattingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.9" ], @@ -64046,7 +64123,7 @@ ], "title": "Grüne in Hattingen" }, - "duration": 975, + "duration": 824, "error": null, "responsive": { "document_width": { @@ -64093,7 +64170,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 975 + "value": 824 }, "RESPONSIVE": { "score": 1, @@ -64134,9 +64211,10 @@ "resolved_hostname": "www.gruene-havixbeck.de" } }, - "icons": [ - "18f1edbd361b70444fd7c7559c1754a0.ico" - ], + "icons": { + "http://gruene-havixbeck.de/templates/glassberry/img/fav.ico": "18f1edbd361b70444fd7c7559c1754a0.ico", + "http://www.gruene-havixbeck.de/templates/glassberry/img/fav.ico": "18f1edbd361b70444fd7c7559c1754a0.ico" + }, "ipv4_addresses": [ "217.160.10.58" ], @@ -64181,7 +64259,7 @@ "opengraph": null, "title": "ZUKUNFT IST GRÜN - BÜNDNIS 90 / DIE GRÜNEN IN HAVIXBECK & HOHENHOLTE - WILLKOMMEN" }, - "duration": 136, + "duration": 141, "error": null, "responsive": { "document_width": { @@ -64204,7 +64282,7 @@ "opengraph": null, "title": "ZUKUNFT IST GRÜN - BÜNDNIS 90 / DIE GRÜNEN IN HAVIXBECK & HOHENHOLTE - WILLKOMMEN" }, - "duration": 165, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -64254,7 +64332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -64294,9 +64372,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-heddesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-heddesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -64328,7 +64407,7 @@ "opengraph": null, "title": "Grüne Heddesheim: Start" }, - "duration": 612, + "duration": 553, "error": null, "responsive": { "document_width": { @@ -64351,7 +64430,7 @@ "opengraph": null, "title": "Grüne Heddesheim: Start" }, - "duration": 595, + "duration": 778, "error": null, "responsive": { "document_width": { @@ -64400,7 +64479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 666 }, "RESPONSIVE": { "score": 1, @@ -64441,9 +64520,9 @@ "resolved_hostname": "www.gruene-heidekreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-heidekreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -64485,7 +64564,7 @@ "opengraph": null, "title": "Kreisverband Heidekreis: Home" }, - "duration": 197, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -64533,7 +64612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -64577,9 +64656,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "https://www.gruene-heidelberg.de/wp-content/uploads/2017/08/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "188.40.159.225" ], @@ -64616,7 +64695,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Heidelberg" }, - "duration": 160, + "duration": 652, "error": null, "responsive": { "document_width": { @@ -64663,7 +64742,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 652 }, "RESPONSIVE": { "score": 1, @@ -64709,9 +64788,9 @@ "resolved_hostname": "www.gruene-heidenheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-heidenheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.175.14.19" ], @@ -64764,7 +64843,7 @@ ], "title": "Grüne Heidenheim" }, - "duration": 207, + "duration": 190, "error": null, "responsive": { "document_width": { @@ -64811,7 +64890,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 190 }, "RESPONSIVE": { "score": 1, @@ -64851,9 +64930,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-heiligenhaus.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.52" ], @@ -64896,7 +64975,7 @@ ], "title": "Grüne Heiligenhaus" }, - "duration": 605, + "duration": 564, "error": null, "responsive": { "document_width": { @@ -64943,7 +65022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 605 + "value": 564 }, "RESPONSIVE": { "score": 1, @@ -64984,9 +65063,9 @@ "resolved_hostname": "www.gruene-helmstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-helmstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -65028,7 +65107,7 @@ "opengraph": null, "title": "Grüne Helmstedt: Home" }, - "duration": 254, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -65076,7 +65155,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 254 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -65157,7 +65236,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 66, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -65180,7 +65259,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 60, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -65203,7 +65282,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 152, + "duration": 171, "error": null, "responsive": { "document_width": { @@ -65226,7 +65305,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 152, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -65276,7 +65355,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 108 + "value": 114 }, "RESPONSIVE": { "score": 0, @@ -65317,9 +65396,10 @@ "resolved_hostname": "www.gruene-herne.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-herne.de/img/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "http://www.gruene-herne.de/img/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -65367,7 +65447,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Herne" }, - "duration": 821, + "duration": 958, "error": null, "responsive": { "document_width": { @@ -65390,7 +65470,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Herne" }, - "duration": 718, + "duration": 735, "error": null, "responsive": { "document_width": { @@ -65440,7 +65520,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 846 }, "RESPONSIVE": { "score": 0, @@ -65483,9 +65563,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-herten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -65527,7 +65607,7 @@ ], "title": "Grüne Herten" }, - "duration": 627, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -65574,7 +65654,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 627 + "value": 340 }, "RESPONSIVE": { "score": 1, @@ -65619,9 +65699,9 @@ "resolved_hostname": "www.gruene-herzogenaurach.de" } }, - "icons": [ - "d1ef0e1179cfe888bbdc44a98dcd010f.png" - ], + "icons": { + "http://www.gruene-herzogenaurach.de/wp-content/uploads/2016/04/logo_gruene.png": "d1ef0e1179cfe888bbdc44a98dcd010f.png" + }, "ipv4_addresses": [ "37.17.224.22" ], @@ -65673,7 +65753,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Herzogenaurach" }, - "duration": 469, + "duration": 493, "error": null, "responsive": { "document_width": { @@ -65721,7 +65801,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -65766,9 +65846,9 @@ "resolved_hostname": "www.gruene-herzogenrath.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/herzogenrath/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -65785,7 +65865,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -65793,7 +65873,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -65827,7 +65907,7 @@ ], "title": "Grüne Herzogenrath" }, - "duration": 526, + "duration": 520, "error": null, "responsive": { "document_width": { @@ -65861,7 +65941,7 @@ ], "title": "Grüne Herzogenrath" }, - "duration": 508, + "duration": 516, "error": null, "responsive": { "document_width": { @@ -65910,7 +65990,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 518 }, "RESPONSIVE": { "score": 1, @@ -65957,9 +66037,9 @@ "resolved_hostname": "www.gruene-hessen.de" } }, - "icons": [ - "763a07a20f4c0be782bfc18673b39f04.ico" - ], + "icons": { + "http://www.gruene-hessen.de/favicon.ico": "763a07a20f4c0be782bfc18673b39f04.ico" + }, "ipv4_addresses": [ "217.160.0.237" ], @@ -66016,7 +66096,7 @@ ], "title": "Bündnis 90/Die Grünen in Hessen" }, - "duration": 697, + "duration": 640, "error": null, "responsive": { "document_width": { @@ -66063,7 +66143,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 697 + "value": 640 }, "RESPONSIVE": { "score": 1, @@ -66107,9 +66187,9 @@ "resolved_hostname": "www.gruene-heuchelheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-heuchelheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.240.85" ], @@ -66169,7 +66249,7 @@ ], "title": "Grüne Heuchelheim-Kinzenbach - Wir setzen uns seit mehr als 25 Jahren für Ökologie und Nachhaltigkeit ein.Grüne Heuchelheim-Kinzenbach" }, - "duration": 198, + "duration": 423, "error": null, "responsive": { "document_width": { @@ -66217,7 +66297,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 423 }, "RESPONSIVE": { "score": 1, @@ -66261,9 +66341,9 @@ "resolved_hostname": "www.gruene-hilden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hilden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.2" ], @@ -66325,7 +66405,7 @@ ], "title": "Die GRÜNEN Hilden" }, - "duration": 148, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -66373,7 +66453,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -66413,9 +66493,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66457,7 +66537,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 235, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -66505,7 +66585,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -66545,9 +66625,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66589,7 +66669,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 198, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -66637,7 +66717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -66677,9 +66757,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66721,7 +66801,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 227, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -66769,7 +66849,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -66810,9 +66890,9 @@ "resolved_hostname": "www.gruene-hilter.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-hilter.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -66860,7 +66940,7 @@ ], "title": "Grüne Ortsverband Hilter ::\tWir machen das klar." }, - "duration": 400, + "duration": 403, "error": null, "responsive": { "document_width": { @@ -66886,7 +66966,7 @@ ], "title": "Grüne Ortsverband Hilter ::\tWir machen das klar." }, - "duration": 442, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -66936,7 +67016,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 421 + "value": 432 }, "RESPONSIVE": { "score": 0, @@ -66976,9 +67056,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-hirschberg.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-hirschberg.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -67010,7 +67091,7 @@ "opengraph": null, "title": "Grüne Liste Hirschberg: HOME" }, - "duration": 530, + "duration": 576, "error": null, "responsive": { "document_width": { @@ -67033,7 +67114,7 @@ "opengraph": null, "title": "Grüne Liste Hirschberg: HOME" }, - "duration": 834, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -67082,7 +67163,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 682 + "value": 369 }, "RESPONSIVE": { "score": 1, @@ -67123,9 +67204,9 @@ "resolved_hostname": "www.gruene-hoerstel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoerstel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67167,7 +67248,7 @@ "opengraph": null, "title": "Ortsverband Hörstel: Online-Plattform „Hier hilft nur Grün“" }, - "duration": 211, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -67215,7 +67296,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 172 }, "RESPONSIVE": { "score": 1, @@ -67255,9 +67336,9 @@ "resolved_hostname": "www.gruene-hohenlohe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hohenlohe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67299,7 +67380,7 @@ "opengraph": null, "title": "GRÜNE Hohenlohe: Startseite" }, - "duration": 201, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -67347,7 +67428,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -67387,9 +67468,9 @@ "resolved_hostname": "www.gruene-holzminden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-holzminden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67416,7 +67497,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 324, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -67431,13 +67512,13 @@ "opengraph": null, "title": "Kreisverband Holzminden: Home" }, - "duration": 225, + "duration": 210, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 324, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -67479,7 +67560,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -67546,7 +67627,7 @@ "opengraph": null, "title": "Baustelle die Grünen in Holzwickede" }, - "duration": 139, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -67595,7 +67676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 126 }, "RESPONSIVE": { "score": 0, @@ -67635,9 +67716,9 @@ "resolvable": false } }, - "icons": [ - "1f615d5bf91b5eb2187c8d85fb801c9a.ico" - ], + "icons": { + "http://gruene-homberg.de/favicon.ico": "1f615d5bf91b5eb2187c8d85fb801c9a.ico" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -67669,7 +67750,7 @@ "opengraph": null, "title": "Bündnis 90/DIE GRÜNEN in Homberg (Efze)" }, - "duration": 81, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -67718,7 +67799,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 81 + "value": 75 }, "RESPONSIVE": { "score": 0, @@ -67835,9 +67916,10 @@ "resolved_hostname": "www.gruene-horstmar.de" } }, - "icons": [ - "0dc13b50e03ca27f58f87b00671a1e68.ico" - ], + "icons": { + "http://gruene-horstmar.de/templates/GrueneHorstmar/images/favicon1.ico": "0dc13b50e03ca27f58f87b00671a1e68.ico", + "http://www.gruene-horstmar.de/templates/GrueneHorstmar/images/favicon1.ico": "0dc13b50e03ca27f58f87b00671a1e68.ico" + }, "ipv4_addresses": [ "85.13.147.36" ], @@ -67886,7 +67968,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Horstmar" }, - "duration": 198, + "duration": 335, "error": null, "responsive": { "document_width": { @@ -67913,7 +67995,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Horstmar" }, - "duration": 790, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -67962,7 +68044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 494 + "value": 462 }, "RESPONSIVE": { "score": 0, @@ -68002,9 +68084,9 @@ "resolved_hostname": "www.gruene-hoya.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hoya.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68046,7 +68128,7 @@ "opengraph": null, "title": "Grüne Hoya: Home" }, - "duration": 194, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -68094,7 +68176,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 198 }, "RESPONSIVE": { "score": 0, @@ -68139,9 +68221,10 @@ "resolved_hostname": "www.gruene-hs.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://gruene-hs.de/templates/lessallrounder/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "http://www.gruene-hs.de/templates/lessallrounder/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "217.160.233.142" ], @@ -68193,7 +68276,7 @@ "opengraph": null, "title": "Home" }, - "duration": 326, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -68220,7 +68303,7 @@ "opengraph": null, "title": "Home" }, - "duration": 76, + "duration": 268, "error": null, "responsive": { "document_width": { @@ -68269,7 +68352,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -68313,9 +68396,9 @@ "resolved_hostname": "www.gruene-hsk.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hsk.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.13" ], @@ -68332,7 +68415,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -68340,7 +68423,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -68374,7 +68457,7 @@ ], "title": "grüne Politik im Hochsauerlandkreis › Grüne Hochsauerlandkreis" }, - "duration": 773, + "duration": 703, "error": null, "responsive": { "document_width": { @@ -68422,7 +68505,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 773 + "value": 703 }, "RESPONSIVE": { "score": 0, @@ -68515,7 +68598,7 @@ "opengraph": null, "title": "Die Grünen – Ortsverband Hückelhoven" }, - "duration": 189, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -68564,7 +68647,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 192 }, "RESPONSIVE": { "score": 0, @@ -68604,9 +68687,9 @@ "resolved_hostname": "www.gruene-huellhorst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-huellhorst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68648,7 +68731,7 @@ "opengraph": null, "title": "Grüner Ortsverband Hüllhorst: Aktuelles" }, - "duration": 205, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -68696,7 +68779,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -68740,9 +68823,9 @@ "resolved_hostname": "www.gruene-huenxe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-huenxe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.233.85.52" ], @@ -68800,7 +68883,7 @@ ], "title": "DIE GRÜNEN IN HÜNXE" }, - "duration": 441, + "duration": 597, "error": null, "responsive": { "document_width": { @@ -68848,7 +68931,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 441 + "value": 597 }, "RESPONSIVE": { "score": 1, @@ -68888,9 +68971,9 @@ "resolved_hostname": "www.gruene-huerth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-huerth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68932,7 +69015,7 @@ "opengraph": null, "title": "Die GRÜNEN HÜRTH: Startseite" }, - "duration": 200, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -68980,7 +69063,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -69020,9 +69103,9 @@ "resolved_hostname": "www.gruene-ibbenbueren.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ibbenbueren.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -69064,7 +69147,7 @@ "opengraph": null, "title": "Ortsverband Ibbenbüren: Startseite" }, - "duration": 202, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -69112,7 +69195,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -69197,7 +69280,7 @@ "opengraph": null, "title": "Grüne Igensdorf" }, - "duration": 105, + "duration": 110, "error": null, "responsive": { "document_width": { @@ -69220,7 +69303,7 @@ "opengraph": null, "title": "Grüne Igensdorf" }, - "duration": 100, + "duration": 106, "error": null, "responsive": { "document_width": { @@ -69271,7 +69354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 102 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -69311,9 +69394,9 @@ "resolved_hostname": "www.gruene-ilmkreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ilmkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -69355,7 +69438,7 @@ "opengraph": null, "title": "Kreisverband Ilmkreis: Home" }, - "duration": 171, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -69403,7 +69486,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -69447,9 +69530,9 @@ "resolved_hostname": "www.gruene-in-halle.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-in-halle.de/inhalte/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.112" ], @@ -69507,7 +69590,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 980, + "duration": 33, "error": null, "responsive": { "document_width": { @@ -69553,9 +69636,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 980 + "value": 33 }, "RESPONSIVE": { "score": 1, @@ -69571,7 +69654,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -69599,9 +69682,9 @@ "resolved_hostname": "www.gruene-jesteburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-jesteburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "83.138.86.177" ], @@ -69659,7 +69742,7 @@ ], "title": "Grüner Ortsverband Samtgemeinde Jesteburg" }, - "duration": 430, + "duration": 417, "error": null, "responsive": { "document_width": { @@ -69707,7 +69790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 417 }, "RESPONSIVE": { "score": 1, @@ -69748,9 +69831,9 @@ "resolved_hostname": "www.gruene-juechen.de" } }, - "icons": [ - "1b9ca126dff5ed42e5ad7e572c0cd2c3.ico" - ], + "icons": { + "http://www.gruene-juechen.de/images/favicon.ico": "1b9ca126dff5ed42e5ad7e572c0cd2c3.ico" + }, "ipv4_addresses": [ "217.160.223.185" ], @@ -69795,7 +69878,7 @@ "opengraph": null, "title": "Wilkommen bei den Grünen in Jüchen" }, - "duration": 127, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -69818,7 +69901,7 @@ "opengraph": null, "title": "Wilkommen bei den Grünen in Jüchen" }, - "duration": 127, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -69868,7 +69951,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 127 + "value": 141 }, "RESPONSIVE": { "score": 0, @@ -69912,9 +69995,9 @@ "resolved_hostname": "www.gruene-kaarst.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenekaarst.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.94.254.77" ], @@ -69973,7 +70056,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Kaarst" }, - "duration": 126, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -70021,7 +70104,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 734 }, "RESPONSIVE": { "score": 1, @@ -70061,9 +70144,9 @@ "resolved_hostname": "www.gruene-kamp-lintfort.de" } }, - "icons": [ - "ca2bb9889f5870b0b31006f9f09a23df.ico" - ], + "icons": { + "https://cdn.website-start.de/favicon.ico": "ca2bb9889f5870b0b31006f9f09a23df.ico" + }, "ipv4_addresses": [ "217.160.0.171" ], @@ -70108,7 +70191,7 @@ ], "title": "Grüne Kamp-Lintfort - STARTSEITE" }, - "duration": 309, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -70156,7 +70239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 296 }, "RESPONSIVE": { "score": 0, @@ -70199,9 +70282,9 @@ "resolved_hostname": "www.gruene-karlsruhe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenekarlsruhe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.72" ], @@ -70260,7 +70343,7 @@ ], "title": "Grüne KarlsruheGrüne Karlsruhe" }, - "duration": 792, + "duration": 840, "error": null, "responsive": { "document_width": { @@ -70307,7 +70390,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 792 + "value": 840 }, "RESPONSIVE": { "score": 0, @@ -70385,7 +70468,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -70452,7 +70535,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 61 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -70492,9 +70575,9 @@ "resolved_hostname": "www.gruene-kempen.de" } }, - "icons": [ - "d4f23c6cab0cbf1587305c18d9551a83.png" - ], + "icons": { + "https://www.gruene-kempen.de/assets/images/favicon-128x128.png": "d4f23c6cab0cbf1587305c18d9551a83.png" + }, "ipv4_addresses": [ "94.130.133.62" ], @@ -70536,7 +70619,7 @@ "opengraph": null, "title": "Bündnis 90 - Die Grünen Ortverband Kempen - aktuelle Lokalpolitik aus Kempen, Kreis Viersen und NRW Nordrhein Westfalen" }, - "duration": 135, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -70584,7 +70667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 135 + "value": 168 }, "RESPONSIVE": { "score": 1, @@ -70628,9 +70711,9 @@ "resolved_hostname": "www.gruene-kerpen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenekerpen.de/wp-content/themes/Urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.62.223" ], @@ -70688,7 +70771,7 @@ ], "title": "Stadtverband Kerpen" }, - "duration": 487, + "duration": 489, "error": null, "responsive": { "document_width": { @@ -70735,7 +70818,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 487 + "value": 489 }, "RESPONSIVE": { "score": 1, @@ -70778,9 +70861,9 @@ "resolved_hostname": "www.gruene-kiel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kiel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -70825,7 +70908,7 @@ "opengraph": null, "title": "Kieler Grüne: Home" }, - "duration": 195, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -70872,7 +70955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -70912,9 +70995,9 @@ "resolved_hostname": "www.gruene-kirchheim-teck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kirchheim-teck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -70956,7 +71039,7 @@ "opengraph": null, "title": "GRÜNE Kirchheim-Teck: Home/ Aktuelles" }, - "duration": 201, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -71004,7 +71087,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -71089,7 +71172,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Ortsverband Kirkel" }, - "duration": 84, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -71112,7 +71195,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Ortsverband Kirkel" }, - "duration": 63, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -71163,7 +71246,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 74 + "value": 68 }, "RESPONSIVE": { "score": 0, @@ -71208,9 +71291,9 @@ "resolved_hostname": "www.gruene-koenigswinter.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-koenigswinter.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.53" ], @@ -71269,7 +71352,7 @@ ], "title": "Grüne Königswinter" }, - "duration": 315, + "duration": 722, "error": null, "responsive": { "document_width": { @@ -71317,7 +71400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 315 + "value": 722 }, "RESPONSIVE": { "score": 1, @@ -71387,7 +71470,7 @@ "opengraph": null, "title": null }, - "duration": 75, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -71437,7 +71520,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 75 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -71483,9 +71566,10 @@ "resolved_hostname": "www.gruene-kraichtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-kraichtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-kraichtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.126" ], @@ -71538,7 +71622,7 @@ ], "title": "Grüne Kraichtal" }, - "duration": 866, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -71572,7 +71656,7 @@ ], "title": "Grüne Kraichtal" }, - "duration": 510, + "duration": 886, "error": null, "responsive": { "document_width": { @@ -71620,7 +71704,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 688 + "value": 622 }, "RESPONSIVE": { "score": 1, @@ -71659,9 +71743,9 @@ "resolvable": false } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://gruene-krefeld.de/fileadmin/templates/main/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "81.169.145.158" ], @@ -71693,7 +71777,7 @@ "opengraph": null, "title": "Grüne Krefeld: Start" }, - "duration": 177, + "duration": 123, "error": null, "responsive": { "document_width": { @@ -71742,7 +71826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 177 + "value": 123 }, "RESPONSIVE": { "score": 0, @@ -71783,9 +71867,9 @@ "resolved_hostname": "www.gruene-kreis-harburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreis-harburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -71827,7 +71911,7 @@ "opengraph": null, "title": "Landkreis Harburg: Herzlich willkommen im Kreisverband Harburg-Land" }, - "duration": 200, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -71875,7 +71959,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -71915,9 +71999,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -71959,7 +72043,7 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 203, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -72007,7 +72091,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -72052,9 +72136,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -72108,7 +72192,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 413, + "duration": 424, "error": null, "responsive": { "document_width": { @@ -72155,7 +72239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 413 + "value": 424 }, "RESPONSIVE": { "score": 1, @@ -72199,9 +72283,9 @@ "resolved_hostname": "www.gruene-kreis-mettmann.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-mettmann.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.228" ], @@ -72253,11 +72337,11 @@ ], "title": "Die GRÜNEN im Kreis Mettmann" }, - "duration": 583, + "duration": 713, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1041, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -72300,7 +72384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 583 + "value": 713 }, "RESPONSIVE": { "score": 1, @@ -72340,9 +72424,9 @@ "resolved_hostname": "www.gruene-kreis-steinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreis-steinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72384,7 +72468,7 @@ "opengraph": null, "title": "Kreisverband Steinfurt: News" }, - "duration": 440, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -72432,7 +72516,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -72476,6 +72560,7 @@ "resolved_hostname": "www.gruene-kreis-unna.de" } }, + "icons": {}, "ipv4_addresses": [ "192.162.85.187" ], @@ -72537,7 +72622,7 @@ ], "title": "B90 / Die Grünen Kreisverband Unna" }, - "duration": 370, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -72570,9 +72655,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -72586,7 +72670,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 370 + "value": 312 }, "RESPONSIVE": { "score": 1, @@ -72602,7 +72686,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -72743,9 +72827,9 @@ "resolved_hostname": "www.gruene-kreis-wesel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-wesel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72877,9 +72961,9 @@ "resolved_hostname": "www.gruene-kreisrheinberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72921,7 +73005,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Berg: Home" }, - "duration": 201, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -72969,7 +73053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -73009,9 +73093,9 @@ "resolved_hostname": "www.gruene-kuerten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73053,7 +73137,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Berg: Die Grünen - Kürten" }, - "duration": 211, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -73101,7 +73185,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -73141,9 +73225,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73185,7 +73269,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 204, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -73233,7 +73317,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -73273,9 +73357,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73317,7 +73401,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 200, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -73365,7 +73449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -73405,9 +73489,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73449,7 +73533,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 196, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -73497,7 +73581,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -73537,9 +73621,9 @@ "resolved_hostname": "www.gruene-kv-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73581,7 +73665,7 @@ "opengraph": null, "title": "Kreisverband Stade: Aktuelle Informationen aus dem Kreisverband Stade - Bündnis90/Die Grünen" }, - "duration": 202, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -73629,7 +73713,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -73673,9 +73757,7 @@ "resolved_hostname": "www.gruene-kvwuppertal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "217.160.0.32" ], @@ -73728,7 +73810,7 @@ ], "title": "Willkommen - KV WuppertalKV Wuppertal" }, - "duration": 771, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -73773,9 +73855,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 771 + "value": 60 }, "RESPONSIVE": { "score": 1, @@ -73791,7 +73873,7 @@ "value": true } }, - "score": 9.5 + "score": 10.0 }, { "details": { @@ -73815,9 +73897,9 @@ "resolved_hostname": "www.gruene-kyffhaeuserkreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kyffhaeuserkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73859,7 +73941,7 @@ "opengraph": null, "title": "GRÜNE Kyffhäuserkreis #gruenekyf: Startseite" }, - "duration": 182, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -73907,7 +73989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 182 + "value": 187 }, "RESPONSIVE": { "score": 1, @@ -73947,9 +74029,9 @@ "resolved_hostname": "www.gruene-ladbergen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ladbergen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73991,7 +74073,7 @@ "opengraph": null, "title": "Ortsverband Ladbergen: News" }, - "duration": 199, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -74039,7 +74121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -74080,9 +74162,9 @@ "resolved_hostname": "www.gruene-lage.de" } }, - "icons": [ - "042f0bf5868511974bfd22dcf2278fd8.ico" - ], + "icons": { + "http://gruene-lage.de/favicon.ico": "042f0bf5868511974bfd22dcf2278fd8.ico" + }, "ipv4_addresses": [ "185.21.102.75" ], @@ -74127,7 +74209,7 @@ "opengraph": null, "title": "Die Grünen Lage" }, - "duration": 63, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -74150,7 +74232,7 @@ "opengraph": null, "title": "Die Grünen Lage" }, - "duration": 71, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -74200,7 +74282,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -74244,9 +74326,9 @@ "resolved_hostname": "www.gruene-lahntal.de" } }, - "icons": [ - "2e6ca33657d64802e2814814fe81a7b4.png" - ], + "icons": { + "http://www.gruene-lahntal.de/wp-content/themes/urwahl3000/favicon.png": "2e6ca33657d64802e2814814fe81a7b4.png" + }, "ipv4_addresses": [ "80.237.132.43" ], @@ -74263,7 +74345,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -74271,7 +74353,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -74304,7 +74386,7 @@ ], "title": "" }, - "duration": 874, + "duration": 797, "error": null, "responsive": { "document_width": { @@ -74352,7 +74434,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 874 + "value": 797 }, "RESPONSIVE": { "score": 1, @@ -74395,9 +74477,9 @@ "resolved_hostname": "www.gruene-lambsheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lambsheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -74442,7 +74524,7 @@ "opengraph": null, "title": "Ortsverband Lambsheim: Startseite" }, - "duration": 210, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -74489,7 +74571,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -74529,9 +74611,9 @@ "resolved_hostname": "www.gruene-landau.de" } }, - "icons": [ - "df2da2390ae9bfe9fd19e654cfb0544d.ico" - ], + "icons": { + "https://www.gruene-landau.de/favicon.ico": "df2da2390ae9bfe9fd19e654cfb0544d.ico" + }, "ipv4_addresses": [ "37.202.7.173" ], @@ -74573,7 +74655,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Startseite" }, - "duration": 756, + "duration": 627, "error": null, "responsive": { "document_width": { @@ -74621,7 +74703,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 756 + "value": 627 }, "RESPONSIVE": { "score": 1, @@ -74665,9 +74747,9 @@ "resolved_hostname": "www.gruene-landkreis-kassel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-landkreis-kassel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.8" ], @@ -74726,7 +74808,7 @@ ], "title": "gruene-landkreis-kassel.de" }, - "duration": 601, + "duration": 493, "error": null, "responsive": { "document_width": { @@ -74774,7 +74856,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 601 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -74817,9 +74899,9 @@ "resolved_hostname": "www.gruene-landkreis-leipzig.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-landkreis-leipzig.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -74867,7 +74949,7 @@ "opengraph": null, "title": "Startseite - Kreisverband Landkreis Leipzig" }, - "duration": 267, + "duration": 269, "error": null, "responsive": { "document_width": { @@ -74915,7 +74997,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 267 + "value": 269 }, "RESPONSIVE": { "score": 0, @@ -74955,9 +75037,9 @@ "resolved_hostname": "www.gruene-landkreis-rostock.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-landkreis-rostock.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -74999,7 +75081,7 @@ "opengraph": null, "title": "Landkreis Rostock: Startseite" }, - "duration": 219, + "duration": 294, "error": null, "responsive": { "document_width": { @@ -75047,7 +75129,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 294 }, "RESPONSIVE": { "score": 1, @@ -75088,9 +75170,10 @@ "resolved_hostname": "www.gruene-landsberg.de" } }, - "icons": [ - "b2efc9598cd118ce6d8afc88734c05f5.ico" - ], + "icons": { + "http://gruene-landsberg.de/favicon.ico": "b2efc9598cd118ce6d8afc88734c05f5.ico", + "http://www.gruene-landsberg.de/favicon.ico": "b2efc9598cd118ce6d8afc88734c05f5.ico" + }, "ipv4_addresses": [ "80.237.132.89" ], @@ -75107,7 +75190,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75115,7 +75198,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75135,7 +75218,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Landsberg am Lech" }, - "duration": 274, + "duration": 457, "error": null, "responsive": { "document_width": { @@ -75158,7 +75241,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Landsberg am Lech" }, - "duration": 341, + "duration": 687, "error": null, "responsive": { "document_width": { @@ -75208,7 +75291,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 572 }, "RESPONSIVE": { "score": 0, @@ -75252,9 +75335,9 @@ "resolved_hostname": "www.gruene-langenfeld.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-langenfeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.198" ], @@ -75307,7 +75390,7 @@ ], "title": "StartseiteGRÜNE LANGENFELD" }, - "duration": 591, + "duration": 165, "error": null, "responsive": { "document_width": { @@ -75354,7 +75437,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 591 + "value": 165 }, "RESPONSIVE": { "score": 1, @@ -75394,9 +75477,9 @@ "resolved_hostname": "www.gruene-langenhagen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-langenhagen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75438,7 +75521,7 @@ "opengraph": null, "title": "Grüne Langenhagen: Home" }, - "duration": 204, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -75486,7 +75569,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -75556,7 +75639,7 @@ "opengraph": null, "title": "http://gruene-langenzenn.de/" }, - "duration": 53, + "duration": 97, "error": null, "responsive": { "document_width": { @@ -75606,7 +75689,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 53 + "value": 97 }, "RESPONSIVE": { "score": 0, @@ -75647,9 +75730,9 @@ "resolved_hostname": "www.gruene-lehrte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lehrte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75691,7 +75774,7 @@ "opengraph": null, "title": "Grüne Lehrte: Home" }, - "duration": 200, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -75739,7 +75822,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -75779,9 +75862,9 @@ "resolved_hostname": "www.gruene-lengerich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lengerich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75823,7 +75906,7 @@ "opengraph": null, "title": "Grüne Lengerich: Startseite" }, - "duration": 191, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -75871,7 +75954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -75915,9 +75998,9 @@ "resolved_hostname": "www.gruene-li-rhm.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-li-rhm.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.213.78" ], @@ -75934,7 +76017,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75942,7 +76025,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75977,7 +76060,7 @@ ], "title": "Aktuelles > Gruene Lichtenau/Rheinmünster" }, - "duration": 440, + "duration": 496, "error": null, "responsive": { "document_width": { @@ -76025,7 +76108,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 496 }, "RESPONSIVE": { "score": 0, @@ -76110,7 +76193,7 @@ "opengraph": null, "title": "Willkommen :: Bündnis 90 / Die Grünen Linnich" }, - "duration": 71, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -76133,7 +76216,7 @@ "opengraph": null, "title": "Willkommen :: Bündnis 90 / Die Grünen Linnich" }, - "duration": 70, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -76184,7 +76267,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 70 + "value": 71 }, "RESPONSIVE": { "score": 0, @@ -76228,9 +76311,9 @@ "resolved_hostname": "www.gruene-lippstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.die-gruenen-lippstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.187" ], @@ -76290,7 +76373,7 @@ ], "title": "Ortsverband Lippstadt" }, - "duration": 167, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -76337,7 +76420,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 460 }, "RESPONSIVE": { "score": 1, @@ -76378,9 +76461,10 @@ "resolved_hostname": "www.gruene-liste-riedstadt.de" } }, - "icons": [ - "fd00dcf5b9a53b1e7d49d11b71e2a634.ico" - ], + "icons": { + "http://www.gruene-liste-riedstadt.de/favicon.ico": "fd00dcf5b9a53b1e7d49d11b71e2a634.ico", + "https://www.gruene-liste-riedstadt.de/favicon.ico": "fd00dcf5b9a53b1e7d49d11b71e2a634.ico" + }, "ipv4_addresses": [ "5.11.55.242" ], @@ -76419,7 +76503,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Riedstadt" }, - "duration": 296, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -76442,7 +76526,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Riedstadt" }, - "duration": 350, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -76491,7 +76575,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 323 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -76538,9 +76622,10 @@ "resolved_hostname": "www.gruene-loerrach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-loerrach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-loerrach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.57" ], @@ -76593,7 +76678,7 @@ ], "title": "Bündnis 90 / DIE GRÜNEN Lörrach" }, - "duration": 476, + "duration": 489, "error": null, "responsive": { "document_width": { @@ -76627,7 +76712,7 @@ ], "title": "Bündnis 90 / DIE GRÜNEN Lörrach" }, - "duration": 546, + "duration": 612, "error": null, "responsive": { "document_width": { @@ -76675,7 +76760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 511 + "value": 550 }, "RESPONSIVE": { "score": 1, @@ -76722,9 +76807,10 @@ "resolved_hostname": "www.gruene-lohmar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-lohmar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-lohmar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.40.2.14" ], @@ -76777,7 +76863,7 @@ ], "title": "GRÜNE Lohmar" }, - "duration": 466, + "duration": 398, "error": null, "responsive": { "document_width": { @@ -76811,7 +76897,7 @@ ], "title": "GRÜNE Lohmar" }, - "duration": 511, + "duration": 500, "error": null, "responsive": { "document_width": { @@ -76859,7 +76945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 488 + "value": 449 }, "RESPONSIVE": { "score": 1, @@ -76958,7 +77044,7 @@ ], "title": "Ihr seid grün - wir sind grüner! - Bündnis 90 / die Grünen - LotteBündnis 90 / die Grünen – Lotte | Ihr seid grün – wir sind grüner!" }, - "duration": 294, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -77007,7 +77093,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 231 }, "RESPONSIVE": { "score": 0, @@ -77051,9 +77137,9 @@ "resolved_hostname": "www.gruene-loxstedt-schiffdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-loxstedt-schiffdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.40.85.68" ], @@ -77111,7 +77197,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 372, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -77159,7 +77245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 363 }, "RESPONSIVE": { "score": 1, @@ -77203,9 +77289,9 @@ "resolved_hostname": "www.gruene-lsa.de" } }, - "icons": [ - "71552f9c7124091304e29d797a89192d.png" - ], + "icons": { + "https://www.gruene-lsa.de/wordpress/wp-content/uploads/2016/11/cropped-GRÜNE-Profilbild-klein-300x300.png": "71552f9c7124091304e29d797a89192d.png" + }, "ipv4_addresses": [ "134.119.94.142" ], @@ -77256,7 +77342,7 @@ ], "title": "GRÜNE LSA – Zukunft ist, was wir draus machen." }, - "duration": 926, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -77303,7 +77389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 926 + "value": 878 }, "RESPONSIVE": { "score": 1, @@ -77346,9 +77432,9 @@ "resolved_hostname": "www.gruene-lu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77393,7 +77479,7 @@ "opengraph": null, "title": "B90/GRÜNE Ludwigshafen: Home" }, - "duration": 187, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -77440,7 +77526,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -77480,9 +77566,9 @@ "resolved_hostname": "www.gruene-ludwigslust-parchim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ludwigslust-parchim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77524,7 +77610,7 @@ "opengraph": null, "title": "Grüne Ludwigslust-Parchim: Startseite" }, - "duration": 206, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -77572,7 +77658,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -77612,9 +77698,9 @@ "resolved_hostname": "www.gruene-luebbecke.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luebbecke.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77656,7 +77742,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lübbecke: Home" }, - "duration": 227, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -77704,7 +77790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -77744,9 +77830,9 @@ "resolved_hostname": "www.gruene-luebeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-luebeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77788,7 +77874,7 @@ "opengraph": null, "title": "GRÜNE LÜBECK: Home" }, - "duration": 200, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -77836,7 +77922,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -77893,7 +77979,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -77901,7 +77987,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -77909,7 +77995,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 335, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -77924,7 +78010,7 @@ "opengraph": null, "title": null }, - "duration": 96, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -77947,16 +78033,16 @@ "opengraph": null, "title": null }, - "duration": 97, + "duration": 96, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 335, "768x1024": 768 }, - "viewport_meta_tag": null + "viewport_meta_tag": "width=device-width, initial-scale=1.0" }, "status_code": 200, "url": "http://www.gruene-luechow-dannenberg.de/" @@ -77998,7 +78084,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 96 + "value": 95 }, "RESPONSIVE": { "score": 1, @@ -78067,39 +78153,99 @@ } ], "responsive": { - "min_width": 2000 + "min_width": 320 }, "urlchecks": [ { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 65, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "http://gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 64, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "http://www.gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 152, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "https://gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 156, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "https://www.gruene-luehe.de/" } ] @@ -78132,14 +78278,13 @@ "value": false }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": null + "value": 109 }, "RESPONSIVE": { "score": 0, @@ -78155,7 +78300,7 @@ "value": true } }, - "score": 3.0 + "score": 5.5 }, { "details": { @@ -78179,9 +78324,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78223,7 +78368,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 202, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -78271,7 +78416,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -78311,9 +78456,9 @@ "resolved_hostname": "www.gruene-luenen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luenen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78355,7 +78500,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lünen: Startseite" }, - "duration": 210, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -78403,7 +78548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 244 }, "RESPONSIVE": { "score": 1, @@ -78443,9 +78588,9 @@ "resolved_hostname": "www.gruene-mainz-bingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-mainz-bingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78487,7 +78632,7 @@ "opengraph": null, "title": "Kreisverband Mainz-Bingen: Home" }, - "duration": 224, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -78535,7 +78680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -78620,7 +78765,7 @@ "opengraph": null, "title": "Überblick - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Malsch" }, - "duration": 65, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -78643,7 +78788,7 @@ "opengraph": null, "title": "Überblick - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Malsch" }, - "duration": 67, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -78694,7 +78839,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 63 }, "RESPONSIVE": { "score": 0, @@ -78738,9 +78883,9 @@ "resolved_hostname": "www.gruene-mandelbachtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mandelbachtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -78786,7 +78931,7 @@ "opengraph": null, "title": "Ortsverband Mandelbachtal - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 306, + "duration": 292, "error": null, "responsive": { "document_width": { @@ -78833,7 +78978,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 292 }, "RESPONSIVE": { "score": 1, @@ -78879,9 +79024,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mannheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-mannheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "195.225.106.141" ], @@ -78956,7 +79102,7 @@ ], "title": "" }, - "duration": 488, + "duration": 478, "error": null, "responsive": { "document_width": { @@ -79004,7 +79150,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -79075,7 +79221,7 @@ "opengraph": null, "title": "Home" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -79125,7 +79271,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 0, @@ -79165,9 +79311,9 @@ "resolvable": false } }, - "icons": [ - "7e6c4a5e862318819087f280178d22f8.ico" - ], + "icons": { + "http://www.gruene-marsberg.de/favicon.ico": "7e6c4a5e862318819087f280178d22f8.ico" + }, "ipv4_addresses": [ "81.169.145.156" ], @@ -79199,7 +79345,7 @@ "opengraph": null, "title": "Die Grünen Marsberg" }, - "duration": 67, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -79248,7 +79394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -79296,9 +79442,10 @@ "resolved_hostname": "www.gruene-mechernich.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mechernich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-mechernich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -79350,7 +79497,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Mechernich" }, - "duration": 318, + "duration": 383, "error": null, "responsive": { "document_width": { @@ -79383,7 +79530,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Mechernich" }, - "duration": 712, + "duration": 469, "error": null, "responsive": { "document_width": { @@ -79431,7 +79578,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 515 + "value": 426 }, "RESPONSIVE": { "score": 1, @@ -79474,9 +79621,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-meerbusch.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.113.46.162" ], @@ -79519,7 +79666,7 @@ ], "title": "Bündnis 90 / Die Grünen - Ortsverband - MeerbuschBündnis 90 / Die Grünen" }, - "duration": 357, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -79566,7 +79713,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 323 }, "RESPONSIVE": { "score": 1, @@ -79660,7 +79807,7 @@ "opengraph": null, "title": "Grün wächst" }, - "duration": 143, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -79687,7 +79834,7 @@ "opengraph": null, "title": "Grün wächst" }, - "duration": 156, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -79737,7 +79884,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 162 }, "RESPONSIVE": { "score": 0, @@ -79780,9 +79927,9 @@ "resolved_hostname": "www.gruene-meissen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-meissen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -79830,7 +79977,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Meißen" }, - "duration": 229, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -79878,7 +80025,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -79921,9 +80068,9 @@ "resolved_hostname": "www.gruene-menden.de" } }, - "icons": [ - "f4442c28398da7eef7012f50cf3a337c.ico" - ], + "icons": { + "http://www.gruene-menden.de/fileadmin/templates/favicon.ico": "f4442c28398da7eef7012f50cf3a337c.ico" + }, "ipv4_addresses": [ "85.13.131.86" ], @@ -79982,7 +80129,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Menden" }, - "duration": 134, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -80030,7 +80177,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 160 }, "RESPONSIVE": { "score": 0, @@ -80077,7 +80224,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-merzenich.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-merzenich.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -80097,7 +80244,7 @@ "opengraph": null, "title": "Informationsseite - DENIC eG" }, - "duration": 111, + "duration": 118, "error": null, "responsive": null, "status_code": 200, @@ -80138,7 +80285,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 111 + "value": 118 }, "RESPONSIVE": { "score": 0, @@ -80183,9 +80330,9 @@ "resolved_hostname": "www.gruene-merzig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-merzig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -80231,7 +80378,7 @@ "opengraph": null, "title": "Stadtverband Merzig - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 287, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -80278,7 +80425,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 287 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -80366,7 +80513,7 @@ "opengraph": null, "title": "Die Grünen in Meschede" }, - "duration": 76, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -80389,7 +80536,7 @@ "opengraph": null, "title": "Die Grünen in Meschede" }, - "duration": 45, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -80440,7 +80587,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 76 }, "RESPONSIVE": { "score": 1, @@ -80480,9 +80627,9 @@ "resolved_hostname": "www.gruene-mettmann.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mettmann.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -80524,7 +80671,7 @@ "opengraph": null, "title": "Ortsverband Mettmann: Home" }, - "duration": 223, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -80572,7 +80719,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -80612,6 +80759,7 @@ "resolved_hostname": "www.gruene-mg.de" } }, + "icons": {}, "ipv4_addresses": [ "78.47.15.197" ], @@ -80656,7 +80804,7 @@ "opengraph": null, "title": "Hier und jetzt in MG..." }, - "duration": 69, + "duration": 71, "error": null, "responsive": { "document_width": { @@ -80689,9 +80837,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -80706,7 +80853,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 69 + "value": 71 }, "RESPONSIVE": { "score": 0, @@ -80722,7 +80869,7 @@ "value": true } }, - "score": 5.0 + "score": 6.0 }, { "details": { @@ -80750,9 +80897,9 @@ "resolved_hostname": "www.gruene-mh.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mh.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.194.229.119" ], @@ -80806,7 +80953,7 @@ ], "title": "gruene-mh.de" }, - "duration": 485, + "duration": 604, "error": null, "responsive": { "document_width": { @@ -80853,7 +81000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 485 + "value": 604 }, "RESPONSIVE": { "score": 1, @@ -80900,9 +81047,10 @@ "resolved_hostname": "www.gruene-michelstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-michelstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-michelstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -80955,7 +81103,7 @@ ], "title": "GRÜNE MICHELSTADT" }, - "duration": 850, + "duration": 819, "error": null, "responsive": { "document_width": { @@ -80989,7 +81137,7 @@ ], "title": "GRÜNE MICHELSTADT" }, - "duration": 306, + "duration": 935, "error": null, "responsive": { "document_width": { @@ -81037,7 +81185,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 578 + "value": 877 }, "RESPONSIVE": { "score": 1, @@ -81080,7 +81228,7 @@ "resolvable_urls": [ { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81088,7 +81236,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81096,7 +81244,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81104,7 +81252,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81232,7 +81380,7 @@ "opengraph": null, "title": "Kreisverband Miltenberg | Bündnis 90 / Die Grünen" }, - "duration": 267, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -81281,7 +81429,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 267 + "value": 323 }, "RESPONSIVE": { "score": 1, @@ -81352,7 +81500,7 @@ "opengraph": null, "title": "Start | Die Grünen Minden" }, - "duration": 80, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -81402,7 +81550,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 80 + "value": 77 }, "RESPONSIVE": { "score": 0, @@ -81446,9 +81594,7 @@ "resolved_hostname": "www.gruene-mitte.com" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "188.94.25.86" ], @@ -81510,7 +81656,7 @@ ], "title": "Willkommen bei den GRÜNEN in Hamburg-Mitte - GRÜNE Hamburg-Mitte" }, - "duration": 323, + "duration": 326, "error": null, "responsive": { "document_width": { @@ -81557,7 +81703,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 323 + "value": 326 }, "RESPONSIVE": { "score": 1, @@ -81600,9 +81746,9 @@ "resolved_hostname": "www.gruene-mittelsachsen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-mittelsachsen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -81650,7 +81796,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN in Mittelsachsen" }, - "duration": 239, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -81698,7 +81844,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 249 }, "RESPONSIVE": { "score": 0, @@ -81742,9 +81888,9 @@ "resolved_hostname": "www.gruene-mk.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-mk.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.130.118" ], @@ -81796,7 +81942,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN KREISVERBAND MARK" }, - "duration": 731, + "duration": 586, "error": null, "responsive": { "document_width": { @@ -81843,7 +81989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 731 + "value": 586 }, "RESPONSIVE": { "score": 1, @@ -81887,9 +82033,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -81942,7 +82088,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 907, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -81989,7 +82135,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 907 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -82029,9 +82175,9 @@ "resolved_hostname": "www.gruene-moehnesee.de" } }, - "icons": [ - "2c77da304308884f973dc578f33f22f3.ico" - ], + "icons": { + "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico": "2c77da304308884f973dc578f33f22f3.ico" + }, "ipv4_addresses": [ "217.160.231.212" ], @@ -82081,7 +82227,7 @@ ], "title": "Grüne-Möhnesee - Startseite | Facebook" }, - "duration": 75, + "duration": 618, "error": null, "responsive": { "document_width": { @@ -82127,9 +82273,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 75 + "value": 618 }, "RESPONSIVE": { "score": 0, @@ -82145,7 +82291,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -82169,6 +82315,7 @@ "resolved_hostname": "www.gruene-moers.de" } }, + "icons": {}, "ipv4_addresses": [ "62.75.146.61" ], @@ -82213,7 +82360,7 @@ "opengraph": null, "title": "Start: Bündnis 90/Die Grünen Moers" }, - "duration": 515, + "duration": 664, "error": null, "responsive": { "document_width": { @@ -82246,9 +82393,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -82263,7 +82409,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 515 + "value": 664 }, "RESPONSIVE": { "score": 0, @@ -82279,7 +82425,7 @@ "value": true } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -82303,9 +82449,9 @@ "resolved_hostname": "www.gruene-moormerland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -82347,7 +82493,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Startseite" }, - "duration": 195, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -82395,7 +82541,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -82483,7 +82629,7 @@ "opengraph": null, "title": null }, - "duration": 83, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -82506,7 +82652,7 @@ "opengraph": null, "title": null }, - "duration": 120, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -82555,9 +82701,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 102 + "value": 93 }, "RESPONSIVE": { "score": 1, @@ -82573,7 +82719,7 @@ "value": true } }, - "score": 4.5 + "score": 5.0 }, { "details": { @@ -82600,9 +82746,9 @@ "resolved_hostname": "www.gruene-muenchen-au-haidhausen.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-au-haidhausen.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82650,7 +82796,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Au/Haidhausen: Startseite Grüne Au/Haidhausen" }, - "duration": 98, + "duration": 53, "error": null, "responsive": { "document_width": { @@ -82698,7 +82844,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 98 + "value": 53 }, "RESPONSIVE": { "score": 0, @@ -82741,9 +82887,9 @@ "resolved_hostname": "www.gruene-muenchen-giesing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-giesing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82791,7 +82937,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Giesing/Harlaching: Startseite Grüne Giesing-Harlaching" }, - "duration": 85, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -82839,7 +82985,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 91 }, "RESPONSIVE": { "score": 0, @@ -82882,9 +83028,9 @@ "resolved_hostname": "www.gruene-muenchen-nord.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-nord.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82932,7 +83078,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Nord: Startseite Grüne OV Nord" }, - "duration": 57, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -82978,9 +83124,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 57 + "value": 103 }, "RESPONSIVE": { "score": 0, @@ -82996,7 +83142,7 @@ "value": true } }, - "score": 7.0 + "score": 6.5 }, { "details": { @@ -83023,9 +83169,9 @@ "resolved_hostname": "www.gruene-muenchen-pasing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-pasing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -83073,7 +83219,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Pasing/Aubing: Startseite Grüne Pasing Aubing" }, - "duration": 52, + "duration": 54, "error": null, "responsive": { "document_width": { @@ -83096,6 +83242,711 @@ "level": "DE:ORTSVERBAND", "state": "Bayern" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 54 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-perlach.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-perlach.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-perlach.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-perlach.de" + }, + "www.gruene-muenchen-perlach.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-perlach.de" + } + }, + "icons": { + "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-perlach.de/", + "url": "http://gruene-muenchen-perlach.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-perlach.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-perlach.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-perlach.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-perlach.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Ramersdorf/Perlach: Startseite Grüne Ramersdorf-Perlach" + }, + "duration": 87, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-perlach.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-perlach.de/", + "meta": { + "city": "Ramersdorf-Perlach", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 87 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-sendling.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-sendling.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-sendling.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-sendling.de" + }, + "www.gruene-muenchen-sendling.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-sendling.de" + } + }, + "icons": { + "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-sendling.de/", + "url": "http://gruene-muenchen-sendling.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-sendling.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-sendling.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-sendling.de/" + } + ], + "responsive": { + "min_width": 1083 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-sendling.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Sendling: Startseite Grüne OV Sendling" + }, + "duration": 86, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1125, + "1920x1080": 1920, + "320x480": 1083, + "768x1024": 1083 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-sendling.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-sendling.de", + "meta": { + "city": "Sendling", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 86 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-stoff.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-stoff.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-stoff.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-stoff.de" + }, + "www.gruene-muenchen-stoff.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-stoff.de" + } + }, + "icons": { + "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-stoff.de/", + "url": "http://gruene-muenchen-stoff.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-stoff.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-stoff.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-stoff.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-stoff.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband STOFF: Startseite Grüne STOFF Solln-Thalkirchen-Obersendling-Forstenried-Fürstenried" + }, + "duration": 94, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-stoff.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-stoff.de/", + "meta": { + "city": "STOFF", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 94 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-westend.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-westend.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-westend.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-westend.de" + }, + "www.gruene-muenchen-westend.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-westend.de" + } + }, + "icons": { + "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-westend.de/", + "url": "http://gruene-muenchen-westend.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-westend.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-westend.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-westend.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-westend.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München: Die Grünen im Westend und Laim" + }, + "duration": 89, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-westend.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-westend.de", + "meta": { + "city": "Westend/Laim", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 89 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-zentral.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-zentral.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-zentral.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-zentral.de" + }, + "www.gruene-muenchen-zentral.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-zentral.de" + } + }, + "icons": { + "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-zentral.de/", + "url": "http://gruene-muenchen-zentral.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-zentral.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-zentral.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-zentral.de/" + } + ], + "responsive": { + "min_width": 1083 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-zentral.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Zentral: Startseite Grüne OV Zentral" + }, + "duration": 52, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1125, + "1920x1080": 1920, + "320x480": 1083, + "768x1024": 1083 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-zentral.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-zentral.de", + "meta": { + "city": "Zentral", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -83139,711 +83990,6 @@ }, "score": 7.0 }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-perlach.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-perlach.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-perlach.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-perlach.de" - }, - "www.gruene-muenchen-perlach.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-perlach.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-perlach.de/", - "url": "http://gruene-muenchen-perlach.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-perlach.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-perlach.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-perlach.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-perlach.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Ramersdorf/Perlach: Startseite Grüne Ramersdorf-Perlach" - }, - "duration": 48, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-perlach.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-perlach.de/", - "meta": { - "city": "Ramersdorf-Perlach", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 48 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-sendling.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-sendling.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-sendling.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-sendling.de" - }, - "www.gruene-muenchen-sendling.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-sendling.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-sendling.de/", - "url": "http://gruene-muenchen-sendling.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-sendling.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-sendling.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-sendling.de/" - } - ], - "responsive": { - "min_width": 1083 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-sendling.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Sendling: Startseite Grüne OV Sendling" - }, - "duration": 84, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1125, - "1920x1080": 1920, - "320x480": 1083, - "768x1024": 1083 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-sendling.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-sendling.de", - "meta": { - "city": "Sendling", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 84 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-stoff.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-stoff.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-stoff.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-stoff.de" - }, - "www.gruene-muenchen-stoff.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-stoff.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-stoff.de/", - "url": "http://gruene-muenchen-stoff.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-stoff.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-stoff.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-stoff.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-stoff.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband STOFF: Startseite Grüne STOFF Solln-Thalkirchen-Obersendling-Forstenried-Fürstenried" - }, - "duration": 65, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-stoff.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-stoff.de/", - "meta": { - "city": "STOFF", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 65 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-westend.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-westend.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-westend.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-westend.de" - }, - "www.gruene-muenchen-westend.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-westend.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-westend.de/", - "url": "http://gruene-muenchen-westend.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-westend.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-westend.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-westend.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-westend.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München: Die Grünen im Westend und Laim" - }, - "duration": 48, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-westend.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-westend.de", - "meta": { - "city": "Westend/Laim", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 48 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-zentral.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-zentral.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-zentral.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-zentral.de" - }, - "www.gruene-muenchen-zentral.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-zentral.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-zentral.de/", - "url": "http://gruene-muenchen-zentral.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-zentral.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-zentral.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-zentral.de/" - } - ], - "responsive": { - "min_width": 1083 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-zentral.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Zentral: Startseite Grüne OV Zentral" - }, - "duration": 106, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1125, - "1920x1080": 1920, - "320x480": 1083, - "768x1024": 1083 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-zentral.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-zentral.de", - "meta": { - "city": "Zentral", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 106 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -83870,9 +84016,9 @@ "resolved_hostname": "www.gruene-mutterstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mutterstadt.de/Wordpress/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.4.195.1" ], @@ -83930,7 +84076,7 @@ ], "title": "GRÜNE in Mutterstadt" }, - "duration": 292, + "duration": 345, "error": null, "responsive": { "document_width": { @@ -83978,7 +84124,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 292 + "value": 345 }, "RESPONSIVE": { "score": 1, @@ -84019,9 +84165,9 @@ "resolved_hostname": "www.gruene-mw.de" } }, - "icons": [ - "360d1d2987fcd886dbfb83f4cf2ae833.ico" - ], + "icons": { + "http://www.gruene-mw.de/bilder/icon.ico": "360d1d2987fcd886dbfb83f4cf2ae833.ico" + }, "ipv4_addresses": [ "213.188.99.90" ], @@ -84038,7 +84184,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -84046,7 +84192,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -84062,7 +84208,7 @@ "urlchecks": [ { "content": null, - "duration": 62, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -84085,7 +84231,7 @@ "opengraph": null, "title": "B90/Die Grünen - Mörfelden-Walldorf |" }, - "duration": 237, + "duration": 511, "error": null, "responsive": { "document_width": { @@ -84135,7 +84281,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 418 }, "RESPONSIVE": { "score": 1, @@ -84175,9 +84321,9 @@ "resolved_hostname": "www.gruene-myk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-myk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -84219,7 +84365,7 @@ "opengraph": null, "title": "KV Mayen-Koblenz: HOME" }, - "duration": 195, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -84267,7 +84413,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -84307,9 +84453,9 @@ "resolved_hostname": "www.gruene-nettetal.de" } }, - "icons": [ - "cc8af562ad5ee310b2be91d824f630fe.ico" - ], + "icons": { + "http://gruene-nettetal.de/wordpress/wp-content/themes/greenpubl/images/favicon.ico": "cc8af562ad5ee310b2be91d824f630fe.ico" + }, "ipv4_addresses": [ "185.21.101.208" ], @@ -84357,7 +84503,7 @@ "opengraph": null, "title": "Grüne Nettetal" }, - "duration": 175, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -84406,7 +84552,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 179 }, "RESPONSIVE": { "score": 0, @@ -84446,9 +84592,9 @@ "resolved_hostname": "www.gruene-neuenkirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neuenkirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -84490,7 +84636,7 @@ "opengraph": null, "title": "Ortsverband Neuenkirchen (Krs. Steinfurt): Aktuelles" }, - "duration": 218, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -84538,7 +84684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -84578,9 +84724,9 @@ "resolved_hostname": "www.gruene-neukoelln.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "http://www.gruene-neukoelln.de/typo3conf/ext/theme_uk/Resources/Public/img/project/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "188.94.248.197" ], @@ -84635,7 +84781,7 @@ ], "title": "Grüne Neukölln - Homepage" }, - "duration": 612, + "duration": 563, "error": null, "responsive": { "document_width": { @@ -84684,7 +84830,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 612 + "value": 563 }, "RESPONSIVE": { "score": 1, @@ -84725,9 +84871,10 @@ "resolved_hostname": "www.gruene-neunkirchen-siegerland.de" } }, - "icons": [ - "e44c542cc6ee3633aff95141ace057b2.ico" - ], + "icons": { + "http://gruene-neunkirchen-siegerland.de/favicon.ico": "e44c542cc6ee3633aff95141ace057b2.ico", + "http://www.gruene-neunkirchen-siegerland.de/favicon.ico": "e44c542cc6ee3633aff95141ace057b2.ico" + }, "ipv4_addresses": [ "217.160.122.189" ], @@ -84772,7 +84919,7 @@ "opengraph": null, "title": "Grüne Neunkirchen" }, - "duration": 145, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -84795,7 +84942,7 @@ "opengraph": null, "title": "Grüne Neunkirchen" }, - "duration": 122, + "duration": 146, "error": null, "responsive": { "document_width": { @@ -84845,7 +84992,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 162 }, "RESPONSIVE": { "score": 0, @@ -84889,9 +85036,9 @@ "resolved_hostname": "www.gruene-neusob.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-neusob.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.58" ], @@ -84949,7 +85096,7 @@ ], "title": "Bündnis 90/Die Grünen ND-SOB" }, - "duration": 721, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -84997,7 +85144,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 721 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -85041,9 +85188,9 @@ "resolved_hostname": "www.gruene-neuss.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-neuss.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.93" ], @@ -85096,7 +85243,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Neuss" }, - "duration": 724, + "duration": 782, "error": null, "responsive": { "document_width": { @@ -85143,7 +85290,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 724 + "value": 782 }, "RESPONSIVE": { "score": 1, @@ -85228,7 +85375,7 @@ "opengraph": null, "title": "Die Netzmacher (greenweb)" }, - "duration": 60, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -85251,7 +85398,7 @@ "opengraph": null, "title": "Die Netzmacher (greenweb)" }, - "duration": 65, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -85302,7 +85449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 60 }, "RESPONSIVE": { "score": 0, @@ -85344,9 +85491,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://blog.gruene-neuwulmstorf.de/wp-content/themes/gruene/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -85381,7 +85528,7 @@ "opengraph": null, "title": "Startseite - Grüne Neu Wulmstorf" }, - "duration": 383, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -85429,7 +85576,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 401 }, "RESPONSIVE": { "score": 0, @@ -85470,9 +85617,9 @@ "resolved_hostname": "www.gruene-nf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-nf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -85514,7 +85661,7 @@ "opengraph": null, "title": "GRÜNE Nordfriesland: Home" }, - "duration": 198, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -85562,7 +85709,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -85601,9 +85748,9 @@ "resolvable": false } }, - "icons": [ - "ba4eedeb55dde701757c424ff3ff3dec.ico" - ], + "icons": { + "http://www.gruene-niederdorfelden.de/fileadmin/template/gruene1/favicon.ico": "ba4eedeb55dde701757c424ff3ff3dec.ico" + }, "ipv4_addresses": [ "213.187.84.247" ], @@ -85635,7 +85782,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen Ortsverband Niederdorfelden : gruene-niederdorfelden.de" }, - "duration": 282, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -85684,7 +85831,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 282 + "value": 279 }, "RESPONSIVE": { "score": 0, @@ -85729,9 +85876,9 @@ "resolved_hostname": "www.gruene-niederrhein-wupper.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-niederrhein-wupper.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -85789,7 +85936,7 @@ ], "title": "Bezirksverband NrW von Bündnis 90/Die Grünen › Grüne Niederrhein-Wupper" }, - "duration": 65, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -85837,7 +85984,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 65 + "value": 61 }, "RESPONSIVE": { "score": 1, @@ -85877,9 +86024,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -85921,7 +86068,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 193, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -85969,7 +86116,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -86009,9 +86156,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86053,7 +86200,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 226, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -86101,7 +86248,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -86193,7 +86340,7 @@ "opengraph": null, "title": "gruene-niestetal.de - Wir konzentrieren uns auf Inhalte !" }, - "duration": 221, + "duration": 548, "error": null, "responsive": { "document_width": { @@ -86242,7 +86389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 548 }, "RESPONSIVE": { "score": 0, @@ -86320,7 +86467,7 @@ "urlchecks": [ { "content": null, - "duration": 114, + "duration": 142, "error": null, "responsive": { "document_width": { @@ -86336,7 +86483,7 @@ }, { "content": null, - "duration": 110, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -86387,7 +86534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 112 + "value": 131 }, "RESPONSIVE": { "score": 0, @@ -86481,7 +86628,7 @@ ], "title": "Aktuell - BÜNDNIS 90/DIE GRÜNEN Kreisverband Neckar-Odenwald" }, - "duration": 857, + "duration": 905, "error": null, "responsive": { "document_width": { @@ -86529,7 +86676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 857 + "value": 905 }, "RESPONSIVE": { "score": 0, @@ -86569,9 +86716,9 @@ "resolved_hostname": "www.gruene-nord.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nord.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86613,7 +86760,7 @@ "opengraph": null, "title": "GRÜNE Nord: Home" }, - "duration": 191, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -86661,7 +86808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -86731,7 +86878,7 @@ "opengraph": null, "title": "Home" }, - "duration": 54, + "duration": 57, "error": null, "responsive": { "document_width": { @@ -86781,7 +86928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 54 + "value": 57 }, "RESPONSIVE": { "score": 0, @@ -86822,9 +86969,9 @@ "resolved_hostname": "www.gruene-nordhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-nordhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86866,7 +87013,7 @@ "opengraph": null, "title": "Kreisverband Nordhausen: Startseite" }, - "duration": 162, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -86914,7 +87061,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -86954,9 +87101,9 @@ "resolved_hostname": "www.gruene-nordwalde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nordwalde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86998,7 +87145,7 @@ "opengraph": null, "title": "OV Nordwalde: Startseite" }, - "duration": 182, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -87046,7 +87193,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 182 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -87086,9 +87233,9 @@ "resolved_hostname": "www.gruene-nordwestmecklenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nordwestmecklenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87130,7 +87277,7 @@ "opengraph": null, "title": "Nordwestmecklenburg Wismar: Startseite" }, - "duration": 209, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -87178,7 +87325,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -87218,9 +87365,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87262,7 +87409,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 181, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -87310,7 +87457,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -87350,9 +87497,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87394,7 +87541,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 184, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -87442,7 +87589,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -87482,9 +87629,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87526,7 +87673,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 172, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -87574,7 +87721,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -87620,9 +87767,9 @@ "resolved_hostname": "www.gruene-nrue.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-nrue.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.223.103" ], @@ -87682,7 +87829,7 @@ ], "title": "Bündnis 90 / Die Grünen" }, - "duration": 514, + "duration": 535, "error": null, "responsive": { "document_width": { @@ -87730,7 +87877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 535 }, "RESPONSIVE": { "score": 1, @@ -87774,9 +87921,9 @@ "resolved_hostname": "www.gruene-nrw.de" } }, - "icons": [ - "2b4be9b11156199e96acb71392cc14ce.png" - ], + "icons": { + "https://gruene-nrw.de/site/themes/josephknowsbest/favicon.png": "2b4be9b11156199e96acb71392cc14ce.png" + }, "ipv4_addresses": [ "134.119.2.86" ], @@ -87828,7 +87975,7 @@ ], "title": "Grüne NRW - Gemeinsam NRW gestalten." }, - "duration": 157, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -87875,7 +88022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -87960,7 +88107,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 115, + "duration": 274, "error": null, "responsive": { "document_width": { @@ -87983,7 +88130,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 101, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -88034,7 +88181,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 108 + "value": 195 }, "RESPONSIVE": { "score": 0, @@ -88074,9 +88221,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88118,7 +88265,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 242, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -88166,7 +88313,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 242 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -88251,7 +88398,7 @@ "opengraph": null, "title": "Home - DIE GRÜNEN Nußloch" }, - "duration": 224, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -88274,7 +88421,7 @@ "opengraph": null, "title": "Home - DIE GRÜNEN Nußloch" }, - "duration": 255, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -88325,7 +88472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 233 }, "RESPONSIVE": { "score": 0, @@ -88365,9 +88512,9 @@ "resolved_hostname": "www.gruene-nv.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-nv.de/fileadmin/images/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "62.75.146.61" ], @@ -88412,7 +88559,7 @@ "opengraph": null, "title": "Aktuelles: Grüne Neukirchen-Vluyn" }, - "duration": 209, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -88461,7 +88608,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 320 }, "RESPONSIVE": { "score": 0, @@ -88518,16 +88665,16 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-oberasbach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:720)'),))", - "type": "" + "message": "('Connection aborted.', OSError(0, 'Error'))", + "type": "" }, "redirects_to": null, "url": "https://gruene-oberasbach.de/" }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-oberasbach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:720)'),))", - "type": "" + "message": "('Connection aborted.', OSError(0, 'Error'))", + "type": "" }, "redirects_to": null, "url": "https://www.gruene-oberasbach.de/" @@ -88539,7 +88686,7 @@ "urlchecks": [ { "content": null, - "duration": 81, + "duration": 78, "error": null, "responsive": { "document_width": { @@ -88555,7 +88702,7 @@ }, { "content": null, - "duration": 72, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -88606,7 +88753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 76 + "value": 78 }, "RESPONSIVE": { "score": 0, @@ -88646,9 +88793,9 @@ "resolved_hostname": "www.gruene-oberberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88690,7 +88837,7 @@ "opengraph": null, "title": "Kreisverband Oberberg : Startseite" }, - "duration": 213, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -88738,7 +88885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 220 }, "RESPONSIVE": { "score": 0, @@ -88782,9 +88929,9 @@ "resolved_hostname": "www.gruene-oberes-wiesental.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oberes-wiesental.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.60" ], @@ -88842,7 +88989,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortsverband Oberes Wiesental" }, - "duration": 400, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -88890,7 +89037,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 513 }, "RESPONSIVE": { "score": 0, @@ -88930,9 +89077,9 @@ "resolved_hostname": "www.gruene-oberhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88974,7 +89121,7 @@ "opengraph": null, "title": "GRÜNE Oberhausen: Home" }, - "duration": 212, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -89022,7 +89169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -89107,7 +89254,7 @@ "opengraph": null, "title": "Obermichelbach - Bündnis 90 / Die Grünen" }, - "duration": 70, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -89130,7 +89277,7 @@ "opengraph": null, "title": "Obermichelbach - Bündnis 90 / Die Grünen" }, - "duration": 71, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -89180,7 +89327,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 70 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -89220,9 +89367,9 @@ "resolved_hostname": "www.gruene-odenthal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-odenthal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -89264,7 +89411,7 @@ "opengraph": null, "title": "GRÜNE - Odenthal: Home" }, - "duration": 206, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -89312,7 +89459,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -89359,9 +89506,10 @@ "resolved_hostname": "www.gruene-odenwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-odenwald.de/testgebiet/wp_green/wp-content/themes/urwahl3000b/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-odenwald.de/testgebiet/wp_green/wp-content/themes/urwahl3000b/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -89413,7 +89561,7 @@ ], "title": "Grüne Odenwald" }, - "duration": 357, + "duration": 382, "error": null, "responsive": { "document_width": { @@ -89446,7 +89594,7 @@ ], "title": "Grüne Odenwald" }, - "duration": 499, + "duration": 498, "error": null, "responsive": { "document_width": { @@ -89494,7 +89642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 440 }, "RESPONSIVE": { "score": 1, @@ -89537,9 +89685,9 @@ "resolved_hostname": "www.gruene-oe.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-oe.de/wordpress/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "178.254.62.52" ], @@ -89594,7 +89742,7 @@ ], "title": "Startseite - Neuigkeiten - Bündnis 90/Die Grünen Oer-Erkenschwick - Bündnis 90/Die Grünen Oer-Erkenschwick" }, - "duration": 713, + "duration": 838, "error": null, "responsive": { "document_width": { @@ -89642,7 +89790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 838 }, "RESPONSIVE": { "score": 0, @@ -89685,9 +89833,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oelde.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -89732,7 +89880,7 @@ ], "title": "Grüne Oelde" }, - "duration": 347, + "duration": 601, "error": null, "responsive": { "document_width": { @@ -89780,7 +89928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 347 + "value": 601 }, "RESPONSIVE": { "score": 1, @@ -89825,9 +89973,9 @@ "resolved_hostname": "www.gruene-oerlinghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oerlinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.215" ], @@ -89886,7 +90034,7 @@ ], "title": "Grüne Oerlinghausen" }, - "duration": 739, + "duration": 645, "error": null, "responsive": { "document_width": { @@ -89934,7 +90082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 739 + "value": 645 }, "RESPONSIVE": { "score": 1, @@ -89978,9 +90126,9 @@ "resolved_hostname": "www.gruene-offenburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-offenburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.43" ], @@ -89997,7 +90145,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -90005,7 +90153,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -90013,7 +90161,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 332, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -90038,13 +90186,13 @@ ], "title": "Bündnis 90 / Die Grünen – Offenburg" }, - "duration": 518, + "duration": 521, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1113, "1920x1080": 1920, - "320x480": 320, + "320x480": 332, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -90086,7 +90234,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 518 + "value": 521 }, "RESPONSIVE": { "score": 1, @@ -90126,9 +90274,9 @@ "resolved_hostname": "www.gruene-oh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90170,7 +90318,7 @@ "opengraph": null, "title": "Kreisverband Ostholstein: Aktuelles" }, - "duration": 207, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -90218,7 +90366,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -90258,9 +90406,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90302,7 +90450,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 211, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -90350,7 +90498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -90390,9 +90538,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90434,7 +90582,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 193, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -90482,7 +90630,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -90522,9 +90670,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90654,9 +90802,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90698,7 +90846,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 229, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -90721,6 +90869,811 @@ "level": "DE:ORTSVERBAND", "state": "Niedersachsen" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-oldenburg.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-oldenburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-oldenburg.de" + }, + "www.gruene-oldenburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-oldenburg.de" + } + }, + "icons": { + "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "http://gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "http://www.gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "https://gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "https://www.gruene-oldenburg.de/" + } + ], + "responsive": { + "min_width": 322, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Stadtverband Oldenburg: Home" + }, + "duration": 224, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 322, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-oldenburg.de/home/" + } + ] + }, + "input_url": "http://www.gruene-oldenburg.de/home/", + "meta": { + "city": null, + "district": "Oldenburg-Stadt", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 224 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-olhi.de/" + ], + "cms": null, + "hostnames": { + "gruene-olhi.de": { + "ip_addresses": [ + "52.210.189.158" + ], + "resolvable": true, + "resolved_hostname": "gruene-olhi.de" + }, + "www.gruene-olhi.de": { + "resolvable": false + } + }, + "icons": {}, + "ipv4_addresses": [ + "52.210.189.158" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-olhi.de/", + "url": "http://gruene-olhi.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-olhi.de/", + "url": "https://gruene-olhi.de/" + } + ], + "responsive": { + "min_width": 320 + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://www.gruene-olhi.de/", + "encoding": "utf-8", + "generator": null, + "icon": "data:image/png;base64,iVBORw0KGgo=", + "opengraph": [ + "og:description", + "og:image", + "og:image:height", + "og:image:secure_url", + "og:image:width", + "og:locale", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Herzlich Willkommen bei www.gruene-olhi.de - gruene-olhis Webseite!" + }, + "duration": 433, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 900 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "https://www.gruene-olhi.de/" + } + ] + }, + "input_url": "http://www.gruene-olhi.de/", + "meta": { + "city": "Himmelpforten/ Oldendorf", + "district": "Stade", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 433 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-olpe.de/start/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-olpe.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-olpe.de" + }, + "www.gruene-olpe.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-olpe.de" + } + }, + "icons": { + "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "http://gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "http://www.gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "https://gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "https://www.gruene-olpe.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Olpe: Start" + }, + "duration": 264, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-olpe.de/start/" + } + ] + }, + "input_url": "http://www.gruene-olpe.de/", + "meta": { + "city": null, + "district": "Olpe", + "level": "DE:KREISVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 264 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-olsberg.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-olsberg.de/comments/feed/", + "http://www.gruene-olsberg.de/feed/" + ], + "hostnames": { + "gruene-olsberg.de": { + "aliases": [ + "www.gruene-olsberg.de" + ], + "ip_addresses": [ + "213.131.233.85" + ], + "resolvable": true, + "resolved_hostname": "gruene-olsberg.de" + }, + "www.gruene-olsberg.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "213.131.233.85" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-olsberg.de/", + "url": "http://gruene-olsberg.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-olsberg.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-olsberg.de' doesn't match either of 'gruene-dormagen.de', 'www.gruene-dormagen.de'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-olsberg.de/" + } + ], + "responsive": { + "min_width": 369, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "http://www.gruene-olsberg.de/", + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-olsberg.de/feed/", + "http://www.gruene-olsberg.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Grüne Olsberg" + }, + "duration": 431, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1054, + "1920x1080": 1920, + "320x480": 369, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-olsberg.de/" + } + ] + }, + "input_url": "http://www.gruene-olsberg.de/", + "meta": { + "city": "Olsberg", + "district": "Hochsauerland", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 431 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-os-landkreis.de/startseite/" + ], + "cms": "typo3", + "hostnames": { + "gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "gruene-os-land.de" + }, + "www.gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-os-land.de" + } + }, + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "85.13.139.107" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://gruene-os-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://www.gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-os-land.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne OS Land: Startseite" + }, + "duration": 179, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-os-landkreis.de/startseite/" + } + ] + }, + "input_url": "http://www.gruene-os-land.de/", + "meta": { + "city": null, + "district": "Osnabrück-Land", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 179 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-os-landkreis.de/startseite/" + ], + "cms": "typo3", + "hostnames": { + "gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "gruene-os-land.de" + }, + "www.gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-os-land.de" + } + }, + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "85.13.139.107" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://gruene-os-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://www.gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-os-land.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne OS Land: Startseite" + }, + "duration": 229, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-os-landkreis.de/startseite/" + } + ] + }, + "input_url": "http://www.gruene-os-land.de/start/ortsverbaende/bad-rothenfelde/", + "meta": { + "city": "Bad Rothenfelde", + "district": "Osnabrück-Land", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -90764,535 +91717,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-oldenburg.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-oldenburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-oldenburg.de" - }, - "www.gruene-oldenburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-oldenburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "http://gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "http://www.gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "https://gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "https://www.gruene-oldenburg.de/" - } - ], - "responsive": { - "min_width": 322, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Stadtverband Oldenburg: Home" - }, - "duration": 215, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 322, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-oldenburg.de/home/" - } - ] - }, - "input_url": "http://www.gruene-oldenburg.de/home/", - "meta": { - "city": null, - "district": "Oldenburg-Stadt", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 215 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-olhi.de/" - ], - "cms": null, - "hostnames": { - "gruene-olhi.de": { - "ip_addresses": [ - "52.17.84.106" - ], - "resolvable": true, - "resolved_hostname": "gruene-olhi.de" - }, - "www.gruene-olhi.de": { - "resolvable": false - } - }, - "ipv4_addresses": [ - "52.17.84.106" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-olhi.de/", - "url": "http://gruene-olhi.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-olhi.de/", - "url": "https://gruene-olhi.de/" - } - ], - "responsive": { - "min_width": 320 - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://www.gruene-olhi.de/", - "encoding": "utf-8", - "generator": null, - "icon": "data:image/png;base64,iVBORw0KGgo=", - "opengraph": [ - "og:description", - "og:image", - "og:image:height", - "og:image:secure_url", - "og:image:width", - "og:locale", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Herzlich Willkommen bei www.gruene-olhi.de - gruene-olhis Webseite!" - }, - "duration": 313, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 900 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "https://www.gruene-olhi.de/" - } - ] - }, - "input_url": "http://www.gruene-olhi.de/", - "meta": { - "city": "Himmelpforten/ Oldendorf", - "district": "Stade", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 0, - "type": "boolean", - "value": false - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 313 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 5.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-olpe.de/start/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-olpe.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-olpe.de" - }, - "www.gruene-olpe.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-olpe.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "http://gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "http://www.gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "https://gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "https://www.gruene-olpe.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Olpe: Start" - }, - "duration": 210, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-olpe.de/start/" - } - ] - }, - "input_url": "http://www.gruene-olpe.de/", - "meta": { - "city": null, - "district": "Olpe", - "level": "DE:KREISVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 210 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-olsberg.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-olsberg.de/comments/feed/", - "http://www.gruene-olsberg.de/feed/" - ], - "hostnames": { - "gruene-olsberg.de": { - "aliases": [ - "www.gruene-olsberg.de" - ], - "ip_addresses": [ - "213.131.233.85" - ], - "resolvable": true, - "resolved_hostname": "gruene-olsberg.de" - }, - "www.gruene-olsberg.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "213.131.233.85" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-olsberg.de/", - "url": "http://gruene-olsberg.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-olsberg.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-olsberg.de' doesn't match either of 'gruene-dormagen.de', 'www.gruene-dormagen.de'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-olsberg.de/" - } - ], - "responsive": { - "min_width": 369, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "http://www.gruene-olsberg.de/", - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-olsberg.de/feed/", - "http://www.gruene-olsberg.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Grüne Olsberg" - }, - "duration": 441, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1054, - "1920x1080": 1920, - "320x480": 369, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-olsberg.de/" - } - ] - }, - "input_url": "http://www.gruene-olsberg.de/", - "meta": { - "city": "Olsberg", - "district": "Hochsauerland", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 441 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -91315,9 +91739,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91365,283 +91789,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 209, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-os-landkreis.de/startseite/" - } - ] - }, - "input_url": "http://www.gruene-os-land.de/", - "meta": { - "city": null, - "district": "Osnabrück-Land", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 209 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-os-landkreis.de/startseite/" - ], - "cms": "typo3", - "hostnames": { - "gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "gruene-os-land.de" - }, - "www.gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-os-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "85.13.139.107" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://gruene-os-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://www.gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-os-land.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne OS Land: Startseite" - }, - "duration": 190, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-os-landkreis.de/startseite/" - } - ] - }, - "input_url": "http://www.gruene-os-land.de/start/ortsverbaende/bad-rothenfelde/", - "meta": { - "city": "Bad Rothenfelde", - "district": "Osnabrück-Land", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 190 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-os-landkreis.de/startseite/" - ], - "cms": "typo3", - "hostnames": { - "gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "gruene-os-land.de" - }, - "www.gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-os-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "85.13.139.107" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://gruene-os-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://www.gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-os-land.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne OS Land: Startseite" - }, - "duration": 208, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -91689,7 +91837,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -91729,9 +91877,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91779,7 +91927,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -91827,7 +91975,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -91867,9 +92015,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91917,7 +92065,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 190, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -91965,7 +92113,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -92005,9 +92153,9 @@ "resolved_hostname": "www.gruene-ostbevern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ostbevern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92049,7 +92197,7 @@ "opengraph": null, "title": "Ortsverband Ostbevern: Home" }, - "duration": 213, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -92097,7 +92245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -92175,7 +92323,7 @@ "urlchecks": [ { "content": null, - "duration": 167, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -92191,7 +92339,7 @@ }, { "content": null, - "duration": 177, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -92242,7 +92390,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 182 }, "RESPONSIVE": { "score": 0, @@ -92282,9 +92430,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92326,7 +92474,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 187, + "duration": 818, "error": null, "responsive": { "document_width": { @@ -92374,7 +92522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 818 }, "RESPONSIVE": { "score": 1, @@ -92414,9 +92562,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92458,7 +92606,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 224, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -92506,7 +92654,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -92546,9 +92694,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92590,7 +92738,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 205, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -92638,7 +92786,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -92678,9 +92826,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92722,7 +92870,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 215, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -92770,7 +92918,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -92810,9 +92958,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-ostfildern.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-ostfildern.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -92844,7 +92993,7 @@ "opengraph": null, "title": "Grüne Ortsverband Ostfildern: HOME" }, - "duration": 527, + "duration": 525, "error": null, "responsive": { "document_width": { @@ -92867,7 +93016,7 @@ "opengraph": null, "title": "Grüne Ortsverband Ostfildern: HOME" }, - "duration": 979, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -92916,7 +93065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 753 + "value": 702 }, "RESPONSIVE": { "score": 1, @@ -92978,7 +93127,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -92986,7 +93135,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -93014,7 +93163,7 @@ "opengraph": null, "title": "" }, - "duration": 371, + "duration": 333, "error": null, "responsive": { "document_width": { @@ -93063,7 +93212,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 333 }, "RESPONSIVE": { "score": 1, @@ -93148,7 +93297,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN · Ortsverband Aurich" }, - "duration": 260, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -93171,7 +93320,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN · Ortsverband Aurich" }, - "duration": 143, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -93222,7 +93371,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 253 }, "RESPONSIVE": { "score": 0, @@ -93262,9 +93411,9 @@ "resolved_hostname": "www.gruene-ov-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ov-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -93306,7 +93455,7 @@ "opengraph": null, "title": "Ortsverband Stade: Aktuelles" }, - "duration": 219, + "duration": 252, "error": null, "responsive": { "document_width": { @@ -93329,6 +93478,1069 @@ "level": "DE:ORTSVERBAND", "state": "Niedersachsen" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 252 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-overath.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-overath.de" + }, + "www.gruene-overath.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-overath.de" + } + }, + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "http://gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "http://www.gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "https://gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "https://www.gruene-overath.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Die Grünen - Overath: Die Grünen - Overath" + }, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" + } + ] + }, + "input_url": "http://www.gruene-overath.de", + "meta": { + "city": "Overath", + "district": "Rhein-Berg", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-owl.de/aktuell-aus-owl/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-owl.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-owl.de" + }, + "www.gruene-owl.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-owl.de" + } + }, + "icons": { + "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "http://gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "http://www.gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "https://gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "https://www.gruene-owl.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Die GRÜNEN OWL: Aktuell aus OWL" + }, + "duration": 234, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-owl.de/aktuell-aus-owl/" + } + ] + }, + "input_url": "http://www.gruene-owl.de/", + "meta": { + "city": null, + "district": null, + "level": "DE:BEZIRKSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 234 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-oyten.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-oyten.de/comments/feed/", + "http://www.gruene-oyten.de/feed/" + ], + "hostnames": { + "gruene-oyten.de": { + "aliases": [ + "www.gruene-oyten.de" + ], + "ip_addresses": [ + "81.169.145.78" + ], + "resolvable": true, + "resolved_hostname": "gruene-oyten.de" + }, + "www.gruene-oyten.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "81.169.145.78" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-oyten.de/", + "url": "http://gruene-oyten.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-oyten.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-oyten.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-oyten.de/feed/", + "http://www.gruene-oyten.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Bündnis 90 Die Grünen" + }, + "duration": 134, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1026, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-oyten.de/" + } + ] + }, + "input_url": "http://www.gruene-oyten.de/", + "meta": { + "city": "Oyten", + "district": "Verden", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 134 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 213, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/", + "meta": { + "city": null, + "district": "Peine", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 213 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/edemissen/", + "meta": { + "city": "Edemissen", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 234, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/fuhsetal-ilsede-und-lengede/", + "meta": { + "city": "Fuhsetal", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 234 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 217, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/hohenhameln/", + "meta": { + "city": "Hohenhameln", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 217 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 219, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/peine/", + "meta": { + "city": "Peine", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -93372,409 +94584,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-overath.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-overath.de" - }, - "www.gruene-overath.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-overath.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "http://gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "http://www.gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "https://gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "https://www.gruene-overath.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Die Grünen - Overath: Die Grünen - Overath" - }, - "duration": 217, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" - } - ] - }, - "input_url": "http://www.gruene-overath.de", - "meta": { - "city": "Overath", - "district": "Rhein-Berg", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 217 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-owl.de/aktuell-aus-owl/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-owl.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-owl.de" - }, - "www.gruene-owl.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-owl.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "http://gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "http://www.gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "https://gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "https://www.gruene-owl.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Die GRÜNEN OWL: Aktuell aus OWL" - }, - "duration": 217, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-owl.de/aktuell-aus-owl/" - } - ] - }, - "input_url": "http://www.gruene-owl.de/", - "meta": { - "city": null, - "district": null, - "level": "DE:BEZIRKSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 217 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-oyten.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-oyten.de/comments/feed/", - "http://www.gruene-oyten.de/feed/" - ], - "hostnames": { - "gruene-oyten.de": { - "aliases": [ - "www.gruene-oyten.de" - ], - "ip_addresses": [ - "81.169.145.78" - ], - "resolvable": true, - "resolved_hostname": "gruene-oyten.de" - }, - "www.gruene-oyten.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "81.169.145.78" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-oyten.de/", - "url": "http://gruene-oyten.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-oyten.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-oyten.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-oyten.de/feed/", - "http://www.gruene-oyten.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Bündnis 90 Die Grünen" - }, - "duration": 123, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1026, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-oyten.de/" - } - ] - }, - "input_url": "http://www.gruene-oyten.de/", - "meta": { - "city": "Oyten", - "district": "Verden", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 123 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -93797,9 +94606,9 @@ "resolved_hostname": "www.gruene-peine.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -93841,667 +94650,7 @@ "opengraph": null, "title": "...im Landkreis Peine: Home" }, - "duration": 185, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/", - "meta": { - "city": null, - "district": "Peine", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 185 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 187, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/edemissen/", - "meta": { - "city": "Edemissen", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 187 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 197, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/fuhsetal-ilsede-und-lengede/", - "meta": { - "city": "Fuhsetal", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 197 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 190, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/hohenhameln/", - "meta": { - "city": "Hohenhameln", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 190 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 198, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/peine/", - "meta": { - "city": "Peine", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 198 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 189, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -94549,7 +94698,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -94593,9 +94742,9 @@ "resolved_hostname": "www.gruene-perl.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-perl.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -94641,7 +94790,7 @@ "opengraph": null, "title": "Ortsverband Perl - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 278, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -94688,7 +94837,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 327 }, "RESPONSIVE": { "score": 1, @@ -94732,9 +94881,9 @@ "resolved_hostname": "www.gruene-petershagen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-petershagen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.99.210.26" ], @@ -94792,7 +94941,7 @@ ], "title": "Grüne Petershagen" }, - "duration": 159, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -94840,7 +94989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 159 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -94880,9 +95029,9 @@ "resolved_hostname": "www.gruene-pi.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-pi.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -94924,7 +95073,7 @@ "opengraph": null, "title": "Kreisverband Pinneberg: Home" }, - "duration": 200, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -94972,7 +95121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -95043,7 +95192,7 @@ "urlchecks": [ { "content": null, - "duration": 509, + "duration": 572, "error": null, "responsive": { "document_width": { @@ -95092,7 +95241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 509 + "value": 572 }, "RESPONSIVE": { "score": 0, @@ -95136,9 +95285,7 @@ "resolved_hostname": "www.gruene-pulheim.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "78.46.86.77" ], @@ -95190,7 +95337,7 @@ ], "title": "B90/Die Grünen Pulheim" }, - "duration": 744, + "duration": 634, "error": null, "responsive": { "document_width": { @@ -95237,7 +95384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 744 + "value": 634 }, "RESPONSIVE": { "score": 1, @@ -95322,7 +95469,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen, Stadtverband Rahden" }, - "duration": 72, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -95345,7 +95492,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen, Stadtverband Rahden" }, - "duration": 61, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -95396,7 +95543,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 68 }, "RESPONSIVE": { "score": 0, @@ -95436,9 +95583,9 @@ "resolved_hostname": "www.gruene-rastede.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rastede.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -95480,7 +95627,7 @@ "opengraph": null, "title": "Ortsverband Rastede: Home" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -95528,7 +95675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -95572,9 +95719,9 @@ "resolved_hostname": "www.gruene-ratingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ratingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.227.247.148" ], @@ -95632,7 +95779,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN RATINGEN" }, - "duration": 711, + "duration": 673, "error": null, "responsive": { "document_width": { @@ -95680,7 +95827,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 711 + "value": 673 }, "RESPONSIVE": { "score": 0, @@ -95719,9 +95866,9 @@ "resolvable": false } }, - "icons": [ - "0967129c188cec05434bcef22632e797.ico" - ], + "icons": { + "http://www.gruene-raunheim.de/favicon.ico?version=20180817100229": "0967129c188cec05434bcef22632e797.ico" + }, "ipv4_addresses": [ "62.113.220.110" ], @@ -95758,7 +95905,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Raunheim" }, - "duration": 114, + "duration": 108, "error": null, "responsive": { "document_width": { @@ -95807,7 +95954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 114 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -95847,9 +95994,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-rv.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -95881,7 +96028,7 @@ "opengraph": null, "title": "GRÜNE RAVENSBURG: START" }, - "duration": 393, + "duration": 459, "error": null, "responsive": { "document_width": { @@ -95930,7 +96077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 393 + "value": 459 }, "RESPONSIVE": { "score": 1, @@ -96048,9 +96195,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-recklinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-recklinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -96096,7 +96244,7 @@ ], "title": "Grüne Recklinghausen - Ortsverband RecklinghausenGrüne Recklinghausen" }, - "duration": 395, + "duration": 415, "error": null, "responsive": { "document_width": { @@ -96134,7 +96282,7 @@ ], "title": "Grüne Recklinghausen - Ortsverband RecklinghausenGrüne Recklinghausen" }, - "duration": 531, + "duration": 456, "error": null, "responsive": { "document_width": { @@ -96182,7 +96330,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 463 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -96227,9 +96375,9 @@ "resolved_hostname": "www.gruene-regensburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-regensburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.160.71.66" ], @@ -96288,7 +96436,7 @@ ], "title": "Aktuelles | Grüne Stadtverband Regensburg" }, - "duration": 309, + "duration": 371, "error": null, "responsive": { "document_width": { @@ -96336,7 +96484,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 371 }, "RESPONSIVE": { "score": 1, @@ -96381,9 +96529,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -96400,7 +96548,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96408,7 +96556,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96442,7 +96590,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 531, + "duration": 537, "error": null, "responsive": { "document_width": { @@ -96490,7 +96638,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 531 + "value": 537 }, "RESPONSIVE": { "score": 1, @@ -96535,9 +96683,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -96554,7 +96702,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96562,7 +96710,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96596,7 +96744,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 521, + "duration": 524, "error": null, "responsive": { "document_width": { @@ -96644,7 +96792,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 521 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -96685,9 +96833,10 @@ "resolved_hostname": "www.gruene-rehburg-loccum.de" } }, - "icons": [ - "aa4dd4b2b0e19aa2614b95745682b984.jpg" - ], + "icons": { + "https://gruene-rehburg-loccum.de/fiveicon.jpg": "aa4dd4b2b0e19aa2614b95745682b984.jpg", + "https://www.gruene-rehburg-loccum.de/fiveicon.jpg": "aa4dd4b2b0e19aa2614b95745682b984.jpg" + }, "ipv4_addresses": [ "217.160.0.143" ], @@ -96726,7 +96875,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN in Rehburg-Loccum" }, - "duration": 149, + "duration": 171, "error": null, "responsive": { "document_width": { @@ -96749,7 +96898,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN in Rehburg-Loccum" }, - "duration": 144, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -96798,7 +96947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 146 + "value": 174 }, "RESPONSIVE": { "score": 0, @@ -96879,7 +97028,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 83, + "duration": 85, "error": null, "responsive": { "document_width": { @@ -96902,7 +97051,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 79, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -96925,7 +97074,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 175, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -96948,7 +97097,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 179, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -96998,7 +97147,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 129 + "value": 133 }, "RESPONSIVE": { "score": 0, @@ -97043,9 +97192,10 @@ "resolved_hostname": "www.gruene-reinheim.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://gruene-reinheim.de/templates/gruene/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "http://www.gruene-reinheim.de/templates/gruene/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "217.160.223.1" ], @@ -97094,7 +97244,7 @@ "opengraph": null, "title": "Grüne Reinheim - Willkommen bei den Grünen Reinheim!" }, - "duration": 238, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -97121,7 +97271,7 @@ "opengraph": null, "title": "Grüne Reinheim - Willkommen bei den Grünen Reinheim!" }, - "duration": 230, + "duration": 455, "error": null, "responsive": { "document_width": { @@ -97170,7 +97320,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 338 }, "RESPONSIVE": { "score": 0, @@ -97249,7 +97399,7 @@ "opengraph": null, "title": "GRÜNE REK: Grüne im Rhein-Erft-Kreis" }, - "duration": 404, + "duration": 415, "error": null, "responsive": { "document_width": { @@ -97272,7 +97422,7 @@ "opengraph": null, "title": "GRÜNE REK: Grüne im Rhein-Erft-Kreis" }, - "duration": 458, + "duration": 477, "error": null, "responsive": { "document_width": { @@ -97322,7 +97472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 431 + "value": 446 }, "RESPONSIVE": { "score": 0, @@ -97383,7 +97533,7 @@ "urlchecks": [ { "content": null, - "duration": 53, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -97399,7 +97549,7 @@ }, { "content": null, - "duration": 128, + "duration": 144, "error": null, "responsive": { "document_width": { @@ -97447,9 +97597,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 90 + "value": 106 }, "RESPONSIVE": { "score": 0, @@ -97466,7 +97616,7 @@ "value": false } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -97490,9 +97640,9 @@ "resolved_hostname": "www.gruene-remscheid.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-remscheid.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97534,7 +97684,7 @@ "opengraph": null, "title": "GRÜNE Remscheid: Startseite" }, - "duration": 227, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -97582,7 +97732,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -97623,9 +97773,10 @@ "resolved_hostname": "www.gruene-renningen.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://gruene-renningen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "http://www.gruene-renningen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "134.119.234.23" ], @@ -97670,7 +97821,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Renningen" }, - "duration": 110, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -97693,7 +97844,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Renningen" }, - "duration": 122, + "duration": 157, "error": null, "responsive": { "document_width": { @@ -97743,7 +97894,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 116 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -97783,9 +97934,9 @@ "resolved_hostname": "www.gruene-rhein-lahn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rhein-lahn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97827,7 +97978,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Lahn: Home" }, - "duration": 211, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -97875,7 +98026,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -97915,9 +98066,9 @@ "resolved_hostname": "www.gruene-rheinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rheinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97959,7 +98110,7 @@ "opengraph": null, "title": "Grüner Ortsverband Rheinbach: Was uns bewegt" }, - "duration": 262, + "duration": 621, "error": null, "responsive": { "document_width": { @@ -98007,7 +98158,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 621 }, "RESPONSIVE": { "score": 1, @@ -98050,9 +98201,9 @@ "resolved_hostname": "www.gruene-rheinberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98097,7 +98248,7 @@ "opengraph": null, "title": "Die Grünen in Rheinberg: Startseite" }, - "duration": 229, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -98144,7 +98295,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -98184,9 +98335,9 @@ "resolved_hostname": "www.gruene-rheine.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98228,7 +98379,7 @@ "opengraph": null, "title": "ORTSVERBAND RHEINE: AKTUELLES" }, - "duration": 241, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -98276,7 +98427,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -98320,9 +98471,9 @@ "resolved_hostname": "www.gruene-rheurdt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rheurdt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -98381,7 +98532,7 @@ ], "title": "Grüne Rheurdt" }, - "duration": 871, + "duration": 771, "error": null, "responsive": { "document_width": { @@ -98429,7 +98580,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 871 + "value": 771 }, "RESPONSIVE": { "score": 1, @@ -98476,9 +98627,10 @@ "resolved_hostname": "www.gruene-rkn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rkn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-rkn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.93" ], @@ -98530,7 +98682,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 79, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -98563,7 +98715,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 157, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -98611,7 +98763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 118 + "value": 144 }, "RESPONSIVE": { "score": 1, @@ -98651,9 +98803,9 @@ "resolved_hostname": "www.gruene-roethenbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98695,7 +98847,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: OV Röthenbach/Pegnitz" }, - "duration": 189, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -98743,7 +98895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -98783,9 +98935,9 @@ "resolved_hostname": "www.gruene-ronnenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ronnenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98827,7 +98979,7 @@ "opengraph": null, "title": "Grüne Ronnenberg: Home" }, - "duration": 191, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -98875,7 +99027,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -98919,9 +99071,9 @@ "resolved_hostname": "www.gruene-rosdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rosdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "93.90.176.171" ], @@ -98979,7 +99131,7 @@ ], "title": "Ortsverband Rosdorf" }, - "duration": 409, + "duration": 330, "error": null, "responsive": { "document_width": { @@ -99027,7 +99179,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 409 + "value": 330 }, "RESPONSIVE": { "score": 1, @@ -99072,9 +99224,10 @@ "resolved_hostname": "www.gruene-rosengarten.de" } }, - "icons": [ - "bfa850393d45e44a8086f3669d884d17.ico" - ], + "icons": { + "http://gruene-rosengarten.de/favicon.ico": "bfa850393d45e44a8086f3669d884d17.ico", + "http://www.gruene-rosengarten.de/favicon.ico": "bfa850393d45e44a8086f3669d884d17.ico" + }, "ipv4_addresses": [ "87.106.158.138" ], @@ -99091,7 +99244,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99099,7 +99252,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99126,7 +99279,7 @@ "opengraph": null, "title": "Home" }, - "duration": 480, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -99153,7 +99306,7 @@ "opengraph": null, "title": "Home" }, - "duration": 400, + "duration": 284, "error": null, "responsive": { "document_width": { @@ -99202,7 +99355,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 276 }, "RESPONSIVE": { "score": 1, @@ -99242,9 +99395,9 @@ "resolved_hostname": "www.gruene-rostock.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rostock.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -99286,7 +99439,7 @@ "opengraph": null, "title": "Grüne KV Rostock: Startseite" }, - "duration": 190, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -99334,7 +99487,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -99378,9 +99531,9 @@ "resolved_hostname": "www.gruene-rotenburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.rotenburger-gruene.de/wp-content/themes/1508319867-iO23Vb/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.218.252.63" ], @@ -99439,7 +99592,7 @@ ], "title": "Bündnis 90 / die Grünen in Rotenburg an der WümmeDie Grünen in Rotenburg" }, - "duration": 14, + "duration": 873, "error": null, "responsive": { "document_width": { @@ -99484,9 +99637,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 14 + "value": 873 }, "RESPONSIVE": { "score": 1, @@ -99502,7 +99655,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -99529,7 +99682,7 @@ "resolvable_urls": [ { "error": { - "message": "HTTPConnectionPool(host='gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPConnectionPool(host='gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99537,7 +99690,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='www.gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPConnectionPool(host='www.gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99545,7 +99698,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99553,7 +99706,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99640,9 +99793,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-rottweil.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-rottweil.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -99674,7 +99828,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rottweil: KV Rottweil" }, - "duration": 493, + "duration": 414, "error": null, "responsive": { "document_width": { @@ -99697,7 +99851,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rottweil: KV Rottweil" }, - "duration": 554, + "duration": 553, "error": null, "responsive": { "document_width": { @@ -99746,7 +99900,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 484 }, "RESPONSIVE": { "score": 1, @@ -99791,9 +99945,9 @@ "resolved_hostname": "www.gruene-ruhr.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ruhr.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -99851,7 +100005,7 @@ ], "title": "Bezirksverband Ruhrgebiet von BÜNDNIS 90/DIE GRÜNEN NRW › Die Grünen Ruhr" }, - "duration": 59, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -99899,7 +100053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -99986,7 +100140,7 @@ "opengraph": null, "title": "Anmelden ‹ Grüne Saalekreis — WordPress" }, - "duration": 291, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -100036,7 +100190,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 291 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -100081,9 +100235,10 @@ "resolved_hostname": "www.gruene-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.56" ], @@ -100110,7 +100265,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -100136,13 +100291,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 398, + "duration": 420, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -100170,13 +100325,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 462, + "duration": 522, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -100218,7 +100373,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -100288,7 +100443,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen, Ortsverband Sachsenheim" }, - "duration": 55, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -100338,7 +100493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 55 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -100381,9 +100536,9 @@ "resolvable": false } }, - "icons": [ - "f5d6e284c9ac6d8c7613ef1eba7cee49.ico" - ], + "icons": { + "https://gruene-saerbeck.de/templates/tk_minimalist/favicon.ico": "f5d6e284c9ac6d8c7613ef1eba7cee49.ico" + }, "ipv4_addresses": [ "81.169.145.93" ], @@ -100416,7 +100571,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - OV Saerbeck" }, - "duration": 293, + "duration": 146, "error": null, "responsive": { "document_width": { @@ -100463,7 +100618,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 293 + "value": 146 }, "RESPONSIVE": { "score": 0, @@ -100504,9 +100659,9 @@ "resolved_hostname": "www.gruene-salzhausen-hanstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-salzhausen-hanstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -100548,7 +100703,7 @@ "opengraph": null, "title": "Grüne Salzhausen-Hanstedt: Home" }, - "duration": 233, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -100596,7 +100751,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -100638,9 +100793,9 @@ "resolvable": false } }, - "icons": [ - "4f4203fe1c43523919b3905a8b3e63a9.ico" - ], + "icons": { + "http://www.gruene-sassenberg.de/fileadmin/templates/img/favicon.ico": "4f4203fe1c43523919b3905a8b3e63a9.ico" + }, "ipv4_addresses": [ "87.119.201.168" ], @@ -100675,7 +100830,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 85, + "duration": 99, "error": null, "responsive": { "document_width": { @@ -100723,7 +100878,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 99 }, "RESPONSIVE": { "score": 0, @@ -100764,9 +100919,9 @@ "resolved_hostname": "www.gruene-schaumburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schaumburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -100808,7 +100963,7 @@ "opengraph": null, "title": "Grüne Schaumburg: Aktuelles" }, - "duration": 190, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -100856,7 +101011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -100944,7 +101099,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Schermbeck" }, - "duration": 65, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -101018,7 +101173,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 72 }, "RESPONSIVE": { "score": 1, @@ -101063,9 +101218,10 @@ "resolved_hostname": "www.gruene-schoeppingen.de" } }, - "icons": [ - "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico" - ], + "icons": { + "http://gruene-schoeppingen.de/favicon.ico": "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico", + "http://www.gruene-schoeppingen.de/favicon.ico": "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico" + }, "ipv4_addresses": [ "212.83.36.41" ], @@ -101114,7 +101270,7 @@ "opengraph": null, "title": "Willkommen bei BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 204, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -101141,7 +101297,7 @@ "opengraph": null, "title": "Willkommen bei BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 199, + "duration": 370, "error": null, "responsive": { "document_width": { @@ -101190,7 +101346,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 386 }, "RESPONSIVE": { "score": 0, @@ -101234,9 +101390,9 @@ "resolved_hostname": "www.gruene-schopfheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-schopfheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.57" ], @@ -101294,7 +101450,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN" }, - "duration": 404, + "duration": 421, "error": null, "responsive": { "document_width": { @@ -101342,7 +101498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 404 + "value": 421 }, "RESPONSIVE": { "score": 1, @@ -101382,9 +101538,9 @@ "resolved_hostname": "www.gruene-schuettorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schuettorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -101426,7 +101582,7 @@ "opengraph": null, "title": "Grüne Schüttorf: Home" }, - "duration": 157, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -101474,7 +101630,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -101515,9 +101671,10 @@ "resolved_hostname": "www.gruene-schurwald.de" } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "http://gruene-schurwald.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "http://www.gruene-schurwald.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "80.67.28.149" ], @@ -101565,7 +101722,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen Schurwald!" }, - "duration": 423, + "duration": 339, "error": null, "responsive": { "document_width": { @@ -101588,7 +101745,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen Schurwald!" }, - "duration": 347, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -101638,7 +101795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 385 + "value": 340 }, "RESPONSIVE": { "score": 1, @@ -101681,9 +101838,9 @@ "resolved_hostname": "www.gruene-schwabing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-schwabing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -101820,9 +101977,9 @@ "resolved_hostname": "www.gruene-schwaebisch-gmuend.de" } }, - "icons": [ - "dc897b554b4adb29245db4db1a550bd6.ico" - ], + "icons": { + "http://www.gruene-schwaebisch-gmuend.de/favicon.ico": "dc897b554b4adb29245db4db1a550bd6.ico" + }, "ipv4_addresses": [ "212.87.154.3" ], @@ -101867,7 +102024,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Kreisverband Schwäbisch Gmünd" }, - "duration": 540, + "duration": 518, "error": null, "responsive": { "document_width": { @@ -101890,7 +102047,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Kreisverband Schwäbisch Gmünd" }, - "duration": 69, + "duration": 550, "error": null, "responsive": { "document_width": { @@ -101940,7 +102097,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 304 + "value": 534 }, "RESPONSIVE": { "score": 0, @@ -101981,9 +102138,7 @@ "resolved_hostname": "www.gruene-schwalmstadt.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "81.20.85.140" ], @@ -102028,7 +102183,7 @@ "opengraph": null, "title": "Home | Bündnis 90 - Die Grüne SCHWALMSTADT - Nichts ist grüner als Grün selber!" }, - "duration": 560, + "duration": 19, "error": null, "responsive": { "document_width": { @@ -102051,7 +102206,7 @@ "opengraph": null, "title": "Home | Bündnis 90 - Die Grüne SCHWALMSTADT - Nichts ist grüner als Grün selber!" }, - "duration": 649, + "duration": 749, "error": null, "responsive": { "document_width": { @@ -102101,7 +102256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 384 }, "RESPONSIVE": { "score": 0, @@ -102255,9 +102410,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-schwarzwald-baar.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-schwarzwald-baar.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -102289,7 +102445,7 @@ "opengraph": null, "title": "Grüne Kreisverband Schwarzwald Baar: Kreisverband Schwarzwald-Baar" }, - "duration": 473, + "duration": 419, "error": null, "responsive": { "document_width": { @@ -102312,7 +102468,7 @@ "opengraph": null, "title": "Grüne Kreisverband Schwarzwald Baar: Kreisverband Schwarzwald-Baar" }, - "duration": 609, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -102361,7 +102517,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 344 }, "RESPONSIVE": { "score": 1, @@ -102403,9 +102559,10 @@ "resolved_hostname": "www.gruene-schwerin.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwerin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-schwerin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102447,7 +102604,7 @@ "opengraph": null, "title": "Grüne in Schwerin: Startseite" }, - "duration": 205, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -102470,7 +102627,7 @@ "opengraph": null, "title": "Grüne in Schwerin: Startseite" }, - "duration": 198, + "duration": 248, "error": null, "responsive": { "document_width": { @@ -102519,7 +102676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -102560,9 +102717,10 @@ "resolved_hostname": "www.gruene-schwerte.de" } }, - "icons": [ - "773ffeda045b702523518f1fc217ae54.ico" - ], + "icons": { + "http://gruene-schwerte.de/assets/favicon.ico?v=2": "773ffeda045b702523518f1fc217ae54.ico", + "http://www.gruene-schwerte.de/assets/favicon.ico?v=2": "773ffeda045b702523518f1fc217ae54.ico" + }, "ipv4_addresses": [ "194.9.124.64" ], @@ -102610,7 +102768,7 @@ "opengraph": null, "title": "Herzlich willkommen!" }, - "duration": 56, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -102633,7 +102791,7 @@ "opengraph": null, "title": "Herzlich willkommen!" }, - "duration": 76, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -102683,7 +102841,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 64 }, "RESPONSIVE": { "score": 1, @@ -102723,9 +102881,9 @@ "resolved_hostname": "www.gruene-seenplatte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seenplatte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102767,7 +102925,7 @@ "opengraph": null, "title": "Meckl. Seenplatte: Startseite" }, - "duration": 189, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -102815,7 +102973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -102855,9 +103013,9 @@ "resolved_hostname": "www.gruene-seevetal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seevetal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102899,7 +103057,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Seevetal - Aktuell: Startseite" }, - "duration": 196, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -102947,7 +103105,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -102987,9 +103145,9 @@ "resolved_hostname": "www.gruene-sehnde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-sehnde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103031,7 +103189,7 @@ "opengraph": null, "title": "Ortsverband Sehnde: Home" }, - "duration": 206, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -103079,7 +103237,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -103119,9 +103277,9 @@ "resolved_hostname": "www.gruene-sg-fintel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sg-fintel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103163,7 +103321,7 @@ "opengraph": null, "title": "Ortsverband SG Fintel: Startseite" }, - "duration": 172, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -103211,7 +103369,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -103251,9 +103409,9 @@ "resolved_hostname": "www.gruene-sha.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sha.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103295,7 +103453,7 @@ "opengraph": null, "title": "KV Schwäbisch Hall: Home" }, - "duration": 224, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -103343,7 +103501,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -103413,7 +103571,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 52, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -103463,7 +103621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 52 + "value": 61 }, "RESPONSIVE": { "score": 0, @@ -103506,9 +103664,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -103543,7 +103701,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 449, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -103591,7 +103749,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 449 + "value": 435 }, "RESPONSIVE": { "score": 0, @@ -103635,9 +103793,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-sigmaringen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.93" ], @@ -103683,7 +103841,7 @@ ], "title": "Kreisverband Sigmaringen" }, - "duration": 306, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -103731,7 +103889,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 280 }, "RESPONSIVE": { "score": 1, @@ -103776,9 +103934,9 @@ "resolved_hostname": "www.gruene-simmerath.de" } }, - "icons": [ - "732bd7f50ca99981afb8252c153a7fb7.png" - ], + "icons": { + "http://gruene-region-aachen.de/simmerath/wp/wp-content/uploads/2015/01/favicon.png": "732bd7f50ca99981afb8252c153a7fb7.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -103795,7 +103953,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -103803,7 +103961,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -103830,7 +103988,7 @@ "opengraph": null, "title": "GRUENE SIMMERATH" }, - "duration": 465, + "duration": 522, "error": null, "responsive": { "document_width": { @@ -103857,7 +104015,7 @@ "opengraph": null, "title": "GRUENE SIMMERATH" }, - "duration": 443, + "duration": 498, "error": null, "responsive": { "document_width": { @@ -103906,7 +104064,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 510 }, "RESPONSIVE": { "score": 1, @@ -103947,9 +104105,10 @@ "resolved_hostname": "www.gruene-sindelfingen.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://gruene-sindelfingen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "http://www.gruene-sindelfingen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "134.119.234.23" ], @@ -103994,7 +104153,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Sindelfingen" }, - "duration": 126, + "duration": 110, "error": null, "responsive": { "document_width": { @@ -104017,7 +104176,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Sindelfingen" }, - "duration": 170, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -104067,7 +104226,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 135 }, "RESPONSIVE": { "score": 0, @@ -104107,9 +104266,9 @@ "resolved_hostname": "www.gruene-sl-fl.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-sl-fl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104151,7 +104310,7 @@ "opengraph": null, "title": "Grüne Schleswig-Flensburg: Home" }, - "duration": 201, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -104199,7 +104358,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -104269,7 +104428,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Aktuelles" }, - "duration": 169, + "duration": 150, "error": null, "responsive": { "document_width": { @@ -104319,7 +104478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 150 }, "RESPONSIVE": { "score": 0, @@ -104360,9 +104519,9 @@ "resolved_hostname": "www.gruene-solingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-solingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104404,7 +104563,7 @@ "opengraph": null, "title": "DIE GRÜNEN SOLINGEN: PORTAL" }, - "duration": 189, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -104452,7 +104611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -104496,9 +104655,9 @@ "resolved_hostname": "www.gruene-sonsbeck.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-sonsbeck.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.57" ], @@ -104556,7 +104715,7 @@ ], "title": "Bündnis 90 / Die Grünen Sonsbeck" }, - "duration": 835, + "duration": 817, "error": null, "responsive": { "document_width": { @@ -104604,7 +104763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 835 + "value": 817 }, "RESPONSIVE": { "score": 1, @@ -104645,6 +104804,7 @@ "resolved_hostname": "www.gruene-sonthofen.de" } }, + "icons": {}, "ipv4_addresses": [ "217.160.231.234" ], @@ -104689,7 +104849,7 @@ "opengraph": null, "title": "Buendnis 90 / Die Gruenen in Sonthofen – News" }, - "duration": 232, + "duration": 263, "error": null, "responsive": { "document_width": { @@ -104712,7 +104872,7 @@ "opengraph": null, "title": "Buendnis 90 / Die Gruenen in Sonthofen – News" }, - "duration": 370, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -104746,9 +104906,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -104763,7 +104922,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 250 }, "RESPONSIVE": { "score": 0, @@ -104779,7 +104938,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -104807,9 +104966,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-sprockhoevel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -104855,7 +105014,7 @@ ], "title": "Grüne Sprockhövel" }, - "duration": 309, + "duration": 425, "error": null, "responsive": { "document_width": { @@ -104903,7 +105062,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 425 }, "RESPONSIVE": { "score": 1, @@ -104944,9 +105103,9 @@ "resolved_hostname": "www.gruene-stadt-leer.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104988,7 +105147,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Startseite" }, - "duration": 232, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -105036,7 +105195,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 232 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -105080,9 +105239,9 @@ "resolved_hostname": "www.gruene-stadtlohn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-stadtlohn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -105141,7 +105300,7 @@ ], "title": "Bündnis 90/Die Grünen – Stadtlohn" }, - "duration": 474, + "duration": 470, "error": null, "responsive": { "document_width": { @@ -105189,7 +105348,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 470 }, "RESPONSIVE": { "score": 1, @@ -105229,9 +105388,9 @@ "resolved_hostname": "www.gruene-steinburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-steinburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105273,7 +105432,7 @@ "opengraph": null, "title": "Kreisverband Steinburg: Home / Aktuelles" }, - "duration": 168, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -105321,7 +105480,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -105361,9 +105520,9 @@ "resolved_hostname": "www.gruene-steinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105405,7 +105564,7 @@ "opengraph": null, "title": "Ortsverband Steinfurt: Home" }, - "duration": 194, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -105453,7 +105612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -105510,7 +105669,7 @@ }, { "error": { - "message": "('Connection aborted.', OSError(0, 'Error'))", + "message": "HTTPSConnectionPool(host='gruene-steinlach-wiesaz.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -105518,7 +105677,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-steinlach-wiesaz.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "('Connection aborted.', OSError(0, 'Error'))", "type": "" }, "redirects_to": null, @@ -105538,7 +105697,7 @@ "opengraph": null, "title": "gruene-steinlach-wiesaz.de" }, - "duration": 84, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -105561,7 +105720,7 @@ "opengraph": null, "title": "www.gruene-steinlach-wiesaz.de" }, - "duration": 95, + "duration": 88, "error": null, "responsive": { "document_width": { @@ -105612,7 +105771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 90 + "value": 96 }, "RESPONSIVE": { "score": 0, @@ -105652,9 +105811,9 @@ "resolved_hostname": "www.gruene-stormarn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stormarn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105696,7 +105855,7 @@ "opengraph": null, "title": "Kreisverband Stormarn: Home" }, - "duration": 228, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -105744,7 +105903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -105832,7 +105991,7 @@ "opengraph": null, "title": "" }, - "duration": 75, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -105855,7 +106014,7 @@ "opengraph": null, "title": "" }, - "duration": 68, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -105906,7 +106065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 72 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -105946,9 +106105,9 @@ "resolved_hostname": "www.gruene-telgte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-telgte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105990,7 +106149,7 @@ "opengraph": null, "title": "Grüner Ortsverband Telgte: Startseite" }, - "duration": 246, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -106038,7 +106197,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 246 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -106082,9 +106241,9 @@ "resolved_hostname": "www.gruene-tettnang.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-tettnang.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.254.50.201" ], @@ -106143,7 +106302,7 @@ ], "title": "Bündnis 90 / Die Grünen Tettnang" }, - "duration": 329, + "duration": 471, "error": null, "responsive": { "document_width": { @@ -106191,7 +106350,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 329 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -106389,7 +106548,7 @@ "opengraph": null, "title": "Home - Bündnis 90 / Die Grünen KV Treptow-Köpenick von Berlin" }, - "duration": 572, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -106439,7 +106598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 572 + "value": 578 }, "RESPONSIVE": { "score": 0, @@ -106483,9 +106642,9 @@ "resolved_hostname": "www.gruene-ts.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-ts.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.253.41" ], @@ -106547,7 +106706,7 @@ ], "title": "Bündnis 90/Die Grünen - Tempelhof-Schöneberg" }, - "duration": 268, + "duration": 418, "error": null, "responsive": { "document_width": { @@ -106595,7 +106754,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 268 + "value": 418 }, "RESPONSIVE": { "score": 1, @@ -106635,6 +106794,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -106663,7 +106823,7 @@ "opengraph": null, "title": "Grüne Kreis Tuttlingen: Aktuelles" }, - "duration": 411, + "duration": 368, "error": null, "responsive": { "document_width": { @@ -106686,7 +106846,7 @@ "opengraph": null, "title": "Grüne Kreis Tuttlingen: Aktuelles" }, - "duration": 444, + "duration": 431, "error": null, "responsive": { "document_width": { @@ -106720,9 +106880,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -106736,7 +106895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 400 }, "RESPONSIVE": { "score": 0, @@ -106753,7 +106912,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -106777,9 +106936,9 @@ "resolved_hostname": "www.gruene-ulm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ulm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -106821,7 +106980,7 @@ "opengraph": null, "title": "Grüne Ulm: Termine" }, - "duration": 178, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -106869,7 +107028,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 178 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -106963,7 +107122,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Groß-Umstadt" }, - "duration": 169, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -106994,7 +107153,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Groß-Umstadt" }, - "duration": 210, + "duration": 248, "error": null, "responsive": { "document_width": { @@ -107043,7 +107202,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -107090,6 +107249,7 @@ "resolved_hostname": "www.gruene-unna.de" } }, + "icons": {}, "ipv4_addresses": [ "195.34.83.119" ], @@ -107141,7 +107301,7 @@ ], "title": "Bündnis 90/Die Grünen Unna" }, - "duration": 309, + "duration": 463, "error": null, "responsive": { "document_width": { @@ -107174,7 +107334,7 @@ ], "title": "Bündnis 90/Die Grünen Unna" }, - "duration": 376, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -107208,9 +107368,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -107223,7 +107382,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 422 }, "RESPONSIVE": { "score": 0, @@ -107239,7 +107398,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -107262,9 +107421,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-vaihingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -107296,7 +107455,7 @@ "opengraph": null, "title": "Grüne OV Vaihingen Enz: gruene-vaihingen.de" }, - "duration": 563, + "duration": 599, "error": null, "responsive": { "document_width": { @@ -107344,7 +107503,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 563 + "value": 599 }, "RESPONSIVE": { "score": 1, @@ -107390,9 +107549,9 @@ "resolved_hostname": "www.gruene-velbert.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-velbert.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.139.242" ], @@ -107451,7 +107610,7 @@ ], "title": "Die Grünen in Velbert |" }, - "duration": 104, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -107499,7 +107658,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 104 + "value": 103 }, "RESPONSIVE": { "score": 1, @@ -107584,7 +107743,7 @@ "opengraph": null, "title": "gruene-vellmar.de" }, - "duration": 63, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -107607,7 +107766,7 @@ "opengraph": null, "title": "gruene-vellmar.de" }, - "duration": 107, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -107658,7 +107817,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -107702,9 +107861,9 @@ "resolved_hostname": "www.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -107721,7 +107880,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -107729,7 +107888,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -107763,7 +107922,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 713, + "duration": 492, "error": null, "responsive": { "document_width": { @@ -107811,7 +107970,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 492 }, "RESPONSIVE": { "score": 1, @@ -107855,9 +108014,9 @@ "resolved_hostname": "www.gruene-versmold.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-versmold.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.7" ], @@ -107916,7 +108075,7 @@ ], "title": "Die Versmolder GRÜNEN" }, - "duration": 471, + "duration": 384, "error": null, "responsive": { "document_width": { @@ -107964,7 +108123,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 471 + "value": 384 }, "RESPONSIVE": { "score": 1, @@ -108138,7 +108297,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108146,7 +108305,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108173,7 +108332,7 @@ "opengraph": null, "title": "Gruene Voerde" }, - "duration": 514, + "duration": 524, "error": null, "responsive": { "document_width": { @@ -108222,7 +108381,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -108308,7 +108467,7 @@ ], "title": "Grüne Vogelsberg" }, - "duration": 221, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -108357,7 +108516,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -108400,9 +108559,9 @@ "resolved_hostname": "www.gruene-vogtland.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-vogtland.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -108450,7 +108609,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Vogtland" }, - "duration": 220, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -108498,7 +108657,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 257 }, "RESPONSIVE": { "score": 0, @@ -108537,9 +108696,9 @@ "resolvable": false } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vorpommern-greifswald.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -108571,7 +108730,7 @@ "opengraph": null, "title": "KV Vorpommern-Greifswald: Startseite" }, - "duration": 199, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -108619,7 +108778,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -108660,9 +108819,9 @@ "resolved_hostname": "www.gruene-vorpommern-ruegen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vorpommern-ruegen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -108704,7 +108863,7 @@ "opengraph": null, "title": "Grüne Vorpommern-Rügen: Startseite" }, - "duration": 192, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -108752,7 +108911,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -108793,9 +108952,9 @@ "resolved_hostname": "www.gruene-vreden.de" } }, - "icons": [ - "7043aa439c45317d0495a544e6db92e7.ico" - ], + "icons": { + "http://www.gruene-vreden.de/favicon.ico": "7043aa439c45317d0495a544e6db92e7.ico" + }, "ipv4_addresses": [ "194.116.187.24" ], @@ -108812,7 +108971,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108820,7 +108979,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108840,7 +108999,7 @@ "opengraph": null, "title": "gruene-vreden.de" }, - "duration": 89, + "duration": 128, "error": null, "responsive": { "document_width": { @@ -108863,7 +109022,7 @@ "opengraph": null, "title": "gruene-vreden.de" }, - "duration": 90, + "duration": 89, "error": null, "responsive": { "document_width": { @@ -108911,9 +109070,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 90 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -108929,7 +109088,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -108957,9 +109116,9 @@ "resolved_hostname": "www.gruene-wachtendonk.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-wachtendonk.de/fileadmin/icons/flower.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -109007,7 +109166,7 @@ "opengraph": null, "title": "Aktuell - Bündnis 90/Die Grünen Wachtendonk und Wankum" }, - "duration": 149, + "duration": 614, "error": null, "responsive": { "document_width": { @@ -109033,7 +109192,7 @@ "opengraph": null, "title": "Aktuell - Bündnis 90/Die Grünen Wachtendonk und Wankum" }, - "duration": 152, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -109082,7 +109241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 382 }, "RESPONSIVE": { "score": 0, @@ -109122,9 +109281,9 @@ "resolved_hostname": "www.gruene-waf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-warendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -109166,7 +109325,7 @@ "opengraph": null, "title": "Grüne WAF: Startseite" }, - "duration": 228, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -109214,7 +109373,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -109326,9 +109485,9 @@ "resolved_hostname": "www.gruene-wallenhorst.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-wallenhorst.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -109376,7 +109535,7 @@ ], "title": "Grüne Ortsverband Wallenhorst ::\tWir machen das klar." }, - "duration": 446, + "duration": 429, "error": null, "responsive": { "document_width": { @@ -109402,7 +109561,7 @@ ], "title": "Grüne Ortsverband Wallenhorst ::\tWir machen das klar." }, - "duration": 377, + "duration": 418, "error": null, "responsive": { "document_width": { @@ -109452,7 +109611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 412 + "value": 424 }, "RESPONSIVE": { "score": 0, @@ -109492,9 +109651,9 @@ "resolved_hostname": "www.gruene-walsrode.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-walsrode.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -109536,7 +109695,7 @@ "opengraph": null, "title": "OV Walsrode-Bomlitz: Home" }, - "duration": 200, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -109584,7 +109743,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -109625,9 +109784,9 @@ "resolved_hostname": "www.gruene-wandsbek.de" } }, - "icons": [ - "e219c851b74accc55a3aa6560173a8eb.png" - ], + "icons": { + "http://www.gruene-wandsbek.de/fileadmin/templates/images/favicon.png": "e219c851b74accc55a3aa6560173a8eb.png" + }, "ipv4_addresses": [ "91.250.71.14" ], @@ -109644,7 +109803,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -109652,7 +109811,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -109665,7 +109824,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -109684,11 +109843,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "http://www.gruene-partei-wandsbek.de/fileadmin/templates/images/favicon.png", + "icon": "http://www.gruene-wandsbek.de/fileadmin/templates/images/favicon.png", "opengraph": null, "title": "Grüne Wandsbek" }, - "duration": 183, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -109738,7 +109897,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 109 }, "RESPONSIVE": { "score": 0, @@ -109785,9 +109944,10 @@ "resolved_hostname": "www.gruene-wangen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-wangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "89.238.66.39" ], @@ -109842,7 +110002,7 @@ ], "title": "Kreisverband Wangen" }, - "duration": 121, + "duration": 672, "error": null, "responsive": { "document_width": { @@ -109875,7 +110035,7 @@ ], "title": "Kreisverband Wangen" }, - "duration": 553, + "duration": 820, "error": null, "responsive": { "document_width": { @@ -109923,7 +110083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 337 + "value": 746 }, "RESPONSIVE": { "score": 1, @@ -109963,9 +110123,9 @@ "resolved_hostname": "www.gruene-warendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-warendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -110007,7 +110167,7 @@ "opengraph": null, "title": "Ortsverband Warendorf: Startseite" }, - "duration": 215, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -110055,7 +110215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -110102,9 +110262,10 @@ "resolved_hostname": "www.gruene-wartburgkreis-eisenach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wartburgkreis-eisenach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-wartburgkreis-eisenach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.9" ], @@ -110156,7 +110317,7 @@ ], "title": "- BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 714, + "duration": 665, "error": null, "responsive": { "document_width": { @@ -110189,7 +110350,7 @@ ], "title": "- BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 714, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -110237,7 +110398,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 714 + "value": 700 }, "RESPONSIVE": { "score": 1, @@ -110294,7 +110455,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -110302,7 +110463,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -110322,7 +110483,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Wassenberg" }, - "duration": 64, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -110345,7 +110506,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Wassenberg" }, - "duration": 68, + "duration": 79, "error": null, "responsive": { "document_width": { @@ -110396,7 +110557,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -110440,9 +110601,9 @@ "resolved_hostname": "www.gruene-wasserburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wasserburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.223" ], @@ -110501,7 +110662,7 @@ ], "title": "Die Grünen in Wasserburg" }, - "duration": 524, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -110549,7 +110710,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 540 }, "RESPONSIVE": { "score": 1, @@ -110592,9 +110753,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wegberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -110639,7 +110800,7 @@ ], "title": "Grüne Wegberg" }, - "duration": 468, + "duration": 407, "error": null, "responsive": { "document_width": { @@ -110687,7 +110848,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 468 + "value": 407 }, "RESPONSIVE": { "score": 1, @@ -110773,7 +110934,7 @@ "opengraph": null, "title": null }, - "duration": 60, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -110796,7 +110957,7 @@ "opengraph": null, "title": null }, - "duration": 75, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -110847,7 +111008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -110887,9 +111048,9 @@ "resolved_hostname": "www.gruene-weimar.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weimar.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -110931,7 +111092,7 @@ "opengraph": null, "title": "Grüne in Weimar: Grüne Neuigkeiten" }, - "duration": 195, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -110979,7 +111140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -111019,9 +111180,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-wendlingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-wendlingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -111053,7 +111215,7 @@ "opengraph": null, "title": "Grüne Wendlingen: Home" }, - "duration": 472, + "duration": 815, "error": null, "responsive": { "document_width": { @@ -111076,7 +111238,7 @@ "opengraph": null, "title": "Grüne Wendlingen: Home" }, - "duration": 567, + "duration": 603, "error": null, "responsive": { "document_width": { @@ -111125,7 +111287,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 520 + "value": 709 }, "RESPONSIVE": { "score": 1, @@ -111197,7 +111359,7 @@ "opengraph": null, "title": "gruene-werl" }, - "duration": 54, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -111220,7 +111382,7 @@ "opengraph": null, "title": "gruene-werl" }, - "duration": 116, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -111270,7 +111432,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 94 }, "RESPONSIVE": { "score": 0, @@ -111311,9 +111473,9 @@ "resolved_hostname": "www.gruene-wermelskirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wermelskirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111355,7 +111517,7 @@ "opengraph": null, "title": "Grüne in Wermelskirchen: Home" }, - "duration": 200, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -111403,7 +111565,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -111443,9 +111605,9 @@ "resolved_hostname": "www.gruene-werra-meissner.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-werra-meissner.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111487,7 +111649,7 @@ "opengraph": null, "title": "Grüne Werra-Meißner: Start" }, - "duration": 205, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -111535,7 +111697,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -111579,9 +111741,9 @@ "resolved_hostname": "www.gruene-wesel.de" } }, - "icons": [ - "304c2af408fe19b004c3bccf847b455a.png" - ], + "icons": { + "https://www.gruene-wesel.de/wp-content/uploads/2017/03/Fav.png": "304c2af408fe19b004c3bccf847b455a.png" + }, "ipv4_addresses": [ "185.21.102.152" ], @@ -111627,7 +111789,7 @@ "opengraph": null, "title": "Die Grünen Wesel – Bündnis 90 die Grünen" }, - "duration": 674, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -111674,7 +111836,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 706 }, "RESPONSIVE": { "score": 1, @@ -111714,9 +111876,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111758,7 +111920,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 189, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -111806,7 +111968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -111846,9 +112008,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111890,7 +112052,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 188, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -111938,7 +112100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -111978,9 +112140,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112022,7 +112184,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 187, + "duration": 276, "error": null, "responsive": { "document_width": { @@ -112070,7 +112232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 276 }, "RESPONSIVE": { "score": 1, @@ -112110,9 +112272,9 @@ "resolved_hostname": "www.gruene-westerkappeln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-westerkappeln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112154,7 +112316,7 @@ "opengraph": null, "title": "OV Westerkappeln: Home" }, - "duration": 171, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -112202,7 +112364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -112242,9 +112404,9 @@ "resolved_hostname": "www.gruene-wiefelstede.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wiefelstede.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112286,7 +112448,7 @@ "opengraph": null, "title": "Ortsverband Wiefelstede: Home" }, - "duration": 160, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -112334,7 +112496,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -112374,9 +112536,9 @@ "resolved_hostname": "www.gruene-wiesbaden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wiesbaden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112418,7 +112580,7 @@ "opengraph": null, "title": "DIE GRÜNEN WIESBADEN: Startseite" }, - "duration": 170, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -112466,7 +112628,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -112510,9 +112672,9 @@ "resolved_hostname": "www.gruene-willich.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-willich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.238" ], @@ -112565,7 +112727,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Willich" }, - "duration": 244, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -112612,7 +112774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -112672,7 +112834,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -112680,7 +112842,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -112707,7 +112869,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN WILNSDORF – Aktuelle Sacharbeit der Fraktion in der Kommunalpolitik der Gemeinde Wilnsdorf" }, - "duration": 372, + "duration": 389, "error": null, "responsive": { "document_width": { @@ -112756,7 +112918,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -112799,9 +112961,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-winsen.de/wp-content/themes/1508095540-3wqS2x/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -112846,7 +113008,7 @@ ], "title": "Grüne Winsen" }, - "duration": 154, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -112894,7 +113056,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 154 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -112942,9 +113104,10 @@ "resolved_hostname": "www.gruene-wittenberg.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-wittenberg.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico", + "https://www.gruene-wittenberg.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "178.63.49.198" ], @@ -112995,7 +113158,7 @@ ], "title": "Allgemein | BÜNDNIS 90/DIE GRÜNEN Lutherstadt Wittenberg" }, - "duration": 898, + "duration": 657, "error": null, "responsive": { "document_width": { @@ -113030,7 +113193,7 @@ ], "title": "Allgemein | BÜNDNIS 90/DIE GRÜNEN Lutherstadt Wittenberg" }, - "duration": 452, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -113078,7 +113241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 675 + "value": 475 }, "RESPONSIVE": { "score": 0, @@ -113121,9 +113284,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113165,7 +113328,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 297, + "duration": 328, "error": null, "responsive": { "document_width": { @@ -113212,7 +113375,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 328 }, "RESPONSIVE": { "score": 1, @@ -113256,9 +113419,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113300,7 +113463,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 275, + "duration": 285, "error": null, "responsive": { "document_width": { @@ -113347,7 +113510,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 275 + "value": 285 }, "RESPONSIVE": { "score": 1, @@ -113391,9 +113554,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113435,7 +113598,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 238, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -113482,7 +113645,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 270 }, "RESPONSIVE": { "score": 1, @@ -113526,9 +113689,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113570,11 +113733,11 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 239, + "duration": 321, "error": null, "responsive": { "document_width": { - "1024x768": 1113, + "1024x768": 1128, "1920x1080": 1920, "320x480": 375, "768x1024": 768 @@ -113617,7 +113780,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 321 }, "RESPONSIVE": { "score": 1, @@ -113662,9 +113825,9 @@ "resolved_hostname": "www.gruene-wolfenbuettel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-wolfenbuettel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.206" ], @@ -113723,7 +113886,7 @@ ], "title": "Ortsverband Stadt Wolfenbüttel" }, - "duration": 721, + "duration": 832, "error": null, "responsive": { "document_width": { @@ -113771,7 +113934,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 721 + "value": 832 }, "RESPONSIVE": { "score": 1, @@ -113815,9 +113978,9 @@ "resolved_hostname": "www.gruene-wolfhagen.de" } }, - "icons": [ - "a8845e9b6d45a85718dbc14efe72de99.jpg" - ], + "icons": { + "http://www.gruene-wolfhagen.de/wp-content/uploads/2015/10/cropped-Grüne_OV_Quadrat-e1446235774756-32x32.jpg": "a8845e9b6d45a85718dbc14efe72de99.jpg" + }, "ipv4_addresses": [ "217.160.122.8" ], @@ -113866,7 +114029,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN – Ortsverband Wolfhagen - Partei und Interessenvertretung für Wolfhagenren uns auf Inhalte !" }, - "duration": 642, + "duration": 525, "error": null, "responsive": { "document_width": { @@ -113914,7 +114077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 642 + "value": 525 }, "RESPONSIVE": { "score": 0, @@ -113954,9 +114117,9 @@ "resolved_hostname": "www.gruene-wolfsburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wolfsburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -113998,7 +114161,7 @@ "opengraph": null, "title": "Grüne Wolfsburg: Aktuelles" }, - "duration": 191, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -114046,7 +114209,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -114086,9 +114249,9 @@ "resolved_hostname": "www.gruene-worms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-worms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -114130,7 +114293,7 @@ "opengraph": null, "title": "Die Wormser Grünen: Start" }, - "duration": 202, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -114178,7 +114341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -114218,9 +114381,9 @@ "resolved_hostname": "www.gruene-wst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -114262,7 +114425,7 @@ "opengraph": null, "title": "GRÜNE OV Westerstede: Bündnis90/DIE GRÜNEN Ortsverband Westerstede" }, - "duration": 192, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -114310,7 +114473,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -114354,9 +114517,9 @@ "resolved_hostname": "www.gruene-wuelfrath.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wuelfrath.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "138.201.34.57" ], @@ -114415,7 +114578,7 @@ ], "title": "Bündnis 90 / Die Grünen aus Wülfrath im Bergischen Land - Verantwortungsvolle Politik für BürgerGrüne Wülfrath" }, - "duration": 69, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -114463,7 +114626,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 69 + "value": 63 }, "RESPONSIVE": { "score": 1, @@ -114548,7 +114711,7 @@ "opengraph": null, "title": "Grüne in der Stadt Würselen" }, - "duration": 70, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -114571,7 +114734,7 @@ "opengraph": null, "title": "Grüne in der Stadt Würselen" }, - "duration": 72, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -114622,7 +114785,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 71 + "value": 78 }, "RESPONSIVE": { "score": 0, @@ -114711,7 +114874,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 341, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -114739,7 +114902,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 191, + "duration": 151, "error": null, "responsive": { "document_width": { @@ -114795,7 +114958,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 342, + "duration": 305, "error": null, "responsive": { "document_width": { @@ -114845,7 +115008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 279 + "value": 219 }, "RESPONSIVE": { "score": 0, @@ -114892,9 +115055,10 @@ "resolved_hostname": "www.gruene-xanten.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-xanten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-xanten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.161" ], @@ -114946,7 +115110,7 @@ ], "title": "Bündnis 90 /Die Grünen" }, - "duration": 349, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -114979,7 +115143,7 @@ ], "title": "Bündnis 90 /Die Grünen" }, - "duration": 450, + "duration": 459, "error": null, "responsive": { "document_width": { @@ -115027,7 +115191,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 411 }, "RESPONSIVE": { "score": 1, @@ -115067,9 +115231,9 @@ "resolved_hostname": "www.gruene-zeven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-zeven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -115111,7 +115275,7 @@ "opengraph": null, "title": "Ortsverband Zeven: Home" }, - "duration": 190, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -115159,7 +115323,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -115199,9 +115363,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-zollernalb.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-zollernalb.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -115233,7 +115398,7 @@ "opengraph": null, "title": "Grüne Kreis Zollernalb: HOME" }, - "duration": 433, + "duration": 487, "error": null, "responsive": { "document_width": { @@ -115256,7 +115421,7 @@ "opengraph": null, "title": "Grüne Kreis Zollernalb: HOME" }, - "duration": 725, + "duration": 479, "error": null, "responsive": { "document_width": { @@ -115305,7 +115470,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 579 + "value": 483 }, "RESPONSIVE": { "score": 1, @@ -115349,9 +115514,9 @@ "resolved_hostname": "www.gruene-zwickau.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-zwickau.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -115399,7 +115564,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Zwickau" }, - "duration": 225, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -115447,7 +115612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 222 }, "RESPONSIVE": { "score": 0, @@ -115532,7 +115697,7 @@ "opengraph": null, "title": null }, - "duration": 310, + "duration": 484, "error": null, "responsive": { "document_width": { @@ -115555,7 +115720,7 @@ "opengraph": null, "title": null }, - "duration": 605, + "duration": 457, "error": null, "responsive": { "document_width": { @@ -115606,7 +115771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 458 + "value": 470 }, "RESPONSIVE": { "score": 0, @@ -115657,9 +115822,9 @@ "resolved_hostname": "www.gruene.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "https://www.gruene.de/tmpl/gfx/img/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "89.146.238.38" ], @@ -115716,7 +115881,7 @@ ], "title": "Startseite- BÜNDNIS 90/DIE GRÜNEN Bundespartei" }, - "duration": 215, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -115763,7 +115928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -115807,9 +115972,9 @@ "resolved_hostname": "www.grueneasslar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grueneasslar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.173" ], @@ -115869,7 +116034,7 @@ ], "title": "Die Grünen in Aßlar" }, - "duration": 690, + "duration": 787, "error": null, "responsive": { "document_width": { @@ -115917,7 +116082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 690 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -115957,9 +116122,9 @@ "resolved_hostname": "www.gruenebedburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenebedburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116001,7 +116166,7 @@ "opengraph": null, "title": "DIE GRÜNEN Bedburg: Startseite" }, - "duration": 234, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -116049,7 +116214,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -116093,9 +116258,9 @@ "resolved_hostname": "www.grueneboro.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grueneboro.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.213.107" ], @@ -116112,7 +116277,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -116120,7 +116285,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -116153,7 +116318,7 @@ ], "title": "OV Bobenheim-Roxheim" }, - "duration": 517, + "duration": 649, "error": null, "responsive": { "document_width": { @@ -116201,7 +116366,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 649 }, "RESPONSIVE": { "score": 1, @@ -116241,9 +116406,9 @@ "resolved_hostname": "www.gruenedelmenhorst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruenedelmenhorst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116285,7 +116450,7 @@ "opengraph": null, "title": "Kreisverband Delmenhorst: Home" }, - "duration": 191, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -116333,7 +116498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -116396,7 +116561,7 @@ "urlchecks": [ { "content": null, - "duration": 43, + "duration": 48, "error": null, "responsive": { "document_width": { @@ -116446,7 +116611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 43 + "value": 48 }, "RESPONSIVE": { "score": 0, @@ -116532,7 +116697,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 612, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -116555,7 +116720,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 363, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -116606,7 +116771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 488 + "value": 354 }, "RESPONSIVE": { "score": 0, @@ -116646,9 +116811,9 @@ "resolved_hostname": "www.grueneleer.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116690,7 +116855,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Artikel" }, - "duration": 190, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -116738,7 +116903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 257 }, "RESPONSIVE": { "score": 1, @@ -116783,9 +116948,9 @@ "resolved_hostname": "www.gruenemarzahnhellersdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruenemarzahnhellersdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.138.88" ], @@ -116839,7 +117004,7 @@ ], "title": "Startseite - Bündnis 90 / Die GrünenBündnis 90 / Die Grünen" }, - "duration": 626, + "duration": 825, "error": null, "responsive": { "document_width": { @@ -116886,7 +117051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 626 + "value": 825 }, "RESPONSIVE": { "score": 1, @@ -116925,9 +117090,9 @@ "resolvable": false } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneniederkassel.de/userspace/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -116956,7 +117121,7 @@ "opengraph": null, "title": null }, - "duration": 122, + "duration": 142, "error": null, "responsive": { "document_width": { @@ -117004,7 +117169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -117062,7 +117227,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117070,7 +117235,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117093,7 +117258,7 @@ "opengraph": null, "title": "gruenesFW" }, - "duration": 90, + "duration": 121, "error": null, "responsive": { "document_width": { @@ -117116,7 +117281,7 @@ "opengraph": null, "title": "gruenesFW" }, - "duration": 109, + "duration": 102, "error": null, "responsive": { "document_width": { @@ -117167,7 +117332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 100 + "value": 112 }, "RESPONSIVE": { "score": 1, @@ -117211,9 +117376,9 @@ "resolved_hostname": "www.gruenestadterfurt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenestadterfurt.de/wp-content/themes/1508149991-hYCbsW/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.51" ], @@ -117275,7 +117440,7 @@ ], "title": "GRÜNE.STADT.ERFURT" }, - "duration": 565, + "duration": 633, "error": null, "responsive": { "document_width": { @@ -117323,7 +117488,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 633 }, "RESPONSIVE": { "score": 0, @@ -117379,7 +117544,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117387,7 +117552,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117410,7 +117575,7 @@ "opengraph": null, "title": "gruenestelle.de steht zum Verkauf - Sedo GmbH" }, - "duration": 629, + "duration": 767, "error": null, "responsive": { "document_width": { @@ -117459,7 +117624,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 629 + "value": 767 }, "RESPONSIVE": { "score": 1, @@ -117577,9 +117742,10 @@ "resolved_hostname": "www.gruenewesseling.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenewesseling.de/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruenewesseling.de/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "89.110.129.56" ], @@ -117631,7 +117797,7 @@ ], "title": "Bündnis 90 / Die Grünen in Wesseling" }, - "duration": 817, + "duration": 797, "error": null, "responsive": { "document_width": { @@ -117664,7 +117830,7 @@ ], "title": "Bündnis 90 / Die Grünen in Wesseling" }, - "duration": 913, + "duration": 834, "error": null, "responsive": { "document_width": { @@ -117712,7 +117878,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 865 + "value": 816 }, "RESPONSIVE": { "score": 0, @@ -117769,7 +117935,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117777,7 +117943,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117797,7 +117963,7 @@ "opengraph": null, "title": "Start - Grüne Liste Heppenheim" }, - "duration": 64, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -117820,7 +117986,7 @@ "opengraph": null, "title": "Start - Grüne Liste Heppenheim" }, - "duration": 81, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -117871,7 +118037,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 72 + "value": 66 }, "RESPONSIVE": { "score": 0, @@ -117912,9 +118078,10 @@ "resolved_hostname": "www.lebensqualitaet-weisendorf.de" } }, - "icons": [ - "835e96c57c3a75a1f4e667800ab71b1a.ico" - ], + "icons": { + "http://lebensqualitaet-weisendorf.de/favico.ico": "835e96c57c3a75a1f4e667800ab71b1a.ico", + "http://www.lebensqualitaet-weisendorf.de/favico.ico": "835e96c57c3a75a1f4e667800ab71b1a.ico" + }, "ipv4_addresses": [ "80.67.17.235" ], @@ -117959,7 +118126,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Markt Weisendorf\"" }, - "duration": 101, + "duration": 104, "error": null, "responsive": { "document_width": { @@ -117982,7 +118149,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Markt Weisendorf\"" }, - "duration": 102, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -118032,7 +118199,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 102 + "value": 110 }, "RESPONSIVE": { "score": 0, @@ -118072,9 +118239,9 @@ "resolved_hostname": "www.offenbach-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-offenbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -118116,7 +118283,7 @@ "opengraph": null, "title": "Grüne Offenbach: Start" }, - "duration": 191, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -118164,7 +118331,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -118252,7 +118419,7 @@ "opengraph": null, "title": "- Offene Grüne Liste Pleidelsheim" }, - "duration": 610, + "duration": 758, "error": null, "responsive": { "document_width": { @@ -118275,7 +118442,7 @@ "opengraph": null, "title": "- Offene Grüne Liste Pleidelsheim" }, - "duration": 589, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -118326,7 +118493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -118410,7 +118577,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 68, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -118433,7 +118600,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 403, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -118456,7 +118623,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 137, + "duration": 150, "error": null, "responsive": { "document_width": { @@ -118506,7 +118673,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 102 }, "RESPONSIVE": { "score": 0, @@ -118550,9 +118717,7 @@ "resolved_hostname": "www.padergruen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "80.237.133.72" ], @@ -118698,9 +118863,9 @@ "resolved_hostname": "www.porta.de" } }, - "icons": [ - "e9e1afdacf341a6accc5226a83ed3afc.ico" - ], + "icons": { + "https://porta.de/porta/_ui/responsive/theme-porta/img/favicon.ico": "e9e1afdacf341a6accc5226a83ed3afc.ico" + }, "ipv4_addresses": [ "193.104.90.150" ], @@ -118749,7 +118914,7 @@ ], "title": "porta! | Möbelhaus porta! » Möbel online kaufen" }, - "duration": 212, + "duration": 329, "error": null, "responsive": { "document_width": { @@ -118797,7 +118962,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 329 }, "RESPONSIVE": { "score": 1, @@ -118882,7 +119047,7 @@ "opengraph": null, "title": "We moved!\n\n\r\nSorry! Wir sind umgezogen nach:\r\nhttp://imbiss-am-wiehen.de" }, - "duration": 57, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -118905,7 +119070,7 @@ "opengraph": null, "title": "We moved!\n\n\r\nSorry! Wir sind umgezogen nach:\r\nhttp://imbiss-am-wiehen.de" }, - "duration": 57, + "duration": 84, "error": null, "responsive": { "document_width": { @@ -118956,7 +119121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 57 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -119139,6 +119304,9 @@ "resolved_hostname": "www.warsteinerliste.de" } }, + "icons": { + "http://www.warsteinerliste.de/fileadmin/template/favicon.ico": "a0529939c6e78dc2aeb8391a6f1dda4f.ico" + }, "ipv4_addresses": [ "185.21.102.77" ], @@ -119179,11 +119347,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "https://www.warsteinerliste.de/fileadmin/template/favicon.ico", + "icon": "http://www.warsteinerliste.de/fileadmin/template/favicon.ico", "opengraph": null, "title": "WAL aktuell: Warsteiner Liste" }, - "duration": 213, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -119202,11 +119370,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "https://www.warsteinerliste.de/fileadmin/template/favicon.ico", + "icon": "http://www.warsteinerliste.de/fileadmin/template/favicon.ico", "opengraph": null, "title": "WAL aktuell: Warsteiner Liste" }, - "duration": 225, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -119240,9 +119408,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -119257,7 +119424,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 224 }, "RESPONSIVE": { "score": 0, @@ -119273,7 +119440,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -119298,9 +119465,9 @@ "resolved_hostname": "xn--grne-burbach-elb.de" } }, - "icons": [ - "bb1613122192c097f186cc5174b59b37.ico" - ], + "icons": { + "http://www.t-online.de/service/aktionen/favicon.ico": "bb1613122192c097f186cc5174b59b37.ico" + }, "ipv4_addresses": [ "80.150.6.143" ], @@ -119345,7 +119512,7 @@ "opengraph": null, "title": "Hier entsteht eine neue Homepage" }, - "duration": 71, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -119368,7 +119535,7 @@ "opengraph": null, "title": "Hier entsteht eine neue Homepage" }, - "duration": 71, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -119418,7 +119585,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 71 + "value": 64 }, "RESPONSIVE": { "score": 0, @@ -119461,9 +119628,9 @@ "resolved_hostname": "xn--grne-mnster-uhbe.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "https://www.xn--grne-mnster-uhbe.de/wp-content/themes/blum-o-matic_1/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -119512,7 +119679,7 @@ ], "title": "Startseite - Grüne Münster" }, - "duration": 395, + "duration": 422, "error": null, "responsive": { "document_width": { @@ -119559,7 +119726,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 395 + "value": 422 }, "RESPONSIVE": { "score": 0, @@ -119608,9 +119775,9 @@ "resolved_hostname": "xn--grne-speyer-uhb.de" } }, - "icons": [ - "16eba5d237ec52611d79f5b6714aa6a9.jpg" - ], + "icons": { + "https://www.grüne-speyer.de/wp-content/uploads/2018/04/cropped-gruene-speyer-32x32.jpg": "16eba5d237ec52611d79f5b6714aa6a9.jpg" + }, "ipv4_addresses": [ "85.13.129.38" ], @@ -119656,7 +119823,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 474, + "duration": 470, "error": null, "responsive": { "document_width": { @@ -119683,7 +119850,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 505, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -119710,7 +119877,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 415, + "duration": 519, "error": null, "responsive": { "document_width": { @@ -119737,7 +119904,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 760, + "duration": 535, "error": null, "responsive": { "document_width": { @@ -119785,7 +119952,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 538 + "value": 492 }, "RESPONSIVE": { "score": 1, @@ -119830,9 +119997,9 @@ "resolved_hostname": "xn--salzlandgrne-mlb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.salzlandgruene.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.226" ], @@ -119891,7 +120058,7 @@ ], "title": "SALZLANDGRÜNE" }, - "duration": 563, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -119925,7 +120092,7 @@ ], "title": "SALZLANDGRÜNE" }, - "duration": 863, + "duration": 541, "error": null, "responsive": { "document_width": { @@ -119974,7 +120141,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 502 }, "RESPONSIVE": { "score": 1, @@ -120017,9 +120184,10 @@ "resolved_hostname": "xn--grne-deggendorf-0vb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-deggendorf-0vb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://xn--grne-deggendorf-0vb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.66" ], @@ -120062,7 +120230,7 @@ ], "title": "Bündnis 90/Die Grünen Deggendorf" }, - "duration": 176, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -120096,7 +120264,7 @@ ], "title": "Bündnis 90/Die Grünen Deggendorf" }, - "duration": 262, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -120144,7 +120312,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 268 }, "RESPONSIVE": { "score": 1, @@ -120185,9 +120353,9 @@ "resolved_hostname": "xn--grne-milk-r9a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://xn--grne-milk-r9a.de/wp-content/themes/urwahl3000-2/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.159" ], @@ -120227,7 +120395,7 @@ ], "title": "KV Minden-Lübbecke" }, - "duration": 501, + "duration": 521, "error": null, "responsive": { "document_width": { @@ -120274,7 +120442,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 501 + "value": 521 }, "RESPONSIVE": { "score": 0, @@ -120319,9 +120487,9 @@ "resolved_hostname": "xn--grne-much-r9a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-much-r9a.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.142" ], @@ -120338,7 +120506,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -120346,7 +120514,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -120379,7 +120547,7 @@ ], "title": "- Bündnis 90/Die Grünen Much" }, - "duration": 430, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -120427,7 +120595,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 435 }, "RESPONSIVE": { "score": 0, @@ -120467,9 +120635,9 @@ "resolved_hostname": "www.gruene-ab.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ab.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120511,7 +120679,7 @@ "opengraph": null, "title": "Die Grünen Aschaffenburg: Home" }, - "duration": 168, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -120559,7 +120727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -120599,9 +120767,9 @@ "resolved_hostname": "www.gruene-aichach-friedberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-aichach-friedberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120643,7 +120811,7 @@ "opengraph": null, "title": "KV Aichach-Friedberg: Startseite" }, - "duration": 208, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -120691,7 +120859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -120734,9 +120902,9 @@ "resolved_hostname": "www.gruene-amberg-sulzbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-amberg-sulzbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120781,7 +120949,7 @@ "opengraph": null, "title": "KV Amberg-Sulzbach: Personen" }, - "duration": 204, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -120828,7 +120996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 162 }, "RESPONSIVE": { "score": 1, @@ -120868,9 +121036,9 @@ "resolved_hostname": "www.gruene-amberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-amberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120912,7 +121080,7 @@ "opengraph": null, "title": "Kreisverband Amberg: Startseite" }, - "duration": 187, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -120960,7 +121128,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -121003,9 +121171,9 @@ "resolved_hostname": "www.gruene-augsburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-augsburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121050,7 +121218,7 @@ "opengraph": null, "title": "GRÜNE AUGSBURG: Home" }, - "duration": 237, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -121097,7 +121265,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 237 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -121141,9 +121309,9 @@ "resolved_hostname": "www.gruene-augsburgland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-augsburgland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121189,7 +121357,7 @@ "opengraph": null, "title": "Grüne Augsburg-Land: Home" }, - "duration": 209, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -121236,7 +121404,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -121281,9 +121449,9 @@ "resolved_hostname": "www.gruene-aw.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-aw.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.190" ], @@ -121337,7 +121505,7 @@ ], "title": "Bündnis 90/Die Grünen Ahrweiler" }, - "duration": 143, + "duration": 144, "error": null, "responsive": { "document_width": { @@ -121384,7 +121552,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 143 + "value": 144 }, "RESPONSIVE": { "score": 1, @@ -121424,9 +121592,9 @@ "resolved_hostname": "www.gruene-bad-bramstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bad-bramstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121468,7 +121636,7 @@ "opengraph": null, "title": "Grüne Bad Bramstedt: Aktuelles" }, - "duration": 204, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -121516,7 +121684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -121560,9 +121728,9 @@ "resolved_hostname": "www.gruene-bad-salzuflen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bad-salzuflen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.155.133" ], @@ -121589,7 +121757,7 @@ } ], "responsive": { - "min_width": 383, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -121615,13 +121783,13 @@ ], "title": "Grüne Bad Salzuflen" }, - "duration": 600, + "duration": 669, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 383, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -121662,7 +121830,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 669 }, "RESPONSIVE": { "score": 1, @@ -121702,9 +121870,9 @@ "resolved_hostname": "www.gruene-badcamberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-badcamberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121746,7 +121914,7 @@ "opengraph": null, "title": "OV Bad Camberg: Home" }, - "duration": 195, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -121794,7 +121962,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -121837,9 +122005,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-baden-baden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -121882,7 +122050,7 @@ ], "title": "Grüne Baden-Baden" }, - "duration": 272, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -121929,7 +122097,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 272 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -121970,9 +122138,9 @@ "resolved_hostname": "www.gruene-badhomburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-badhomburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122014,7 +122182,7 @@ "opengraph": null, "title": "GRÜNE Bad Homburg: Startseite" }, - "duration": 196, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -122062,7 +122230,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -122102,9 +122270,9 @@ "resolved_hostname": "www.gruene-bamberg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bamberg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122146,7 +122314,7 @@ "opengraph": null, "title": "Grüne Bamberg-Land: Themen" }, - "duration": 195, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -122194,7 +122362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -122234,9 +122402,9 @@ "resolved_hostname": "www.gruene-barsbuettel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-barsbuettel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122278,7 +122446,7 @@ "opengraph": null, "title": "GRÜNE Barsbüttel: Startseite" }, - "duration": 227, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -122326,7 +122494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -122367,9 +122535,9 @@ "resolved_hostname": "www.gruene-bayern.de" } }, - "icons": [ - "76a49e20f30f1ff94b7c199dd362709e.jpg" - ], + "icons": { + "https://gruene-bayern.de/wp-content/uploads/2017/01/profil-neu-150x150.jpeg": "76a49e20f30f1ff94b7c199dd362709e.jpg" + }, "ipv4_addresses": [ "109.239.51.23" ], @@ -122416,7 +122584,7 @@ ], "title": "" }, - "duration": 728, + "duration": 769, "error": null, "responsive": { "document_width": { @@ -122444,7 +122612,7 @@ ], "title": "" }, - "duration": 777, + "duration": 731, "error": null, "responsive": { "document_width": { @@ -122493,7 +122661,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 752 + "value": 750 }, "RESPONSIVE": { "score": 1, @@ -122533,9 +122701,9 @@ "resolved_hostname": "www.gruene-bayreuth-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bayreuth-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122577,7 +122745,7 @@ "opengraph": null, "title": "Bayreuth Land: Startseite" }, - "duration": 198, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -122625,7 +122793,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -122665,9 +122833,9 @@ "resolved_hostname": "www.gruene-biebesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-biebesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122709,7 +122877,7 @@ "opengraph": null, "title": "Ortsverband Biebesheim: Aktuell" }, - "duration": 190, + "duration": 255, "error": null, "responsive": { "document_width": { @@ -122757,7 +122925,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 255 }, "RESPONSIVE": { "score": 1, @@ -122797,9 +122965,9 @@ "resolved_hostname": "www.gruene-bobingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bobingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122841,7 +123009,7 @@ "opengraph": null, "title": "OV Bobingen: Startseite" }, - "duration": 199, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -122889,7 +123057,192 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 261 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://gruene-bokhorst-wankendorf.de/", + "https://gruene-bokhorst-wankendorf.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://gruene-bokhorst-wankendorf.de/comments/feed/", + "http://gruene-bokhorst-wankendorf.de/feed/", + "https://gruene-bokhorst-wankendorf.de/comments/feed/", + "https://gruene-bokhorst-wankendorf.de/feed/" + ], + "hostnames": { + "gruene-bokhorst-wankendorf.de": { + "ip_addresses": [ + "217.160.0.185" + ], + "resolvable": true, + "resolved_hostname": "gruene-bokhorst-wankendorf.de" + }, + "www.gruene-bokhorst-wankendorf.de": { + "ip_addresses": [ + "217.160.0.185" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bokhorst-wankendorf.de" + } + }, + "icons": { + "http://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "217.160.0.185" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": null, + "url": "http://gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": "http://gruene-bokhorst-wankendorf.de/", + "url": "http://www.gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bokhorst-wankendorf.de/", + "url": "https://www.gruene-bokhorst-wankendorf.de/" + } + ], + "responsive": { + "min_width": 346, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://gruene-bokhorst-wankendorf.de/feed/", + "http://gruene-bokhorst-wankendorf.de/comments/feed/" + ], + "generator": null, + "icon": "http://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Amt Bokhorst-Wankendorf" + }, + "duration": 442, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 346, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://gruene-bokhorst-wankendorf.de/" + }, + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "https://gruene-bokhorst-wankendorf.de/feed/", + "https://gruene-bokhorst-wankendorf.de/comments/feed/" + ], + "generator": null, + "icon": "https://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Amt Bokhorst-Wankendorf" + }, + "duration": 879, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 346, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-bokhorst-wankendorf.de/" + } + ] + }, + "input_url": "https://gruene-bokhorst-wankendorf.de/", + "meta": { + "city": "Amt Bokhorst-Wankendorf", + "district": "Plön", + "level": "DE:ORTSVERBAND", + "state": "Schleswig-Holstein" + }, + "result": { + "CANONICAL_URL": { + "score": 0, + "type": "boolean", + "value": false + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 660 }, "RESPONSIVE": { "score": 1, @@ -122933,9 +123286,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -122988,7 +123341,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 294, + "duration": 322, "error": null, "responsive": { "document_width": { @@ -123035,7 +123388,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 322 }, "RESPONSIVE": { "score": 1, @@ -123079,9 +123432,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123134,7 +123487,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 375, + "duration": 349, "error": null, "responsive": { "document_width": { @@ -123181,7 +123534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 349 }, "RESPONSIVE": { "score": 1, @@ -123225,9 +123578,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123280,7 +123633,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 367, + "duration": 277, "error": null, "responsive": { "document_width": { @@ -123327,7 +123680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 367 + "value": 277 }, "RESPONSIVE": { "score": 1, @@ -123371,9 +123724,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123426,7 +123779,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 398, + "duration": 354, "error": null, "responsive": { "document_width": { @@ -123473,7 +123826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 354 }, "RESPONSIVE": { "score": 1, @@ -123517,9 +123870,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123572,7 +123925,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 249, + "duration": 304, "error": null, "responsive": { "document_width": { @@ -123619,7 +123972,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 249 + "value": 304 }, "RESPONSIVE": { "score": 1, @@ -123660,9 +124013,10 @@ "resolved_hostname": "www.gruene-bonstetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bonstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-bonstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123704,7 +124058,7 @@ "opengraph": null, "title": "OV Bonstetten: Startseite" }, - "duration": 171, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -123727,7 +124081,7 @@ "opengraph": null, "title": "OV Bonstetten: Startseite" }, - "duration": 174, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -123776,7 +124130,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -123816,9 +124170,9 @@ "resolved_hostname": "www.gruene-borgholzhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-borgholzhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123860,7 +124214,7 @@ "opengraph": null, "title": "OV Borgholzhausen: Startseite" }, - "duration": 190, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -123908,7 +124262,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -123948,9 +124302,9 @@ "resolved_hostname": "www.gruene-borken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-borken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123992,7 +124346,7 @@ "opengraph": null, "title": "Ortsverband Borken: Startseite" }, - "duration": 165, + "duration": 242, "error": null, "responsive": { "document_width": { @@ -124040,7 +124394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 242 }, "RESPONSIVE": { "score": 1, @@ -124080,9 +124434,9 @@ "resolved_hostname": "www.gruene-brakel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-brakel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124124,7 +124478,7 @@ "opengraph": null, "title": "Ortsverband Brakel: Brakel aktuell" }, - "duration": 206, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -124172,7 +124526,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -124215,9 +124569,9 @@ "resolved_hostname": "www.gruene-brandenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-brandenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124262,7 +124616,7 @@ "opengraph": null, "title": "Landesverband Brandenburg: Startseite" }, - "duration": 199, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -124309,7 +124663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -124353,9 +124707,9 @@ "resolved_hostname": "www.gruene-breisgau-hochschwarzwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-breisgau-hochschwarzwald.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.138.50" ], @@ -124407,7 +124761,7 @@ ], "title": "Bündnis 90 Die Grünen Kreisverband Breisgau-Hochschwarzwald" }, - "duration": 606, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -124454,7 +124808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 606 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -124497,9 +124851,9 @@ "resolved_hostname": "www.gruene-bremen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124544,7 +124898,7 @@ "opengraph": null, "title": "GRÜNE Bremen: Startseite" }, - "duration": 206, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -124591,7 +124945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -124635,6 +124989,7 @@ "resolved_hostname": "www.gruene-bruchsal.de" } }, + "icons": {}, "ipv4_addresses": [ "87.118.118.84" ], @@ -124686,7 +125041,7 @@ ], "title": "Bündnis 90/Die Grünen Bruchsal" }, - "duration": 809, + "duration": 641, "error": null, "responsive": { "document_width": { @@ -124719,9 +125074,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -124734,7 +125088,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 809 + "value": 641 }, "RESPONSIVE": { "score": 1, @@ -124750,7 +125104,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -124774,9 +125128,9 @@ "resolved_hostname": "www.gruene-bruessel.eu" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bruessel.eu/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124818,7 +125172,7 @@ "opengraph": null, "title": "Ortsverband Brüssel: Aktuelles" }, - "duration": 193, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -124866,7 +125220,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -124909,9 +125263,9 @@ "resolved_hostname": "www.gruene-bw.de" } }, - "icons": [ - "0ca3f844672deef54d6fc98ecb502ed5.png" - ], + "icons": { + "https://www.gruene-bw.de/wp-content/themes/welance-gruene-bw/src/dist/images/favicons/favicon-196x196.png": "0ca3f844672deef54d6fc98ecb502ed5.png" + }, "ipv4_addresses": [ "134.119.47.156" ], @@ -124966,7 +125320,7 @@ ], "title": "Startseite | gruene-bw.de" }, - "duration": 828, + "duration": 714, "error": null, "responsive": { "document_width": { @@ -125013,7 +125367,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 828 + "value": 714 }, "RESPONSIVE": { "score": 1, @@ -125053,9 +125407,9 @@ "resolved_hostname": "www.gruene-cham.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cham.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125097,7 +125451,7 @@ "opengraph": null, "title": "Kreisverband Cham: Aktuelles" }, - "duration": 197, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -125145,7 +125499,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -125188,9 +125542,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-chemnitz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.200.102.50" ], @@ -125232,7 +125586,7 @@ ], "title": "Bündnis 90/Die Grünen Chemnitz" }, - "duration": 811, + "duration": 848, "error": null, "responsive": { "document_width": { @@ -125279,7 +125633,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 811 + "value": 848 }, "RESPONSIVE": { "score": 1, @@ -125320,9 +125674,9 @@ "resolved_hostname": "www.gruene-coburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-coburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125364,7 +125718,7 @@ "opengraph": null, "title": "KV Coburg-Land: Startseite" }, - "duration": 174, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -125412,7 +125766,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 174 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -125452,9 +125806,9 @@ "resolved_hostname": "www.gruene-coburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-coburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125496,7 +125850,7 @@ "opengraph": null, "title": "Kreisverband Coburg-Stadt: Start" }, - "duration": 189, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -125544,7 +125898,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -125584,9 +125938,9 @@ "resolved_hostname": "www.gruene-dgf-lan.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dgf-lan.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125628,7 +125982,7 @@ "opengraph": null, "title": "KV Dingolfing-Landau: Home" }, - "duration": 200, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -125676,7 +126030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -125716,9 +126070,9 @@ "resolved_hostname": "www.gruene-diedorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-diedorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125760,7 +126114,7 @@ "opengraph": null, "title": "Ortsverband Diedorf: Startseite" }, - "duration": 190, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -125808,7 +126162,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -125848,9 +126202,9 @@ "resolved_hostname": "www.gruene-donau-ries.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-donau-ries.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -125892,7 +126246,7 @@ "opengraph": null, "title": "Die Grünen Donau-Ries: Grüne Donau-Ries" }, - "duration": 157, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -125940,7 +126294,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 148 }, "RESPONSIVE": { "score": 1, @@ -125984,9 +126338,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126013,7 +126367,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126038,13 +126392,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 279, + "duration": 485, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126085,7 +126439,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 279 + "value": 485 }, "RESPONSIVE": { "score": 1, @@ -126129,9 +126483,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126158,7 +126512,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126183,13 +126537,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 339, + "duration": 389, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126230,7 +126584,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -126274,9 +126628,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126303,7 +126657,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126328,13 +126682,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 320, + "duration": 365, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126375,7 +126729,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 320 + "value": 365 }, "RESPONSIVE": { "score": 1, @@ -126419,9 +126773,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126448,7 +126802,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126473,13 +126827,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 349, + "duration": 431, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126520,7 +126874,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 349 + "value": 431 }, "RESPONSIVE": { "score": 1, @@ -126564,9 +126918,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126593,7 +126947,442 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 421, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/hurtgenwald", + "meta": { + "city": "Hürtgenwald", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 421 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 444, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/kreuzau", + "meta": { + "city": "Kreuzau", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 444 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 413, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/langerwehe", + "meta": { + "city": "Langerwehe", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 413 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126624,7 +127413,7 @@ "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126634,9 +127423,9 @@ } ] }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/hurtgenwald", + "input_url": "https://gruene-dueren.de/category/ortsverbande/vettweiss", "meta": { - "city": "Hürtgenwald", + "city": "Vettweiß", "district": "Düren", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -126709,9 +127498,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126738,7 +127527,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126763,448 +127552,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 326, + "duration": 338, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/kreuzau", - "meta": { - "city": "Kreuzau", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 326 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 345, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/langerwehe", - "meta": { - "city": "Langerwehe", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 345 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 327, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/vettweiss", - "meta": { - "city": "Vettweiß", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 327 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 329, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -127245,7 +127599,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 329 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -127285,9 +127639,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127329,7 +127683,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 141, + "duration": 151, "error": null, "responsive": { "document_width": { @@ -127377,7 +127731,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 141 + "value": 151 }, "RESPONSIVE": { "score": 1, @@ -127417,9 +127771,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127461,7 +127815,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 147, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -127509,7 +127863,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 173 }, "RESPONSIVE": { "score": 1, @@ -127549,9 +127903,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127593,7 +127947,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 139, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -127641,7 +127995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 152 }, "RESPONSIVE": { "score": 1, @@ -127681,9 +128035,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127725,7 +128079,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 147, + "duration": 170, "error": null, "responsive": { "document_width": { @@ -127773,7 +128127,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 170 }, "RESPONSIVE": { "score": 1, @@ -127813,9 +128167,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127857,7 +128211,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 142, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -127905,7 +128259,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 142 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -127945,9 +128299,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127989,7 +128343,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 143, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -128037,7 +128391,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 143 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -128077,9 +128431,9 @@ "resolved_hostname": "www.gruene-einhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-einhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128121,7 +128475,7 @@ "opengraph": null, "title": "Grüne Einhausen: Startseite" }, - "duration": 171, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -128169,7 +128523,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 247 }, "RESPONSIVE": { "score": 1, @@ -128209,9 +128563,9 @@ "resolved_hostname": "www.gruene-eltville.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eltville.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128253,7 +128607,7 @@ "opengraph": null, "title": "Ortsverband Eltville: Aktuell" }, - "duration": 186, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -128301,7 +128655,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -128345,9 +128699,9 @@ "resolved_hostname": "www.gruene-enger.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-enger.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.137.225" ], @@ -128400,7 +128754,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in Enger" }, - "duration": 541, + "duration": 412, "error": null, "responsive": { "document_width": { @@ -128447,7 +128801,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 412 }, "RESPONSIVE": { "score": 1, @@ -128487,9 +128841,9 @@ "resolved_hostname": "www.gruene-eppstein.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eppstein.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128531,7 +128885,7 @@ "opengraph": null, "title": "Ortsverband Eppstein: Startseite" }, - "duration": 188, + "duration": 180, "error": null, "responsive": { "document_width": { @@ -128579,7 +128933,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 180 }, "RESPONSIVE": { "score": 1, @@ -128619,9 +128973,9 @@ "resolved_hostname": "www.gruene-erlangen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-erlangen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128663,7 +129017,7 @@ "opengraph": null, "title": "Kreisverband Erlangen: Start" }, - "duration": 211, + "duration": 256, "error": null, "responsive": { "document_width": { @@ -128711,7 +129065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 256 }, "RESPONSIVE": { "score": 1, @@ -128751,9 +129105,9 @@ "resolved_hostname": "www.gruene-erlensee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-erlensee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128795,7 +129149,7 @@ "opengraph": null, "title": "OV Erlensee: Startseite / Aktuelles" }, - "duration": 204, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -128843,7 +129197,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -128883,9 +129237,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128927,7 +129281,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 190, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -128975,7 +129329,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -129015,9 +129369,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129059,7 +129413,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 188, + "duration": 259, "error": null, "responsive": { "document_width": { @@ -129107,7 +129461,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -129147,9 +129501,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129191,7 +129545,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 189, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -129239,7 +129593,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -129279,9 +129633,9 @@ "resolved_hostname": "www.gruene-forchheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-forchheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129323,7 +129677,7 @@ "opengraph": null, "title": "Kreisverband Forchheim: Startseite" }, - "duration": 264, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -129371,7 +129725,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -129411,9 +129765,9 @@ "resolved_hostname": "www.gruene-freising.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-freising.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129455,7 +129809,7 @@ "opengraph": null, "title": "Kreisverband Freising: Kreisverband" }, - "duration": 191, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -129503,7 +129857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -129543,9 +129897,9 @@ "resolved_hostname": "www.gruene-friedrichsdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-friedrichsdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129587,7 +129941,7 @@ "opengraph": null, "title": "Grüne Friedrichsdorf: Startseite" }, - "duration": 191, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -129635,7 +129989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -129675,9 +130029,9 @@ "resolved_hostname": "www.gruene-fuldatal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-fuldatal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129719,7 +130073,7 @@ "opengraph": null, "title": "B90/GRÜNE Fuldatal: Startseite" }, - "duration": 160, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -129767,7 +130121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 175 }, "RESPONSIVE": { "score": 1, @@ -129810,9 +130164,9 @@ "resolved_hostname": "www.gruene-gap.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gap.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129857,7 +130211,7 @@ "opengraph": null, "title": "KV Garmisch-Partenkirchen: Startseite" }, - "duration": 187, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -129904,7 +130258,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -129947,9 +130301,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-gernsheim.de/wordpress/wp-content/themes/urwahl3000v2/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -129991,7 +130345,7 @@ ], "title": "Bündnis 90/Die Grünen in Gernsheim | Mehr Grün(e) für Gernsheim!" }, - "duration": 204, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -130038,7 +130392,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -130079,9 +130433,9 @@ "resolved_hostname": "www.gruene-gersthofen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gersthofen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130123,7 +130477,7 @@ "opengraph": null, "title": "Ortsverband Gersthofen: Startseite" }, - "duration": 209, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -130171,7 +130525,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -130211,9 +130565,9 @@ "resolved_hostname": "www.gruene-gigu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gigu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130255,7 +130609,7 @@ "opengraph": null, "title": "Grüne Ginsheim-Gustavsburg: Startseite" }, - "duration": 202, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -130303,7 +130657,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -130343,9 +130697,9 @@ "resolved_hostname": "www.gruene-gk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130387,7 +130741,7 @@ "opengraph": null, "title": "Ortsverband Geilenkirchen: Start" }, - "duration": 190, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -130435,7 +130789,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -130475,9 +130829,9 @@ "resolved_hostname": "www.gruene-glinde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-glinde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130519,7 +130873,7 @@ "opengraph": null, "title": "Die Glinder Grünen: Home" }, - "duration": 201, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -130567,7 +130921,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -130607,9 +130961,9 @@ "resolved_hostname": "www.gruene-gudensberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gudensberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130651,7 +131005,7 @@ "opengraph": null, "title": "GRÜNE Gudensberg: Startseite" }, - "duration": 187, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -130699,7 +131053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -130743,9 +131097,9 @@ "resolved_hostname": "www.gruene-guetersloh.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-guetersloh.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -130798,7 +131152,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 771, + "duration": 780, "error": null, "responsive": { "document_width": { @@ -130845,7 +131199,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 771 + "value": 780 }, "RESPONSIVE": { "score": 1, @@ -130890,9 +131244,9 @@ "resolved_hostname": "www.gruene-hanau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-hanau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.173" ], @@ -130946,7 +131300,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Hanau" }, - "duration": 535, + "duration": 597, "error": null, "responsive": { "document_width": { @@ -130993,7 +131347,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 535 + "value": 597 }, "RESPONSIVE": { "score": 1, @@ -131036,9 +131390,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-harsefeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.27.5.123" ], @@ -131081,7 +131435,7 @@ ], "title": "Grüne Harsefeld - Politik für Umwelt, Mensch und TierGrüne Harsefeld" }, - "duration": 480, + "duration": 488, "error": null, "responsive": { "document_width": { @@ -131128,7 +131482,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 480 + "value": 488 }, "RESPONSIVE": { "score": 1, @@ -131169,9 +131523,9 @@ "resolved_hostname": "www.gruene-hassberge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hassberge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131213,7 +131567,7 @@ "opengraph": null, "title": "Kreisverband Haßberge: Home" }, - "duration": 221, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -131261,7 +131615,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 240 }, "RESPONSIVE": { "score": 1, @@ -131301,9 +131655,9 @@ "resolved_hostname": "www.gruene-hattersheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hattersheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131345,7 +131699,7 @@ "opengraph": null, "title": "Ortsverband Hattersheim: Startseite" }, - "duration": 210, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -131393,7 +131747,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -131433,9 +131787,9 @@ "resolved_hostname": "www.gruene-hbm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hbm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131477,7 +131831,7 @@ "opengraph": null, "title": "Horn-Bad Meinberg: Startseite" }, - "duration": 216, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -131525,7 +131879,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -131569,9 +131923,9 @@ "resolved_hostname": "www.gruene-herborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-herborn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.178.10.201" ], @@ -131598,7 +131952,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 404, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -131624,13 +131978,13 @@ ], "title": "Willkommen bei den Herborner Grünen - BÜNDNIS90/DIE GRÜNENGrüne Herborn" }, - "duration": 37, + "duration": 524, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 404, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -131669,9 +132023,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 37 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -131687,7 +132041,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -131711,9 +132065,9 @@ "resolved_hostname": "www.gruene-hersfeld-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hersfeld-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131755,7 +132109,7 @@ "opengraph": null, "title": "KV Hersfeld-Rotenburg: Home" }, - "duration": 195, + "duration": 260, "error": null, "responsive": { "document_width": { @@ -131803,7 +132157,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 260 }, "RESPONSIVE": { "score": 1, @@ -131846,9 +132200,9 @@ "resolved_hostname": "www.gruene-heusenstamm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-heusenstamm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131893,7 +132247,7 @@ "opengraph": null, "title": "OV Heusenstamm: B90/Die Grünen in Heusenstamm" }, - "duration": 195, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -131940,7 +132294,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -131980,9 +132334,9 @@ "resolved_hostname": "www.gruene-hochheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hochheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132024,7 +132378,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Hochheim: Herzlich willkommen !!!" }, - "duration": 190, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -132072,7 +132426,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -132112,9 +132466,9 @@ "resolved_hostname": "www.gruene-hochtaunus.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hochtaunus.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132156,7 +132510,7 @@ "opengraph": null, "title": "B90/GRÜNE KV Hochtaunus: Startseite" }, - "duration": 198, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -132204,7 +132558,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -132244,9 +132598,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132288,7 +132642,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 201, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -132336,7 +132690,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 271 }, "RESPONSIVE": { "score": 1, @@ -132376,9 +132730,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132420,7 +132774,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 218, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -132468,7 +132822,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -132508,9 +132862,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132552,7 +132906,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 196, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -132600,7 +132954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -132640,9 +132994,9 @@ "resolved_hostname": "www.gruene-hof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132684,7 +133038,7 @@ "opengraph": null, "title": "Kreisverband Hof: Willkommen bei den Hofer Grünen - Wir freuen uns auf Euch..." }, - "duration": 205, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -132732,7 +133086,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -132777,9 +133131,10 @@ "resolved_hostname": "www.gruene-hohenbrunn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hohenbrunn.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-hohenbrunn.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -132832,7 +133187,7 @@ ], "title": "Ortsverband Hohenbrunn" }, - "duration": 387, + "duration": 408, "error": null, "responsive": { "document_width": { @@ -132866,7 +133221,7 @@ ], "title": "Ortsverband Hohenbrunn" }, - "duration": 511, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -132914,7 +133269,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 449 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -132957,9 +133312,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-huenstetten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.77" ], @@ -133001,7 +133356,7 @@ ], "title": "Grüne Hünstetten" }, - "duration": 250, + "duration": 287, "error": null, "responsive": { "document_width": { @@ -133048,7 +133403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 287 }, "RESPONSIVE": { "score": 1, @@ -133093,9 +133448,9 @@ "resolved_hostname": "www.gruene-illingen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-illingen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -133141,7 +133496,7 @@ "opengraph": null, "title": "Ortsverband Illingen - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 321, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -133188,7 +133543,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 321 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -133228,9 +133583,9 @@ "resolved_hostname": "www.gruene-in-hilchenbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-in-hilchenbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133272,7 +133627,7 @@ "opengraph": null, "title": "GRÜNE Hilchenbach: Startseite" }, - "duration": 195, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -133320,7 +133675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -133360,9 +133715,9 @@ "resolved_hostname": "www.gruene-isselburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-isselburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133404,7 +133759,7 @@ "opengraph": null, "title": "Grüne Isselburg: Startseite" }, - "duration": 165, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -133452,7 +133807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -133492,9 +133847,9 @@ "resolved_hostname": "www.gruene-kalletal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kalletal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133536,7 +133891,7 @@ "opengraph": null, "title": "Ortsverband Kalletal: Startseite" }, - "duration": 171, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -133584,7 +133939,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 176 }, "RESPONSIVE": { "score": 1, @@ -133673,7 +134028,7 @@ "opengraph": null, "title": "Grüne KMWWillkommen beim Ortsverband Karlsbad/Marxzell/Waldbronn - Website des Ortsverbands Bündnis90/Die Grünen" }, - "duration": 694, + "duration": 584, "error": null, "responsive": { "document_width": { @@ -133721,7 +134076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 694 + "value": 584 }, "RESPONSIVE": { "score": 0, @@ -133761,9 +134116,9 @@ "resolved_hostname": "www.gruene-karlsruhe-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-karlsruhe-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133805,7 +134160,7 @@ "opengraph": null, "title": "KV Karlsruhe-Land: Home" }, - "duration": 194, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -133853,7 +134208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -133893,9 +134248,9 @@ "resolved_hostname": "www.gruene-keh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-keh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133937,7 +134292,7 @@ "opengraph": null, "title": "KV Kelheim: Startseite" }, - "duration": 221, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -133985,7 +134340,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -134025,9 +134380,9 @@ "resolved_hostname": "www.gruene-kempten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kempten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134069,7 +134424,7 @@ "opengraph": null, "title": "Kreisverband Kempten: Home" }, - "duration": 186, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -134117,7 +134472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -134157,9 +134512,9 @@ "resolved_hostname": "www.gruene-koenigsbrunn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-koenigsbrunn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134201,7 +134556,7 @@ "opengraph": null, "title": "Grüne Königsbrunn: Startseite" }, - "duration": 190, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -134249,7 +134604,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -134289,9 +134644,9 @@ "resolved_hostname": "www.gruene-konstanz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-konstanz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134333,7 +134688,7 @@ "opengraph": null, "title": "Kreisverband Konstanz: Startseite" }, - "duration": 196, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -134356,138 +134711,6 @@ "level": "DE:KREISVERBAND", "state": "Baden-Württemberg" }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 196 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 195, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/herford/", - "meta": { - "city": "Herford", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, "result": { "CANONICAL_URL": { "score": 1, @@ -134553,9 +134776,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134597,7 +134820,7 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 186, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -134613,9 +134836,9 @@ } ] }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/hiddenhausen/", + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/herford/", "meta": { - "city": "Hiddenhausen", + "city": "Herford", "district": "Herford", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -134645,7 +134868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -134685,273 +134908,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 193, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/kirchlengern/", - "meta": { - "city": "Kirchlengern", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 193 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 222, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/loehne/", - "meta": { - "city": "Löhne", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 222 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -135009,9 +134968,9 @@ } ] }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/roedinghausen/", + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/hiddenhausen/", "meta": { - "city": "Rödinghausen", + "city": "Hiddenhausen", "district": "Herford", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -135081,9 +135040,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135125,7 +135084,403 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 203, + "duration": 208, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/kirchlengern/", + "meta": { + "city": "Kirchlengern", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 208 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 228, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/loehne/", + "meta": { + "city": "Löhne", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 228 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/roedinghausen/", + "meta": { + "city": "Rödinghausen", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -135173,7 +135528,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -135218,9 +135573,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -135274,7 +135629,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 430, + "duration": 495, "error": null, "responsive": { "document_width": { @@ -135321,7 +135676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 495 }, "RESPONSIVE": { "score": 1, @@ -135366,9 +135721,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -135422,7 +135777,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 413, + "duration": 438, "error": null, "responsive": { "document_width": { @@ -135469,7 +135824,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 413 + "value": 438 }, "RESPONSIVE": { "score": 1, @@ -135513,9 +135868,9 @@ "resolved_hostname": "www.gruene-kreisgt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreisgt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -135568,7 +135923,7 @@ ], "title": null }, - "duration": 895, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -135615,7 +135970,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 895 + "value": 878 }, "RESPONSIVE": { "score": 1, @@ -135658,9 +136013,9 @@ "resolved_hostname": "www.gruene-kreisverband-ffb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreisverband-ffb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135705,7 +136060,7 @@ "opengraph": null, "title": "KV Fürstenfeldbruck: Home" }, - "duration": 228, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -135752,7 +136107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -135792,9 +136147,9 @@ "resolved_hostname": "www.gruene-kreuztal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreuztal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135836,7 +136191,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Kreuztal: Home" }, - "duration": 187, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -135884,7 +136239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -135924,9 +136279,9 @@ "resolved_hostname": "www.gruene-kronberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kronberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135968,7 +136323,7 @@ "opengraph": null, "title": "B90/Die Grünen - Kronberg: Home" }, - "duration": 170, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -136016,7 +136371,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -136056,9 +136411,9 @@ "resolved_hostname": "www.gruene-kv-brb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-brb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136100,7 +136455,7 @@ "opengraph": null, "title": "Brandenburg an der Havel: Home" }, - "duration": 189, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -136148,7 +136503,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -136188,9 +136543,9 @@ "resolved_hostname": "www.gruene-kv-heinsberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-heinsberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136232,7 +136587,7 @@ "opengraph": null, "title": "Im Kreis Heinsberg: Startseite" }, - "duration": 176, + "duration": 170, "error": null, "responsive": { "document_width": { @@ -136280,7 +136635,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 176 + "value": 170 }, "RESPONSIVE": { "score": 1, @@ -136323,9 +136678,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kv-soest.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.151" ], @@ -136360,6 +136715,7 @@ "icon": "https://gruene-kv-soest.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -136367,7 +136723,7 @@ ], "title": "Kreisverband Soest" }, - "duration": 516, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -136414,7 +136770,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 516 + "value": 513 }, "RESPONSIVE": { "score": 1, @@ -136455,9 +136811,9 @@ "resolved_hostname": "www.gruene-lahnau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lahnau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136499,7 +136855,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lahnau: Home" }, - "duration": 197, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -136547,7 +136903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -136587,9 +136943,9 @@ "resolved_hostname": "www.gruene-landshut.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-landshut.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136631,7 +136987,7 @@ "opengraph": null, "title": "Landkreis Landshut: Home" }, - "duration": 194, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -136679,7 +137035,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -136719,9 +137075,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136763,7 +137119,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 199, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -136811,7 +137167,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 250 }, "RESPONSIVE": { "score": 1, @@ -136851,9 +137207,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136895,7 +137251,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 199, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -136943,7 +137299,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -136983,9 +137339,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137027,7 +137383,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 203, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -137075,7 +137431,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -137115,9 +137471,9 @@ "resolved_hostname": "www.gruene-lechfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lechfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137159,7 +137515,7 @@ "opengraph": null, "title": "OV Lechfeld: Start" }, - "duration": 169, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -137207,7 +137563,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -137247,9 +137603,9 @@ "resolved_hostname": "www.gruene-lichtenfels.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lichtenfels.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137291,7 +137647,7 @@ "opengraph": null, "title": "Kreisverband Lichtenfels: Home" }, - "duration": 196, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -137339,7 +137695,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -137383,9 +137739,9 @@ "resolved_hostname": "www.gruene-lindenfels.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-lindenfels.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.27.5.119" ], @@ -137438,7 +137794,7 @@ ], "title": "Grüne LindenfelsGrüne Lindenfels" }, - "duration": 309, + "duration": 306, "error": null, "responsive": { "document_width": { @@ -137485,7 +137841,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 306 }, "RESPONSIVE": { "score": 1, @@ -137525,9 +137881,9 @@ "resolved_hostname": "www.gruene-linkenheim-hochstetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-linkenheim-hochstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137569,7 +137925,7 @@ "opengraph": null, "title": "Linkenheim-Hochstetten: Startseite" }, - "duration": 191, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -137617,7 +137973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -137660,9 +138016,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-linksderweser.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.38.249.35" ], @@ -137704,7 +138060,7 @@ ], "title": "Grüne Links der Weser" }, - "duration": 448, + "duration": 464, "error": null, "responsive": { "document_width": { @@ -137751,7 +138107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 448 + "value": 464 }, "RESPONSIVE": { "score": 1, @@ -137792,9 +138148,9 @@ "resolved_hostname": "www.gruene-lohra.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lohra.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137836,7 +138192,7 @@ "opengraph": null, "title": "Ortsverband Lohra: Home" }, - "duration": 218, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -137884,7 +138240,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -137924,9 +138280,9 @@ "resolved_hostname": "www.gruene-luedenscheid.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luedenscheid.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137968,7 +138324,7 @@ "opengraph": null, "title": "Ortsverband Lüdenscheid: Home" }, - "duration": 225, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -138016,7 +138372,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 247 }, "RESPONSIVE": { "score": 1, @@ -138056,9 +138412,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138100,7 +138456,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 262, + "duration": 344, "error": null, "responsive": { "document_width": { @@ -138148,7 +138504,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 344 }, "RESPONSIVE": { "score": 1, @@ -138188,9 +138544,9 @@ "resolved_hostname": "www.gruene-main-kinzig.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-main-kinzig.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138232,7 +138588,7 @@ "opengraph": null, "title": "Kreisverband Main-Kinzig: Home" }, - "duration": 204, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -138280,7 +138636,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -138361,7 +138717,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Main-Tauber - Bündnis 90 / Die Grünen Main-Tauber" }, - "duration": 330, + "duration": 348, "error": null, "responsive": { "document_width": { @@ -138410,7 +138766,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 330 + "value": 348 }, "RESPONSIVE": { "score": 1, @@ -138450,9 +138806,9 @@ "resolved_hostname": "www.gruene-meitingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-meitingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138494,7 +138850,7 @@ "opengraph": null, "title": "Ortsverband Meitingen: Startseite" }, - "duration": 188, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -138542,7 +138898,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -138623,7 +138979,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Bad Mergentheim - Bündnis 90 / Die Grünen Bad Mergentheim" }, - "duration": 466, + "duration": 549, "error": null, "responsive": { "document_width": { @@ -138672,7 +139028,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 466 + "value": 549 }, "RESPONSIVE": { "score": 1, @@ -138712,9 +139068,9 @@ "resolved_hostname": "www.gruene-miesbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-miesbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138756,7 +139112,7 @@ "opengraph": null, "title": "Kreisverband Miesbach: Aktuelles" }, - "duration": 203, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -138804,7 +139160,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -138847,9 +139203,9 @@ "resolved_hostname": "www.gruene-mittelfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mittelfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138894,7 +139250,7 @@ "opengraph": null, "title": "Grüne Mittelfranken: Startseite" }, - "duration": 202, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -138941,7 +139297,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -138985,9 +139341,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139040,7 +139396,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 889, + "duration": 781, "error": null, "responsive": { "document_width": { @@ -139087,7 +139443,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 889 + "value": 781 }, "RESPONSIVE": { "score": 1, @@ -139131,9 +139487,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139186,7 +139542,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 20, + "duration": 827, "error": null, "responsive": { "document_width": { @@ -139231,9 +139587,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 20 + "value": 827 }, "RESPONSIVE": { "score": 1, @@ -139249,7 +139605,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139277,9 +139633,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139332,7 +139688,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 982, + "duration": 793, "error": null, "responsive": { "document_width": { @@ -139379,7 +139735,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 982 + "value": 793 }, "RESPONSIVE": { "score": 1, @@ -139423,9 +139779,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139478,7 +139834,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 17, + "duration": 832, "error": null, "responsive": { "document_width": { @@ -139523,9 +139879,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 17 + "value": 832 }, "RESPONSIVE": { "score": 1, @@ -139541,7 +139897,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139569,9 +139925,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139624,7 +139980,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 857, + "duration": 810, "error": null, "responsive": { "document_width": { @@ -139671,7 +140027,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 857 + "value": 810 }, "RESPONSIVE": { "score": 1, @@ -139715,9 +140071,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139770,7 +140126,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 20, + "duration": 924, "error": null, "responsive": { "document_width": { @@ -139815,9 +140171,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 20 + "value": 924 }, "RESPONSIVE": { "score": 1, @@ -139833,7 +140189,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139861,9 +140217,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139916,7 +140272,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 934, + "duration": 840, "error": null, "responsive": { "document_width": { @@ -139963,7 +140319,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 934 + "value": 840 }, "RESPONSIVE": { "score": 1, @@ -140007,9 +140363,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140062,7 +140418,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 952, + "duration": 825, "error": null, "responsive": { "document_width": { @@ -140109,7 +140465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 952 + "value": 825 }, "RESPONSIVE": { "score": 1, @@ -140153,9 +140509,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140208,7 +140564,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 7, + "duration": 974, "error": null, "responsive": { "document_width": { @@ -140253,9 +140609,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 7 + "value": 974 }, "RESPONSIVE": { "score": 1, @@ -140271,7 +140627,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140299,9 +140655,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140354,7 +140710,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 78, + "duration": 785, "error": null, "responsive": { "document_width": { @@ -140399,9 +140755,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 78 + "value": 785 }, "RESPONSIVE": { "score": 1, @@ -140417,7 +140773,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140445,9 +140801,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140500,7 +140856,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 995, + "duration": 891, "error": null, "responsive": { "document_width": { @@ -140547,7 +140903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 995 + "value": 891 }, "RESPONSIVE": { "score": 1, @@ -140591,9 +140947,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140737,9 +141093,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140792,7 +141148,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 43, + "duration": 760, "error": null, "responsive": { "document_width": { @@ -140837,9 +141193,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 43 + "value": 760 }, "RESPONSIVE": { "score": 1, @@ -140855,7 +141211,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140883,9 +141239,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140938,7 +141294,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 873, + "duration": 793, "error": null, "responsive": { "document_width": { @@ -140985,7 +141341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 873 + "value": 793 }, "RESPONSIVE": { "score": 1, @@ -141029,9 +141385,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141084,7 +141440,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 884, + "duration": 761, "error": null, "responsive": { "document_width": { @@ -141131,7 +141487,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 884 + "value": 761 }, "RESPONSIVE": { "score": 1, @@ -141175,9 +141531,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141230,7 +141586,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 909, + "duration": 894, "error": null, "responsive": { "document_width": { @@ -141277,7 +141633,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 909 + "value": 894 }, "RESPONSIVE": { "score": 1, @@ -141321,9 +141677,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141376,7 +141732,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 860, + "duration": 904, "error": null, "responsive": { "document_width": { @@ -141423,7 +141779,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 860 + "value": 904 }, "RESPONSIVE": { "score": 1, @@ -141467,9 +141823,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141522,7 +141878,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 990, + "duration": 931, "error": null, "responsive": { "document_width": { @@ -141569,7 +141925,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 990 + "value": 931 }, "RESPONSIVE": { "score": 1, @@ -141609,9 +141965,9 @@ "resolved_hostname": "www.gruene-mtk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mtk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141653,7 +142009,7 @@ "opengraph": null, "title": "Kreisverband Main-Taunus: Startseite" }, - "duration": 205, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -141701,7 +142057,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -141741,9 +142097,9 @@ "resolved_hostname": "www.gruene-muehldorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-muehldorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141785,7 +142141,7 @@ "opengraph": null, "title": "Kreisverband Mühldorf: Home" }, - "duration": 206, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -141833,7 +142189,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -141947,9 +142303,9 @@ "resolved_hostname": "www.gruene-neumarkt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neumarkt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141994,7 +142350,7 @@ "opengraph": null, "title": "Kreisverband Neumarkt: Startseite" }, - "duration": 193, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -142041,7 +142397,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -142085,9 +142441,9 @@ "resolved_hostname": "www.gruene-neunkirchen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-neunkirchen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -142133,7 +142489,7 @@ "opengraph": null, "title": "Ortsverband Neunkirchen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 299, + "duration": 301, "error": null, "responsive": { "document_width": { @@ -142180,7 +142536,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 299 + "value": 301 }, "RESPONSIVE": { "score": 1, @@ -142224,9 +142580,9 @@ "resolved_hostname": "www.gruene-neunkirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-neunkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -142272,7 +142628,7 @@ "opengraph": null, "title": "Kreisverband Neunkirchen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 308, + "duration": 300, "error": null, "responsive": { "document_width": { @@ -142319,7 +142675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 300 }, "RESPONSIVE": { "score": 1, @@ -142359,9 +142715,9 @@ "resolved_hostname": "www.gruene-niederbayern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-niederbayern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142403,7 +142759,7 @@ "opengraph": null, "title": "Grüne Niederbayern: Aktuelles" }, - "duration": 297, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -142451,7 +142807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -142491,9 +142847,9 @@ "resolved_hostname": "www.gruene-norderstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-norderstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142535,7 +142891,7 @@ "opengraph": null, "title": "Grüne Norderstedt: Aktuelles" }, - "duration": 187, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -142583,7 +142939,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -142623,9 +142979,9 @@ "resolved_hostname": "www.gruene-nottuln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nottuln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142667,7 +143023,7 @@ "opengraph": null, "title": "DIE GRÜNEN in Nottuln: Aktuelles" }, - "duration": 193, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -142715,7 +143071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -142755,9 +143111,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142799,7 +143155,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 215, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -142847,7 +143203,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -142887,9 +143243,537 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 198, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-altdorf/", + "meta": { + "city": "Altdorf", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 198 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 240, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-burgthann/", + "meta": { + "city": "Burgthann", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 240 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-feucht/", + "meta": { + "city": "Feucht", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 204, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-hersbruck/", + "meta": { + "city": "Hersbrucker Land", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 204 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142947,9 +143831,9 @@ } ] }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-altdorf/", + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-lauf-an-der-pegnitz/", "meta": { - "city": "Altdorf", + "city": "Lauf", "district": "Nürnberg-Land", "level": "DE:ORTSVERBAND", "state": "Bayern" @@ -143019,9 +143903,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -143063,535 +143947,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 201, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-burgthann/", - "meta": { - "city": "Burgthann", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 201 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 193, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-feucht/", - "meta": { - "city": "Feucht", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 193 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 202, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-hersbruck/", - "meta": { - "city": "Hersbrucker Land", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 202 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 196, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-lauf-an-der-pegnitz/", - "meta": { - "city": "Lauf", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 196 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 202, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -143639,7 +143995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -143679,9 +144035,9 @@ "resolved_hostname": "www.gruene-nuthetal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuthetal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -143723,7 +144079,7 @@ "opengraph": null, "title": "Basisverband Nuthetal: Home" }, - "duration": 229, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -143771,7 +144127,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -143815,9 +144171,9 @@ "resolved_hostname": "www.gruene-oal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-oal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.3" ], @@ -143871,7 +144227,7 @@ ], "title": "Grüne Ostallgäu-Kaufbeuren" }, - "duration": 437, + "duration": 478, "error": null, "responsive": { "document_width": { @@ -143918,7 +144274,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 437 + "value": 478 }, "RESPONSIVE": { "score": 1, @@ -143962,9 +144318,9 @@ "resolved_hostname": "www.gruene-oberbayern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-oberbayern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.225.216" ], @@ -144016,7 +144372,7 @@ ], "title": "GRÜNE Oberbayern" }, - "duration": 159, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -144063,7 +144419,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 159 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -144103,9 +144459,9 @@ "resolved_hostname": "www.gruene-oberfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144147,7 +144503,7 @@ "opengraph": null, "title": "Grüne Oberfranken: Startseite" }, - "duration": 222, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -144195,7 +144551,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -144235,9 +144591,9 @@ "resolved_hostname": "www.gruene-oberursel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberursel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144279,7 +144635,7 @@ "opengraph": null, "title": "B90/Die Grünen - Oberursel: Home" }, - "duration": 187, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -144327,7 +144683,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -144367,9 +144723,9 @@ "resolved_hostname": "www.gruene-odenwald-kraichgau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-odenwald-kraichgau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144411,7 +144767,7 @@ "opengraph": null, "title": "KV Odenwald-Kraichgau: Startseite" }, - "duration": 154, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -144459,7 +144815,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 154 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -144499,9 +144855,9 @@ "resolved_hostname": "www.gruene-passauland.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-passauland.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -144543,7 +144899,7 @@ "opengraph": null, "title": "Die Grünen Passau Land: Grüne Passau Land" }, - "duration": 147, + "duration": 156, "error": null, "responsive": { "document_width": { @@ -144591,7 +144947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 156 }, "RESPONSIVE": { "score": 1, @@ -144631,9 +144987,9 @@ "resolved_hostname": "www.gruene-penzberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-penzberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144675,7 +145031,7 @@ "opengraph": null, "title": "Ortsverband Penzberg: Home" }, - "duration": 184, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -144723,7 +145079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -144763,9 +145119,9 @@ "resolved_hostname": "www.gruene-pfaffenhofen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pfaffenhofen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144807,7 +145163,7 @@ "opengraph": null, "title": "Grüne Pfaffenhofen: Startseite" }, - "duration": 218, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -144855,7 +145211,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -144895,9 +145251,9 @@ "resolved_hostname": "www.gruene-pfinztal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pfinztal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144939,7 +145295,7 @@ "opengraph": null, "title": "Ortsverband Pfinztal: Startseite" }, - "duration": 198, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -144987,7 +145343,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -145027,9 +145383,9 @@ "resolved_hostname": "www.gruene-potsdam-mittelmark.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-potsdam-mittelmark.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145071,7 +145427,7 @@ "opengraph": null, "title": ": Home" }, - "duration": 201, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -145119,7 +145475,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -145162,9 +145518,9 @@ "resolved_hostname": "www.gruene-potsdam.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-potsdam.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145209,7 +145565,7 @@ "opengraph": null, "title": "KREISVERBAND POTSDAM: Home" }, - "duration": 218, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -145256,7 +145612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -145296,9 +145652,9 @@ "resolved_hostname": "www.gruene-regen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-regen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145340,7 +145696,7 @@ "opengraph": null, "title": "Kreisverband Regen: Home" }, - "duration": 195, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -145388,7 +145744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -145428,9 +145784,9 @@ "resolved_hostname": "www.gruene-regensburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-regensburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145472,7 +145828,7 @@ "opengraph": null, "title": "GRÜNE Regensburg-Land: Aktuelles" }, - "duration": 168, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -145520,7 +145876,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -145564,9 +145920,9 @@ "resolved_hostname": "www.gruene-rehlingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-rehlingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -145593,7 +145949,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -145612,13 +145968,13 @@ "opengraph": null, "title": "Grüne Rehlingen-Siersburg - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 297, + "duration": 325, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -145659,7 +146015,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 325 }, "RESPONSIVE": { "score": 1, @@ -145699,9 +146055,9 @@ "resolved_hostname": "www.gruene-reinfeld-nordstormarn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reinfeld-nordstormarn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145743,7 +146099,7 @@ "opengraph": null, "title": "Reinfeld-Nordstormarn: Startseite" }, - "duration": 211, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -145791,7 +146147,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -145831,9 +146187,9 @@ "resolved_hostname": "www.gruene-rheda-wiedenbrueck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheda-wiedenbrueck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145875,7 +146231,7 @@ "opengraph": null, "title": "OV Rheda-Wiedenbrück: Startseite" }, - "duration": 194, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -145923,7 +146279,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -145966,9 +146322,9 @@ "resolved_hostname": "www.gruene-rielasingen-worblingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rielasingen-worblingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146013,7 +146369,7 @@ "opengraph": null, "title": "Rielasingen-Worblingen: Start" }, - "duration": 258, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -146060,7 +146416,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -146100,9 +146456,9 @@ "resolved_hostname": "www.gruene-rietberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rietberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146144,7 +146500,7 @@ "opengraph": null, "title": "Ortsverband Rietberg: Home" }, - "duration": 171, + "duration": 166, "error": null, "responsive": { "document_width": { @@ -146192,7 +146548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 166 }, "RESPONSIVE": { "score": 1, @@ -146235,9 +146591,9 @@ "resolved_hostname": "www.gruene-roesrath.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-roesrath.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146282,7 +146638,7 @@ "opengraph": null, "title": "Die Grünen Rösrath: Startseite" }, - "duration": 243, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -146329,7 +146685,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 243 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -146392,7 +146748,7 @@ "urlchecks": [ { "content": null, - "duration": 263, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -146441,7 +146797,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -146486,9 +146842,9 @@ "resolved_hostname": "www.gruene-sb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-sb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -146534,7 +146890,7 @@ "opengraph": null, "title": "Kreisverband Saarbrücken - BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 273, + "duration": 393, "error": null, "responsive": { "document_width": { @@ -146581,7 +146937,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 393 }, "RESPONSIVE": { "score": 1, @@ -146621,9 +146977,9 @@ "resolved_hostname": "www.gruene-schleiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schleiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146665,7 +147021,7 @@ "opengraph": null, "title": "Die Grünen in Schleiden: Startseite" }, - "duration": 197, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -146713,7 +147069,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -146753,9 +147109,9 @@ "resolved_hostname": "www.gruene-schluechtern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schluechtern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146797,7 +147153,7 @@ "opengraph": null, "title": "Ortsverband Schlüchtern: Startseite" }, - "duration": 204, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -146845,7 +147201,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -146885,9 +147241,9 @@ "resolved_hostname": "www.gruene-schoenaich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schoenaich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146929,7 +147285,7 @@ "opengraph": null, "title": "Ortsverband Schönaich: Willkommen auf der Homepage des Ortsverbandes Schönaich von Bündnis 90/Die Grünen (umfasst Schönaich, Steinenbronn und Waldenbuch)" }, - "duration": 190, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -146977,7 +147333,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 234 }, "RESPONSIVE": { "score": 1, @@ -147017,9 +147373,9 @@ "resolved_hostname": "www.gruene-schoeneck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schoeneck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147061,7 +147417,7 @@ "opengraph": null, "title": "Ortsverband Schöneck: Startseite" }, - "duration": 202, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -147109,7 +147465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -147149,9 +147505,9 @@ "resolved_hostname": "www.gruene-schwaben.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwaben.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147193,7 +147549,7 @@ "opengraph": null, "title": "Bezirksverband Schwaben: Nachrichten" }, - "duration": 208, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -147241,7 +147597,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -147281,9 +147637,9 @@ "resolved_hostname": "www.gruene-schwalbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwalbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147325,7 +147681,7 @@ "opengraph": null, "title": "Schwalbach am Taunus: Home" }, - "duration": 205, + "duration": 322, "error": null, "responsive": { "document_width": { @@ -147373,7 +147729,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 322 }, "RESPONSIVE": { "score": 1, @@ -147413,9 +147769,9 @@ "resolved_hostname": "www.gruene-schwandorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwandorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147457,7 +147813,7 @@ "opengraph": null, "title": "Kreisverband Schwandorf: Startseite" }, - "duration": 189, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -147505,7 +147861,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -147523,6 +147879,145 @@ }, "score": 8.5 }, + { + "details": { + "canonical_urls": [ + "https://gruene-schwentinental.com/" + ], + "cms": "wordpress", + "feeds": [ + "https://gruene-schwentinental.com/comments/feed/", + "https://gruene-schwentinental.com/feed/" + ], + "hostnames": { + "gruene-schwentinental.com": { + "aliases": [ + "www.gruene-schwentinental.com" + ], + "ip_addresses": [ + "192.0.78.24", + "192.0.78.25" + ], + "resolvable": true, + "resolved_hostname": "gruene-schwentinental.com" + }, + "www.gruene-schwentinental.com": { + "resolvable": false + } + }, + "icons": { + "https://susanneelbert.files.wordpress.com/2017/10/website-icon.jpg?w=32": "83d74cceb607c6b19336d72f877ef474.jpg" + }, + "ipv4_addresses": [ + "192.0.78.24", + "192.0.78.25" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-schwentinental.com/", + "url": "http://gruene-schwentinental.com/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-schwentinental.com/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-schwentinental.com/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-schwentinental.com/feed/", + "https://gruene-schwentinental.com/comments/feed/" + ], + "generator": "WordPress.com", + "icon": "https://susanneelbert.files.wordpress.com/2017/10/website-icon.jpg?w=32", + "opengraph": [ + "og:image", + "og:image:height", + "og:image:width", + "og:locale", + "og:title", + "og:type", + "og:url" + ], + "title": "" + }, + "duration": 419, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-schwentinental.com/" + } + ] + }, + "input_url": "https://gruene-schwentinental.com/", + "meta": { + "city": "Schwentinental", + "district": "Plön", + "level": "DE:ORTSVERBAND", + "state": "Schleswig-Holstein" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 419 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 8.5 + }, { "details": { "canonical_urls": [ @@ -147545,9 +148040,9 @@ "resolved_hostname": "www.gruene-schwielowsee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwielowsee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147589,7 +148084,7 @@ "opengraph": null, "title": "Basisverband Schwielowsee: Wir grünen in Schwielowsee" }, - "duration": 166, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -147637,7 +148132,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -147677,9 +148172,9 @@ "resolved_hostname": "www.gruene-seligenstadt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seligenstadt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147721,7 +148216,7 @@ "opengraph": null, "title": "Ortsverband Seligenstadt: Startseite" }, - "duration": 165, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -147769,7 +148264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -147809,9 +148304,9 @@ "resolved_hostname": "www.gruene-singen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-singen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147853,7 +148348,7 @@ "opengraph": null, "title": "OV Singen (Hohentwiel): Startseite" }, - "duration": 169, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -147901,7 +148396,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 191 }, "RESPONSIVE": { "score": 1, @@ -147945,9 +148440,9 @@ "resolved_hostname": "www.gruene-sls.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-sls.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -147993,7 +148488,7 @@ "opengraph": null, "title": "Kreisverband Saarlouis - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 278, + "duration": 308, "error": null, "responsive": { "document_width": { @@ -148040,7 +148535,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 308 }, "RESPONSIVE": { "score": 1, @@ -148084,9 +148579,9 @@ "resolvable": false } }, - "icons": [ - "16f5808feb148ca9d088b5535f00777a.png" - ], + "icons": { + "https://gruene-sms.de/wp-content/themes/urwahl3000/favicon.png": "16f5808feb148ca9d088b5535f00777a.png" + }, "ipv4_addresses": [ "94.186.184.11" ], @@ -148129,7 +148624,7 @@ ], "title": "Schmalkalden-Meiningen-Suhl › BÜNDNIS 90/DIE GRÜNEN Regionalverband" }, - "duration": 371, + "duration": 383, "error": null, "responsive": { "document_width": { @@ -148176,7 +148671,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 383 }, "RESPONSIVE": { "score": 1, @@ -148217,9 +148712,9 @@ "resolved_hostname": "www.gruene-starnberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-starnberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148261,7 +148756,7 @@ "opengraph": null, "title": "Kreisverband Starnberg: Home" }, - "duration": 214, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -148309,7 +148804,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 237 }, "RESPONSIVE": { "score": 1, @@ -148349,9 +148844,9 @@ "resolved_hostname": "www.gruene-stauden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stauden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148393,7 +148888,7 @@ "opengraph": null, "title": "Ortsverband Stauden: Startseite" }, - "duration": 204, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -148441,7 +148936,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -148481,9 +148976,9 @@ "resolved_hostname": "www.gruene-steinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148525,7 +149020,7 @@ "opengraph": null, "title": "Ortsverband Steinbach: Willkommen bei Steinbachs GRÜNEN" }, - "duration": 170, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -148573,7 +149068,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -148613,9 +149108,9 @@ "resolved_hostname": "www.gruene-steinheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148657,7 +149152,7 @@ "opengraph": null, "title": "Ortsverband Steinheim: GRÜNE aktuell" }, - "duration": 191, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -148705,7 +149200,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -148784,7 +149279,7 @@ "opengraph": null, "title": "GO/Grüne Straelen, wir bewegen" }, - "duration": 131, + "duration": 133, "error": null, "responsive": { "document_width": { @@ -148807,7 +149302,7 @@ "opengraph": null, "title": "GO/Grüne Straelen, wir bewegen" }, - "duration": 147, + "duration": 158, "error": null, "responsive": { "document_width": { @@ -148857,7 +149352,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 146 }, "RESPONSIVE": { "score": 0, @@ -148897,9 +149392,9 @@ "resolved_hostname": "www.gruene-stutensee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stutensee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148941,7 +149436,7 @@ "opengraph": null, "title": "Grün für Stutensee: Startseite" }, - "duration": 208, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -148989,7 +149484,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -149029,9 +149524,9 @@ "resolved_hostname": "www.gruene-stuttgart.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stuttgart.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149073,7 +149568,7 @@ "opengraph": null, "title": "Kreisverband Stuttgart: Startseite" }, - "duration": 194, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -149121,7 +149616,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -149165,9 +149660,9 @@ "resolved_hostname": "www.gruene-tangstedt.de" } }, - "icons": [ - "43fb33c57227e9d867b3089d993628e3.png" - ], + "icons": { + "https://gruene-tangstedt.de/wp-content/uploads/2018/04/cropped-claim-klein-32x32.png": "43fb33c57227e9d867b3089d993628e3.png" + }, "ipv4_addresses": [ "62.116.169.204" ], @@ -149213,7 +149708,7 @@ "opengraph": null, "title": "" }, - "duration": 339, + "duration": 458, "error": null, "responsive": { "document_width": { @@ -149260,7 +149755,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 458 }, "RESPONSIVE": { "score": 1, @@ -149300,9 +149795,9 @@ "resolved_hostname": "www.gruene-teltow-flaeming.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-teltow-flaeming.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149432,9 +149927,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149476,7 +149971,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 195, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -149524,7 +150019,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -149564,9 +150059,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149608,7 +150103,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 205, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -149656,7 +150151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 347 }, "RESPONSIVE": { "score": 1, @@ -149696,9 +150191,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149740,7 +150235,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 192, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -149788,7 +150283,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -149828,9 +150323,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149872,7 +150367,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 197, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -149920,7 +150415,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -149960,9 +150455,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150004,7 +150499,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 196, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -150050,9 +150545,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 196 + "value": 65 }, "RESPONSIVE": { "score": 1, @@ -150068,7 +150563,7 @@ "value": true } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -150092,9 +150587,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150136,7 +150631,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 194, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -150182,9 +150677,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 194 + "value": 94 }, "RESPONSIVE": { "score": 1, @@ -150200,7 +150695,7 @@ "value": true } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -150224,9 +150719,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150268,7 +150763,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 196, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -150316,7 +150811,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -150356,9 +150851,9 @@ "resolved_hostname": "www.gruene-trittau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-trittau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150400,7 +150895,7 @@ "opengraph": null, "title": "Ortsverband Trittau: Startseite" }, - "duration": 199, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -150448,7 +150943,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 273 }, "RESPONSIVE": { "score": 1, @@ -150488,9 +150983,9 @@ "resolved_hostname": "www.gruene-uebach-palenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uebach-palenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150532,7 +151027,7 @@ "opengraph": null, "title": "OV Übach-Palenberg: Home" }, - "duration": 207, + "duration": 259, "error": null, "responsive": { "document_width": { @@ -150580,7 +151075,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -150620,9 +151115,9 @@ "resolved_hostname": "www.gruene-unterfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-unterfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150664,7 +151159,7 @@ "opengraph": null, "title": "Bezirksverband Unterfranken: Startseite" }, - "duration": 188, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -150712,7 +151207,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 187 }, "RESPONSIVE": { "score": 1, @@ -150752,9 +151247,9 @@ "resolved_hostname": "www.gruene-viernheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-viernheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150796,7 +151291,7 @@ "opengraph": null, "title": "Ortsverband Viernheim: Startseite" }, - "duration": 207, + "duration": 439, "error": null, "responsive": { "document_width": { @@ -150844,7 +151339,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 439 }, "RESPONSIVE": { "score": 1, @@ -150939,7 +151434,7 @@ ], "title": "Bündnis90/Die Grünen Kreisverband Vulkaneifel »" }, - "duration": 566, + "duration": 453, "error": null, "responsive": { "document_width": { @@ -150987,7 +151482,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 566 + "value": 453 }, "RESPONSIVE": { "score": 1, @@ -151031,9 +151526,9 @@ "resolved_hostname": "www.gruene-wadgassen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wadgassen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -151079,7 +151574,7 @@ "opengraph": null, "title": "Ortsverband Wadgassen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 304, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -151126,7 +151621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 304 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -151166,9 +151661,9 @@ "resolved_hostname": "www.gruene-walzbachtal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-walzbachtal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151210,7 +151705,7 @@ "opengraph": null, "title": "Grüne Walzbachtal: Startseite" }, - "duration": 197, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -151258,7 +151753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -151302,9 +151797,9 @@ "resolved_hostname": "www.gruene-warburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-warburg.de/wp-content/themes/gruene-warburg/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.96" ], @@ -151363,7 +151858,7 @@ ], "title": "Ortsverband Warburg" }, - "duration": 357, + "duration": 446, "error": null, "responsive": { "document_width": { @@ -151410,7 +151905,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 446 }, "RESPONSIVE": { "score": 1, @@ -151454,9 +151949,9 @@ "resolved_hostname": "www.gruene-wattenscheid.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wattenscheid.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.120.190.113" ], @@ -151502,7 +151997,7 @@ "opengraph": null, "title": "Grüne Wattenscheid" }, - "duration": 148, + "duration": 141, "error": null, "responsive": { "document_width": { @@ -151549,7 +152044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 141 }, "RESPONSIVE": { "score": 1, @@ -151594,9 +152089,9 @@ "resolved_hostname": "www.gruene-weeze.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-weeze.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -151649,7 +152144,7 @@ ], "title": "DIE GRÜNEN WEEZE" }, - "duration": 263, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -151696,7 +152191,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -151736,9 +152231,9 @@ "resolved_hostname": "www.gruene-weiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151780,7 +152275,7 @@ "opengraph": null, "title": "Weiden - Neustadt/Waldnaab: Startseite" }, - "duration": 203, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -151828,7 +152323,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -151868,9 +152363,9 @@ "resolved_hostname": "www.gruene-weiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151912,7 +152407,7 @@ "opengraph": null, "title": "Weiden - Neustadt/Waldnaab: Startseite" }, - "duration": 197, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -151960,7 +152455,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -152000,9 +152495,9 @@ "resolved_hostname": "www.gruene-weissenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weissenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152044,7 +152539,7 @@ "opengraph": null, "title": "Weißenburg-Gunzenhausen: Home" }, - "duration": 199, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -152092,7 +152587,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 240 }, "RESPONSIVE": { "score": 1, @@ -152132,9 +152627,9 @@ "resolved_hostname": "www.gruene-wetter-hessen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wetter-hessen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152176,7 +152671,7 @@ "opengraph": null, "title": "Grüner Ortsverband Wetter Hessen: Startseite" }, - "duration": 223, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -152224,7 +152719,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -152268,9 +152763,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wetzlar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -152315,7 +152810,7 @@ ], "title": "Startseite - Grüne WetzlarGrüne Wetzlar" }, - "duration": 310, + "duration": 283, "error": null, "responsive": { "document_width": { @@ -152362,7 +152857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 310 + "value": 283 }, "RESPONSIVE": { "score": 1, @@ -152403,9 +152898,9 @@ "resolved_hostname": "www.gruene-winnenden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-winnenden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152447,7 +152942,7 @@ "opengraph": null, "title": "Grüne OV Winnenden: Startseite" }, - "duration": 192, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -152495,7 +152990,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -152535,9 +153030,9 @@ "resolved_hostname": "www.gruene-woltersdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-woltersdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152579,7 +153074,7 @@ "opengraph": null, "title": "Ortsverband Woltersdorf: Home" }, - "duration": 211, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -152627,7 +153122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -152670,9 +153165,9 @@ "resolved_hostname": "www.gruene.berlin" } }, - "icons": [ - "47cfbba59aa7e10c678bc8ef3e429b58.ico" - ], + "icons": { + "https://gruene.berlin/sites/gruene.berlin/files/favicon.ico": "47cfbba59aa7e10c678bc8ef3e429b58.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -152724,7 +153219,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Berlin |" }, - "duration": 210, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -152771,7 +153266,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -152814,9 +153309,9 @@ "resolvable": false } }, - "icons": [ - "1d0f9c3c4782850ce383a671bf00f470.png" - ], + "icons": { + "https://gruene.li/wp-content/uploads/favicon.png": "1d0f9c3c4782850ce383a671bf00f470.png" + }, "ipv4_addresses": [ "195.30.85.193" ], @@ -152861,7 +153356,7 @@ ], "title": "Kreisverband Lindau - Bündnis 90 / DIE GRÜNEN" }, - "duration": 244, + "duration": 268, "error": null, "responsive": { "document_width": { @@ -152908,7 +153403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 268 }, "RESPONSIVE": { "score": 1, @@ -152949,9 +153444,9 @@ "resolved_hostname": "www.gruenekranenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekranenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152993,7 +153488,7 @@ "opengraph": null, "title": "Ortsverband Kranenburg: Home" }, - "duration": 170, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -153041,7 +153536,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -153081,9 +153576,9 @@ "resolved_hostname": "www.gruenemaintal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenemaintal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153125,7 +153620,7 @@ "opengraph": null, "title": "Ortsverband Maintal: Startseite" }, - "duration": 191, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -153173,7 +153668,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -153213,9 +153708,9 @@ "resolved_hostname": "www.gruenestadtbergen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenestadtbergen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153257,7 +153752,7 @@ "opengraph": null, "title": "Ortsverband Stadtbergen: Startseite" }, - "duration": 199, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -153280,6 +153775,138 @@ "level": "DE:ORTSVERBAND", "state": "Bayern" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 201 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruenetir.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruenetir.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruenetir.de" + }, + "www.gruenetir.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruenetir.de" + } + }, + "icons": { + "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "http://gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "http://www.gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "https://gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "https://www.gruenetir.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne Kreis Tirschenreuth: Startseite" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruenetir.de/startseite/" + } + ] + }, + "input_url": "https://gruenetir.de/", + "meta": { + "city": null, + "district": "Tirschenreuth", + "level": "DE:KREISVERBAND", + "state": "Bayern" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -153323,138 +153950,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://gruenetir.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruenetir.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruenetir.de" - }, - "www.gruenetir.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruenetir.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "http://gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "http://www.gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "https://gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "https://www.gruenetir.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne Kreis Tirschenreuth: Startseite" - }, - "duration": 191, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruenetir.de/startseite/" - } - ] - }, - "input_url": "https://gruenetir.de/", - "meta": { - "city": null, - "district": "Tirschenreuth", - "level": "DE:KREISVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 191 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, { "details": { "canonical_urls": [ @@ -153480,9 +153975,9 @@ "resolvable": false } }, - "icons": [ - "c3c082209d31545ba47f3ac00eac1136.png" - ], + "icons": { + "https://gud-zwingenberg.de/wp-content/uploads/2016/04/cropped-logo_gud_rund_gruen-300x300-150x150.png": "c3c082209d31545ba47f3ac00eac1136.png" + }, "ipv4_addresses": [ "81.169.145.149" ], @@ -153528,7 +154023,7 @@ ], "title": "GUD – Gemeinschaft für Umweltschutz und Demokratie – Zwingenberg und Rodau" }, - "duration": 276, + "duration": 897, "error": null, "responsive": { "document_width": { @@ -153575,7 +154070,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 897 }, "RESPONSIVE": { "score": 1, @@ -153772,9 +154267,10 @@ "resolved_hostname": "www.ingolstadt-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://ingolstadt-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.ingolstadt-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153816,7 +154312,7 @@ "opengraph": null, "title": "Grüner Kreisverband Ingolstadt: Startseite" }, - "duration": 200, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -153839,7 +154335,7 @@ "opengraph": null, "title": "Grüner Kreisverband Ingolstadt: Startseite" }, - "duration": 241, + "duration": 300, "error": null, "responsive": { "document_width": { @@ -153888,7 +154384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -153980,7 +154476,7 @@ ], "title": "Bündnis 90/Die Grünen – Kreisverband Gießen" }, - "duration": 253, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -154028,7 +154524,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 253 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -154072,9 +154568,9 @@ "resolved_hostname": "www.kreis.gruene-merzig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://kreis.gruene-merzig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -154120,7 +154616,7 @@ "opengraph": null, "title": "Kreisverband Merzig-Wadern - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 311, + "duration": 522, "error": null, "responsive": { "document_width": { @@ -154167,7 +154663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 522 }, "RESPONSIVE": { "score": 1, @@ -154211,9 +154707,9 @@ "resolved_hostname": "www.mehr-gruen-fuer-blankenheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://mehr-gruen-fuer-blankenheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.214.51.177" ], @@ -154265,7 +154761,7 @@ ], "title": "Bündnis 90/Die Grünen Blankenheim" }, - "duration": 331, + "duration": 299, "error": null, "responsive": { "document_width": { @@ -154312,7 +154808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 331 + "value": 299 }, "RESPONSIVE": { "score": 1, @@ -154356,9 +154852,9 @@ "resolved_hostname": "www.netzwerk.gruene-surfer.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://netzwerk.gruene-surfer.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -154404,7 +154900,7 @@ "opengraph": null, "title": "Netzwerk - BÜNDNIS 90/DIE GRÜNEN – Saarland" }, - "duration": 339, + "duration": 358, "error": null, "responsive": { "document_width": { @@ -154451,7 +154947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 358 }, "RESPONSIVE": { "score": 1, @@ -154537,7 +155033,7 @@ ], "title": "Bündnis 90/Die Grünen Kreisverband Offenbach-Land" }, - "duration": 241, + "duration": 400, "error": null, "responsive": { "document_width": { @@ -154586,7 +155082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 400 }, "RESPONSIVE": { "score": 1, @@ -154629,9 +155125,9 @@ "resolvable": false } }, - "icons": [ - "0073bd6a9bfa8259f684bb664bd28c9a.png" - ], + "icons": { + "https://sh-gruene.de/dateien/cropped-Website_Icon-32x32.png": "0073bd6a9bfa8259f684bb664bd28c9a.png" + }, "ipv4_addresses": [ "134.119.234.75" ], @@ -154667,7 +155163,7 @@ "opengraph": null, "title": "GRÜNE Schleswig-Holstein" }, - "duration": 453, + "duration": 471, "error": null, "responsive": { "document_width": { @@ -154714,7 +155210,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 453 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -154801,7 +155297,7 @@ ], "title": "Bündnis 90/Die Grünen – Stadtverband Gießen" }, - "duration": 225, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -154850,7 +155346,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -154890,9 +155386,9 @@ "resolved_hostname": "www.buendnisgruenes-opr.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.buendnisgruenes-opr.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -154934,7 +155430,7 @@ "opengraph": null, "title": "KV Ostprignitz-Ruppin: Home" }, - "duration": 230, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -154982,7 +155478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -155010,7 +155506,7 @@ "hostnames": { "facebook.com": { "ip_addresses": [ - "157.240.20.35" + "31.13.92.36" ], "resolvable": true, "resolved_hostname": "facebook.com" @@ -155019,11 +155515,11 @@ "resolvable": false } }, - "icons": [ - "2c77da304308884f973dc578f33f22f3.ico" - ], + "icons": { + "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico": "2c77da304308884f973dc578f33f22f3.ico" + }, "ipv4_addresses": [ - "157.240.20.35" + "31.13.92.36" ], "resolvable_urls": [ { @@ -155056,7 +155552,7 @@ ], "title": "Facebook – Anmelden oder Registrieren" }, - "duration": 233, + "duration": 295, "error": null, "responsive": { "document_width": { @@ -155085,7 +155581,7 @@ ], "title": "Facebook – Anmelden oder Registrieren" }, - "duration": 253, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -155133,7 +155629,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 243 + "value": 294 }, "RESPONSIVE": { "score": 0, @@ -155179,9 +155675,10 @@ "resolved_hostname": "www.fgl-forchheim.de" } }, - "icons": [ - "8894791e84f5cafebd47311d14a3703c.ico" - ], + "icons": { + "https://fgl-forchheim.de/templates/jp-galeria/favicon.ico": "8894791e84f5cafebd47311d14a3703c.ico", + "https://www.fgl-forchheim.de/templates/jp-galeria/favicon.ico": "8894791e84f5cafebd47311d14a3703c.ico" + }, "ipv4_addresses": [ "109.237.140.46" ], @@ -155234,7 +155731,7 @@ ], "title": "STARK SEIN||Home" }, - "duration": 407, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -155268,7 +155765,7 @@ ], "title": "STARK SEIN||Home" }, - "duration": 338, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -155316,7 +155813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 356 }, "RESPONSIVE": { "score": 1, @@ -155356,9 +155853,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gbl-hemsbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gbl-hemsbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -155390,7 +155888,7 @@ "opengraph": null, "title": "GBL Hemsbach: GBL-Hemsbach" }, - "duration": 626, + "duration": 503, "error": null, "responsive": { "document_width": { @@ -155413,7 +155911,7 @@ "opengraph": null, "title": "GBL Hemsbach: GBL-Hemsbach" }, - "duration": 429, + "duration": 570, "error": null, "responsive": { "document_width": { @@ -155462,7 +155960,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 528 + "value": 536 }, "RESPONSIVE": { "score": 1, @@ -155549,7 +156047,7 @@ ], "title": "Kreisverband Groß-Gerau" }, - "duration": 808, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -155598,7 +156096,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 808 + "value": 443 }, "RESPONSIVE": { "score": 1, @@ -155638,9 +156136,9 @@ "resolved_hostname": "www.gruene-ahrensburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ahrensburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -155682,7 +156180,7 @@ "opengraph": null, "title": "Ortsverband Ahrensburg: Home" }, - "duration": 205, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -155730,7 +156228,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -155770,6 +156268,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -155798,7 +156297,7 @@ "opengraph": null, "title": "Grüne Aidlingen: HOME" }, - "duration": 353, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -155855,9 +156354,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -155871,7 +156369,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 386 + "value": 383 }, "RESPONSIVE": { "score": 0, @@ -155888,7 +156386,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -155912,6 +156410,7 @@ "resolved_hostname": "www.gruene-altenstadt.de" } }, + "icons": {}, "ipv4_addresses": [ "104.253.224.14" ], @@ -155956,7 +156455,7 @@ "opengraph": null, "title": "aktuelle Röcke für,hosen männer,business hosen damen" }, - "duration": 436, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -155989,9 +156488,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -156006,7 +156504,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 436 + "value": 173 }, "RESPONSIVE": { "score": 0, @@ -156022,7 +156520,7 @@ "value": true } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -156048,9 +156546,9 @@ "resolvable": false } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-alzenau.de/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "81.169.145.73" ], @@ -156086,7 +156584,7 @@ "opengraph": null, "title": "Start" }, - "duration": 57, + "duration": 876, "error": null, "responsive": { "document_width": { @@ -156131,9 +156629,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 57 + "value": 876 }, "RESPONSIVE": { "score": 1, @@ -156150,7 +156648,7 @@ "value": false } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -156174,9 +156672,9 @@ "resolved_hostname": "www.gruene-aoe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-aoe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156218,7 +156716,7 @@ "opengraph": null, "title": "Kreisverband Altötting: Aktuelles" }, - "duration": 194, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -156266,7 +156764,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -156343,7 +156841,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 647, + "duration": 394, "error": null, "responsive": { "document_width": { @@ -156391,7 +156889,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 647 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -156432,9 +156930,9 @@ "resolved_hostname": "www.gruene-bad-driburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-driburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156476,7 +156974,7 @@ "opengraph": null, "title": "GRÜNE Driburg: Driburg aktuell" }, - "duration": 230, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -156524,7 +157022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -156564,9 +157062,9 @@ "resolved_hostname": "www.gruene-bad-oldesloe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-oldesloe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156608,7 +157106,7 @@ "opengraph": null, "title": "Die Grünen Bad Oldesloe: Aktuelles" }, - "duration": 173, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -156656,7 +157154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 173 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -156742,7 +157240,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Bad Schwalbach" }, - "duration": 201, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -156791,7 +157289,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -156831,9 +157329,9 @@ "resolved_hostname": "www.gruene-bad-wildungen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-wildungen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156875,7 +157373,7 @@ "opengraph": null, "title": "Die GRÜNE Seite BW: Zuhauseseite" }, - "duration": 192, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -156923,7 +157421,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -156963,9 +157461,9 @@ "resolved_hostname": "www.gruene-bargteheide.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bargteheide.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157007,7 +157505,7 @@ "opengraph": null, "title": "Ortsverband Bargteheide: Home" }, - "duration": 200, + "duration": 277, "error": null, "responsive": { "document_width": { @@ -157055,7 +157553,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 277 }, "RESPONSIVE": { "score": 1, @@ -157095,9 +157593,9 @@ "resolved_hostname": "www.gruene-bayreuth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bayreuth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157139,7 +157637,7 @@ "opengraph": null, "title": "Grüne Bayreuth: Kreisverband Bayreuth-Stadt" }, - "duration": 194, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -157187,7 +157685,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -157227,9 +157725,9 @@ "resolved_hostname": "www.gruene-bb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157271,7 +157769,7 @@ "opengraph": null, "title": "Böblingen/Schönbuch: Startseite" }, - "duration": 199, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -157319,7 +157817,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -157359,9 +157857,9 @@ "resolved_hostname": "www.gruene-beelitz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-beelitz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157403,7 +157901,7 @@ "opengraph": null, "title": "Basisverband Beelitz: Politik mit Biss" }, - "duration": 162, + "duration": 189, "error": null, "responsive": { "document_width": { @@ -157451,7 +157949,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 189 }, "RESPONSIVE": { "score": 1, @@ -157491,9 +157989,9 @@ "resolved_hostname": "www.gruene-bergstrasse.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergstrasse.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157535,7 +158033,7 @@ "opengraph": null, "title": "Grüne Bergstraße: Aktuell" }, - "duration": 209, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -157583,7 +158081,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 231 }, "RESPONSIVE": { "score": 1, @@ -157623,9 +158121,9 @@ "resolved_hostname": "www.gruene-bgl.de" } }, - "icons": [ - "bf7518d64fd14654a17fbdbd168419dd.ico" - ], + "icons": { + "https://www.gruene-bgl.de/fileadmin/gruene/template/grafix/favicon_gruene.ico": "bf7518d64fd14654a17fbdbd168419dd.ico" + }, "ipv4_addresses": [ "134.119.253.53" ], @@ -157666,7 +158164,7 @@ ], "title": "Die Grünen: Kreisverband Berchtesgadener Land" }, - "duration": 406, + "duration": 366, "error": null, "responsive": { "document_width": { @@ -157714,7 +158212,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 406 + "value": 366 }, "RESPONSIVE": { "score": 0, @@ -157755,9 +158253,10 @@ "resolved_hostname": "www.gruene-bodenseekreis.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -157799,7 +158298,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 488, + "duration": 507, "error": null, "responsive": { "document_width": { @@ -157822,7 +158321,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 329, + "duration": 958, "error": null, "responsive": { "document_width": { @@ -157871,7 +158370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 408 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -157912,9 +158411,10 @@ "resolved_hostname": "www.gruene-bodenseekreis.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -157956,7 +158456,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 482, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -157979,7 +158479,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 865, + "duration": 676, "error": null, "responsive": { "document_width": { @@ -158028,7 +158528,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 478 }, "RESPONSIVE": { "score": 1, @@ -158068,9 +158568,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-boeblingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-boeblingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158102,7 +158603,7 @@ "opengraph": null, "title": "Grüne Kreisverband Böblingen: Kreisverband Böblingen" }, - "duration": 476, + "duration": 428, "error": null, "responsive": { "document_width": { @@ -158125,7 +158626,7 @@ "opengraph": null, "title": "Grüne Kreisverband Böblingen: Kreisverband Böblingen" }, - "duration": 388, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -158174,7 +158675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 432 + "value": 305 }, "RESPONSIVE": { "score": 1, @@ -158214,9 +158715,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bottwartal.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158248,7 +158749,7 @@ "opengraph": null, "title": "Grüne Bottwartal: Aktuelles" }, - "duration": 588, + "duration": 654, "error": null, "responsive": { "document_width": { @@ -158296,7 +158797,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 588 + "value": 654 }, "RESPONSIVE": { "score": 1, @@ -158383,7 +158884,7 @@ ], "title": "Stadtverband Bündnis 90/Die Grünen Braunfels" }, - "duration": 197, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -158432,7 +158933,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -158471,9 +158972,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bretten.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158502,7 +159003,7 @@ "opengraph": null, "title": "Grüne Bretten: Home" }, - "duration": 514, + "duration": 581, "error": null, "responsive": { "document_width": { @@ -158550,7 +159051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 581 }, "RESPONSIVE": { "score": 0, @@ -158591,9 +159092,9 @@ "resolved_hostname": "www.gruene-btw-landshut.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-btw-landshut.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -158635,7 +159136,7 @@ "opengraph": null, "title": "KV Landshut - Stadt: Willkommen bei den Landshuter Grünen" }, - "duration": 201, + "duration": 332, "error": null, "responsive": { "document_width": { @@ -158683,7 +159184,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 332 }, "RESPONSIVE": { "score": 1, @@ -158722,9 +159223,9 @@ "resolvable": false } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "https://gruene-buedingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "81.169.145.78" ], @@ -158756,7 +159257,7 @@ "opengraph": null, "title": "Home - Bündnis 90 / Die Grünen Büdingen" }, - "duration": 316, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -158804,7 +159305,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 316 + "value": 347 }, "RESPONSIVE": { "score": 1, @@ -158891,7 +159392,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortsverband Butzbach" }, - "duration": 651, + "duration": 406, "error": null, "responsive": { "document_width": { @@ -158940,7 +159441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 651 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -158980,9 +159481,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159024,7 +159525,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 209, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -159072,7 +159573,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -159112,9 +159613,9 @@ "resolved_hostname": "www.gruene-cottbus.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-cottbus.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159156,7 +159657,7 @@ "opengraph": null, "title": "KREISVERBAND COTTBUS: Home" }, - "duration": 198, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -159204,7 +159705,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -159290,7 +159791,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Kreisverband Darmstadt-Dieburg" }, - "duration": 263, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -159339,7 +159840,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -159379,9 +159880,9 @@ "resolved_hostname": "www.gruene-dahme-spreewald.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-dahme-spreewald.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159423,7 +159924,7 @@ "opengraph": null, "title": "KV Dahme-Spreewald: Aktuelles" }, - "duration": 198, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -159471,7 +159972,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -159557,7 +160058,7 @@ ], "title": "Bündnis 90/Die Grünen Stadtverband Dillenburg" }, - "duration": 208, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -159606,7 +160107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -159647,9 +160148,10 @@ "resolved_hostname": "www.gruene-dillingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dillingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-dillingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159691,7 +160193,7 @@ "opengraph": null, "title": "Kreisverband Dillingen: Startseite" }, - "duration": 195, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -159714,7 +160216,7 @@ "opengraph": null, "title": "Kreisverband Dillingen: Startseite" }, - "duration": 196, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -159763,7 +160265,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -159802,9 +160304,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-ditzingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -159833,7 +160335,7 @@ "opengraph": null, "title": "Die Grünen in Ditzingen: Ortsverband Ditzingen" }, - "duration": 604, + "duration": 720, "error": null, "responsive": { "document_width": { @@ -159881,7 +160383,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 720 }, "RESPONSIVE": { "score": 0, @@ -159922,9 +160424,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-dossenheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-dossenheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -159956,7 +160459,7 @@ "opengraph": null, "title": "Grüne Dossenheim: Ortsverband Dossenheim" }, - "duration": 601, + "duration": 577, "error": null, "responsive": { "document_width": { @@ -159979,7 +160482,7 @@ "opengraph": null, "title": "Grüne Dossenheim: Ortsverband Dossenheim" }, - "duration": 346, + "duration": 686, "error": null, "responsive": { "document_width": { @@ -160028,7 +160531,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 632 }, "RESPONSIVE": { "score": 1, @@ -160115,7 +160618,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Dreieich" }, - "duration": 273, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -160164,7 +160667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -160204,9 +160707,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-edingen-neckarhausen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-edingen-neckarhausen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -160238,7 +160742,7 @@ "opengraph": null, "title": "Grüne Edingen-Neckarhausen: HOME" }, - "duration": 551, + "duration": 594, "error": null, "responsive": { "document_width": { @@ -160261,7 +160765,7 @@ "opengraph": null, "title": "Grüne Edingen-Neckarhausen: HOME" }, - "duration": 798, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -160310,7 +160814,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 621 }, "RESPONSIVE": { "score": 1, @@ -160351,9 +160855,9 @@ "resolved_hostname": "www.gruene-eichstaett.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-eichstaett.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160395,7 +160899,7 @@ "opengraph": null, "title": "Kreisverband Eichstätt: Home" }, - "duration": 165, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -160443,7 +160947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -160483,9 +160987,9 @@ "resolved_hostname": "www.gruene-erding.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erding.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160527,7 +161031,7 @@ "opengraph": null, "title": "Kreisverband Erding: AKTUELLES" }, - "duration": 203, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -160575,7 +161079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -160614,9 +161118,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-erdmannhausen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -160648,7 +161152,7 @@ "opengraph": null, "title": "Grüne OV Erdmannhausen: gruene-erdmannhausen.de" }, - "duration": 443, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -160696,7 +161200,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 443 + "value": 616 }, "RESPONSIVE": { "score": 1, @@ -160737,9 +161241,9 @@ "resolved_hostname": "www.gruene-erlangen-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erlangen-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160781,7 +161285,7 @@ "opengraph": null, "title": "Erlangen-Land: Home" }, - "duration": 195, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -160829,7 +161333,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 208 }, "RESPONSIVE": { "score": 0, @@ -160873,9 +161377,9 @@ "resolved_hostname": "www.gruene-euskirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-euskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -160927,7 +161431,7 @@ ], "title": "Bündnis 90/Die Grünen KV Euskirchen" }, - "duration": 504, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -160974,7 +161478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 504 + "value": 578 }, "RESPONSIVE": { "score": 1, @@ -161013,9 +161517,7 @@ "resolvable": false } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "193.141.3.69" ], @@ -161044,7 +161546,7 @@ "opengraph": null, "title": "Die Grünen in Fellbach - public" }, - "duration": 156, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -161092,7 +161594,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 156 + "value": 195 }, "RESPONSIVE": { "score": 0, @@ -161133,9 +161635,9 @@ "resolved_hostname": "www.gruene-frankenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frankenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161177,7 +161679,7 @@ "opengraph": null, "title": "Ortsverband Frankenberg: Startseite" }, - "duration": 185, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -161225,7 +161727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 185 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -161265,9 +161767,9 @@ "resolved_hostname": "www.gruene-frankfurt-oder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frankfurt-oder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161309,7 +161811,7 @@ "opengraph": null, "title": "Frankfurt (Oder): Start" }, - "duration": 186, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -161357,7 +161859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -161398,9 +161900,10 @@ "resolved_hostname": "www.gruene-freigericht.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "https://gruene-freigericht.de/image/index.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "https://www.gruene-freigericht.de/image/index.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "89.107.70.244" ], @@ -161427,7 +161930,7 @@ } ], "responsive": { - "min_width": 382 + "min_width": 1043 }, "urlchecks": [ { @@ -161439,7 +161942,7 @@ "opengraph": null, "title": "Gruene Freigericht" }, - "duration": 128, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -161462,14 +161965,14 @@ "opengraph": null, "title": "Gruene Freigericht" }, - "duration": 133, + "duration": 108, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1043, "1920x1080": 1920, - "320x480": 382, - "768x1024": 768 + "320x480": 1043, + "768x1024": 1043 }, "viewport_meta_tag": null }, @@ -161511,7 +162014,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 130 + "value": 114 }, "RESPONSIVE": { "score": 0, @@ -161551,9 +162054,9 @@ "resolved_hostname": "www.gruene-frg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161595,7 +162098,7 @@ "opengraph": null, "title": "Freyung-Grafenau: AnsprechpartnerInnen" }, - "duration": 192, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -161643,7 +162146,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 296 }, "RESPONSIVE": { "score": 1, @@ -161796,9 +162299,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-gerlingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -161830,7 +162333,7 @@ "opengraph": null, "title": "Grüne Gerlingen: gruene-gerlingen.de" }, - "duration": 436, + "duration": 534, "error": null, "responsive": { "document_width": { @@ -161878,7 +162381,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 436 + "value": 534 }, "RESPONSIVE": { "score": 1, @@ -161919,9 +162422,9 @@ "resolved_hostname": "www.gruene-germering.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-germering.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161963,7 +162466,7 @@ "opengraph": null, "title": "Ortsverband GERMERING: Home" }, - "duration": 266, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -162011,7 +162514,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 266 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -162055,9 +162558,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162114,7 +162617,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 931, + "duration": 10, "error": null, "responsive": { "document_width": { @@ -162159,9 +162662,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 931 + "value": 10 }, "RESPONSIVE": { "score": 1, @@ -162177,7 +162680,7 @@ "value": true } }, - "score": 9.5 + "score": 10.0 }, { "details": { @@ -162205,9 +162708,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162264,7 +162767,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 617, + "duration": 732, "error": null, "responsive": { "document_width": { @@ -162311,7 +162814,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 617 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -162355,9 +162858,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162414,7 +162917,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 806, + "duration": 138, "error": null, "responsive": { "document_width": { @@ -162461,7 +162964,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 806 + "value": 138 }, "RESPONSIVE": { "score": 1, @@ -162505,9 +163008,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162564,7 +163067,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 654, + "duration": 782, "error": null, "responsive": { "document_width": { @@ -162611,7 +163114,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 654 + "value": 782 }, "RESPONSIVE": { "score": 1, @@ -162655,9 +163158,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162714,7 +163217,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 665, + "duration": 661, "error": null, "responsive": { "document_width": { @@ -162761,7 +163264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 665 + "value": 661 }, "RESPONSIVE": { "score": 1, @@ -162805,9 +163308,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162864,7 +163367,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 753, + "duration": 740, "error": null, "responsive": { "document_width": { @@ -162911,7 +163414,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 753 + "value": 740 }, "RESPONSIVE": { "score": 1, @@ -162950,6 +163453,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "81.169.145.66" ], @@ -162978,7 +163482,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Graben-Neudorf" }, - "duration": 124, + "duration": 132, "error": null, "responsive": { "document_width": { @@ -163011,9 +163515,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -163027,7 +163530,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 124 + "value": 132 }, "RESPONSIVE": { "score": 0, @@ -163044,7 +163547,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -163068,9 +163571,9 @@ "resolved_hostname": "www.gruene-groebenzell.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-groebenzell.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163112,7 +163615,7 @@ "opengraph": null, "title": "Ortsverband Gröbenzell: Home" }, - "duration": 231, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -163160,7 +163663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -163200,9 +163703,9 @@ "resolved_hostname": "www.gruene-grosshansdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grosshansdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163244,7 +163747,7 @@ "opengraph": null, "title": "Ortsverband Großhansdorf: Home" }, - "duration": 191, + "duration": 284, "error": null, "responsive": { "document_width": { @@ -163292,7 +163795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 284 }, "RESPONSIVE": { "score": 1, @@ -163336,9 +163839,9 @@ "resolved_hostname": "www.gruene-hamburg.de" } }, - "icons": [ - "2b4be9b11156199e96acb71392cc14ce.png" - ], + "icons": { + "https://www.gruene-hamburg.de/wp-content/themes/Joseph-knows-best-master/favicon.png": "2b4be9b11156199e96acb71392cc14ce.png" + }, "ipv4_addresses": [ "188.94.25.87" ], @@ -163395,11 +163898,11 @@ ], "title": "Startseite - Grüne Hamburg" }, - "duration": 530, + "duration": 571, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1076, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -163442,7 +163945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 530 + "value": 571 }, "RESPONSIVE": { "score": 1, @@ -163482,9 +163985,9 @@ "resolved_hostname": "www.gruene-havelland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-havelland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163526,7 +164029,7 @@ "opengraph": null, "title": "Kreisverband Havelland: Startseite" }, - "duration": 196, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -163574,7 +164077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -163614,9 +164117,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-heilbronn.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-heilbronn.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -163648,7 +164152,7 @@ "opengraph": null, "title": "Grüne Heilbronn: Kreisverband Heilbronn" }, - "duration": 471, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -163671,7 +164175,7 @@ "opengraph": null, "title": "Grüne Heilbronn: Kreisverband Heilbronn" }, - "duration": 449, + "duration": 45, "error": null, "responsive": { "document_width": { @@ -163720,7 +164224,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 460 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -163761,9 +164265,9 @@ "resolved_hostname": "www.gruene-herrenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-herrenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163805,7 +164309,7 @@ "opengraph": null, "title": "OV Herrenberg und Gäu: Aktuelles" }, - "duration": 206, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -163853,7 +164357,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -163889,6 +164393,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "52.210.189.158" ], @@ -163928,7 +164433,7 @@ ], "title": "Herzlich Willkommen auf den Seiten der GRÜNEN - Höchst im Odenwald - gruene-hoechsts Jimdo-Page!" }, - "duration": 258, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -163961,9 +164466,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -163977,7 +164481,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 312 }, "RESPONSIVE": { "score": 0, @@ -163994,7 +164498,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -164018,9 +164522,9 @@ "resolved_hostname": "www.gruene-huettenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-huettenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -164062,7 +164566,7 @@ "opengraph": null, "title": "Ortsverband Hüttenberg: Home" }, - "duration": 207, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -164110,7 +164614,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -164153,9 +164657,9 @@ "resolved_hostname": "www.gruene-iserlohn.de" } }, - "icons": [ - "d755fb5c537e96bb5380bd3775dc1113.ico" - ], + "icons": { + "https://www.gruene-iserlohn.de/fileadmin/favicon.ico": "d755fb5c537e96bb5380bd3775dc1113.ico" + }, "ipv4_addresses": [ "85.13.151.44" ], @@ -164208,7 +164712,7 @@ ], "title": "Aktuelles - BÜNDNIS 90/DIE GRÜNEN Iserlohn" }, - "duration": 280, + "duration": 393, "error": null, "responsive": { "document_width": { @@ -164255,7 +164759,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 280 + "value": 393 }, "RESPONSIVE": { "score": 1, @@ -164297,9 +164801,9 @@ "resolvable": false } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-kahl.de/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "81.169.145.172" ], @@ -164335,7 +164839,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 357, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -164382,7 +164886,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 648 }, "RESPONSIVE": { "score": 1, @@ -164462,7 +164966,7 @@ "opengraph": null, "title": null }, - "duration": 175, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -164485,7 +164989,7 @@ "opengraph": null, "title": null }, - "duration": 210, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -164535,7 +165039,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 204 }, "RESPONSIVE": { "score": 0, @@ -164633,7 +165137,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Kevelaer – Wir Grünen in Kevelaer" }, - "duration": 324, + "duration": 358, "error": null, "responsive": { "document_width": { @@ -164682,7 +165186,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 324 + "value": 358 }, "RESPONSIVE": { "score": 1, @@ -164722,9 +165226,9 @@ "resolved_hostname": "www.gruene-kg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-kg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "176.28.23.241" ], @@ -164769,7 +165273,7 @@ "opengraph": null, "title": "BÜNDIS 90/DIE GRÜNEN Bad Kissingen: Die Grünen in Landkreis Bad Kissingen" }, - "duration": 145, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -164817,7 +165321,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 145 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -164861,9 +165365,9 @@ "resolved_hostname": "www.gruene-kierspe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-kierspe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.144.100" ], @@ -164915,7 +165419,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN Kierspe" }, - "duration": 751, + "duration": 800, "error": null, "responsive": { "document_width": { @@ -164962,7 +165466,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 751 + "value": 800 }, "RESPONSIVE": { "score": 1, @@ -165002,9 +165506,9 @@ "resolved_hostname": "www.gruene-kitzingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kitzingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165046,7 +165550,7 @@ "opengraph": null, "title": "Kreisverband Kitzingen: Home" }, - "duration": 228, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -165094,7 +165598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -165134,9 +165638,9 @@ "resolved_hostname": "www.gruene-kleinmachnow.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kleinmachnow.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165178,7 +165682,7 @@ "opengraph": null, "title": "Grüne Kleinmachnow: Home" }, - "duration": 208, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -165226,7 +165730,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -165312,7 +165816,7 @@ ], "title": "Bündnis 90/Die Grünen – Ortsverband Königstein" }, - "duration": 667, + "duration": 532, "error": null, "responsive": { "document_width": { @@ -165361,7 +165865,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 667 + "value": 532 }, "RESPONSIVE": { "score": 1, @@ -165447,7 +165951,7 @@ ], "title": "Bündnis 90/Die Grünen Korbach" }, - "duration": 469, + "duration": 528, "error": null, "responsive": { "document_width": { @@ -165496,7 +166000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 528 }, "RESPONSIVE": { "score": 1, @@ -165535,9 +166039,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-korntal-muenchingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -165569,7 +166073,7 @@ "opengraph": null, "title": "Grüne OV Korntal-Münchingen: gruene-korntal-münchingen.de" }, - "duration": 658, + "duration": 562, "error": null, "responsive": { "document_width": { @@ -165617,7 +166121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 658 + "value": 562 }, "RESPONSIVE": { "score": 1, @@ -165657,9 +166161,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-kreis-calw.de/fileadmin/KV2015/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -165691,7 +166195,7 @@ "opengraph": null, "title": "Grüne Calw: Aktuelles" }, - "duration": 587, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -165739,7 +166243,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 587 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -165807,7 +166311,7 @@ "opengraph": null, "title": "Die Grünen-Kronach" }, - "duration": 127, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -165856,7 +166360,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 127 + "value": 126 }, "RESPONSIVE": { "score": 0, @@ -165897,9 +166401,9 @@ "resolved_hostname": "www.gruene-kulmbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kulmbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165941,7 +166445,7 @@ "opengraph": null, "title": "Kreisverband Kulmbach: Home" }, - "duration": 201, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -165989,7 +166493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 237 }, "RESPONSIVE": { "score": 0, @@ -166028,9 +166532,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-ladenburg.de/fileadmin/KV2014/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166047,7 +166551,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 340, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -166062,14 +166566,14 @@ "opengraph": null, "title": "Grüne Ladenburg: Start" }, - "duration": 481, + "duration": 787, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 + "320x480": 340, + "768x1024": 902 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -166110,7 +166614,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 481 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -166151,9 +166655,9 @@ "resolved_hostname": "www.gruene-lahn-dill.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lahn-dill.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166195,7 +166699,7 @@ "opengraph": null, "title": "Kreisverband Lahn-Dill: Home" }, - "duration": 220, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -166243,7 +166747,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -166283,9 +166787,9 @@ "resolved_hostname": "www.gruene-lampertheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lampertheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166327,7 +166831,7 @@ "opengraph": null, "title": "Grüne Lampertheim: Startseite" }, - "duration": 196, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -166375,7 +166879,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 191 }, "RESPONSIVE": { "score": 0, @@ -166458,7 +166962,7 @@ ], "title": "Bündnis 90/ Die Grünen Ortsverband Langen" }, - "duration": 511, + "duration": 445, "error": null, "responsive": { "document_width": { @@ -166507,7 +167011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 511 + "value": 445 }, "RESPONSIVE": { "score": 0, @@ -166546,9 +167050,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-lauffen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166580,7 +167084,7 @@ "opengraph": null, "title": "Grüne OV Lauffen: HOME" }, - "duration": 492, + "duration": 503, "error": null, "responsive": { "document_width": { @@ -166628,7 +167132,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 492 + "value": 503 }, "RESPONSIVE": { "score": 1, @@ -166669,9 +167173,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-leimen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-leimen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166703,7 +167208,7 @@ "opengraph": null, "title": "Ortsverband Leimen: Ortsverband Leimen" }, - "duration": 159, + "duration": 140, "error": null, "responsive": { "document_width": { @@ -166726,7 +167231,7 @@ "opengraph": null, "title": "Ortsverband Leimen: Ortsverband Leimen" }, - "duration": 812, + "duration": 971, "error": null, "responsive": { "document_width": { @@ -166775,7 +167280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 486 + "value": 556 }, "RESPONSIVE": { "score": 1, @@ -166815,9 +167320,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-leingarten.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166846,7 +167351,7 @@ "opengraph": null, "title": "KV Oberseite: Home" }, - "duration": 648, + "duration": 712, "error": null, "responsive": { "document_width": { @@ -166894,7 +167399,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 648 + "value": 712 }, "RESPONSIVE": { "score": 0, @@ -166935,9 +167440,9 @@ "resolved_hostname": "www.gruene-leipzig.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-leipzig.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166979,7 +167484,7 @@ "opengraph": null, "title": "Kreisverband Leipzig: Startseite" }, - "duration": 209, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -167027,7 +167532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -167067,9 +167572,9 @@ "resolved_hostname": "www.gruene-lemgo.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lemgo.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -167111,7 +167616,7 @@ "opengraph": null, "title": "Ortsverband Lemgo: Home" }, - "duration": 199, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -167159,7 +167664,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -167204,9 +167709,9 @@ "resolved_hostname": "www.gruene-leopoldshoehe.de" } }, - "icons": [ - "694f7df47d355683105b4d59bbaa4b37.ico" - ], + "icons": { + "https://www.gruene-leopoldshoehe.de/wp-content/uploads/favicon.ico": "694f7df47d355683105b4d59bbaa4b37.ico" + }, "ipv4_addresses": [ "217.160.0.166" ], @@ -167252,7 +167757,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – OV Leo | Ortsverband Leopoldshöhe" }, - "duration": 761, + "duration": 737, "error": null, "responsive": { "document_width": { @@ -167279,7 +167784,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – OV Leo | Ortsverband Leopoldshöhe" }, - "duration": 758, + "duration": 808, "error": null, "responsive": { "document_width": { @@ -167327,7 +167832,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 760 + "value": 772 }, "RESPONSIVE": { "score": 1, @@ -167363,9 +167868,9 @@ "resolvable": false } }, - "icons": [ - "78f719ae961451e9ad3347283e98daee.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/sc1e5371276d5e783/img/favicon.png?t=1455035012": "78f719ae961451e9ad3347283e98daee.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -167408,7 +167913,7 @@ ], "title": "Gruene-Lichtenfels - gruene-lichtenfels-hessen" }, - "duration": 282, + "duration": 377, "error": null, "responsive": { "document_width": { @@ -167456,7 +167961,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 282 + "value": 377 }, "RESPONSIVE": { "score": 1, @@ -167502,9 +168007,9 @@ "resolved_hostname": "www.gruene-limburg-weilburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-limburg-weilburg.de/cms/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.97" ], @@ -167557,7 +168062,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 535, + "duration": 676, "error": null, "responsive": { "document_width": { @@ -167604,7 +168109,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 535 + "value": 676 }, "RESPONSIVE": { "score": 1, @@ -167651,9 +168156,10 @@ "resolved_hostname": "www.gruene-limburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-limburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-limburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.100" ], @@ -167705,7 +168211,7 @@ ], "title": "Bündnis 90/Die Grünen Limburg" }, - "duration": 779, + "duration": 730, "error": null, "responsive": { "document_width": { @@ -167738,7 +168244,7 @@ ], "title": "Bündnis 90/Die Grünen Limburg" }, - "duration": 847, + "duration": 826, "error": null, "responsive": { "document_width": { @@ -167786,7 +168292,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 813 + "value": 778 }, "RESPONSIVE": { "score": 1, @@ -167825,9 +168331,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-ludwigsburg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -167859,7 +168365,7 @@ "opengraph": null, "title": "Grüne KV Ludwigsburg: Grüne KV Ludwigsburg" }, - "duration": 465, + "duration": 560, "error": null, "responsive": { "document_width": { @@ -167907,7 +168413,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 465 + "value": 560 }, "RESPONSIVE": { "score": 1, @@ -167952,9 +168458,9 @@ "resolved_hostname": "www.gruene-mainz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-mainz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.136.92.237" ], @@ -168006,11 +168512,11 @@ ], "title": "Grüne Mainz" }, - "duration": 296, + "duration": 275, "error": null, "responsive": { "document_width": { - "1024x768": 1069, + "1024x768": 1024, "1920x1080": 1920, "320x480": 455, "768x1024": 768 @@ -168053,7 +168559,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 296 + "value": 275 }, "RESPONSIVE": { "score": 1, @@ -168096,9 +168602,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://xn--grne-maisach-elb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.66" ], @@ -168138,7 +168644,7 @@ ], "title": "Grüne Maisach" }, - "duration": 268, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -168185,7 +168691,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 268 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -168225,9 +168731,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-marbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -168259,7 +168765,7 @@ "opengraph": null, "title": "Grüne OV Marbach am Neckar: gruene-marbach.de" }, - "duration": 505, + "duration": 565, "error": null, "responsive": { "document_width": { @@ -168307,7 +168813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 505 + "value": 565 }, "RESPONSIVE": { "score": 1, @@ -168348,9 +168854,9 @@ "resolved_hostname": "www.gruene-marburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-marburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168377,7 +168883,7 @@ } ], "responsive": { - "min_width": 324, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -168392,13 +168898,13 @@ "opengraph": null, "title": "Grüne Marburg-Biedenkopf: STARTSEITE" }, - "duration": 195, + "duration": 222, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 324, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -168440,7 +168946,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -168480,9 +168986,9 @@ "resolved_hostname": "www.gruene-marburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-marburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168509,7 +169015,7 @@ } ], "responsive": { - "min_width": 324, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -168524,13 +169030,13 @@ "opengraph": null, "title": "Grüne Marburg-Biedenkopf: STARTSEITE" }, - "duration": 219, + "duration": 201, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 324, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -168572,7 +169078,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -168608,6 +169114,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "52.210.189.158" ], @@ -168647,7 +169154,7 @@ ], "title": "Förderung des Radfahrens - gruene-mauers Webseite!" }, - "duration": 298, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -168680,9 +169187,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -168696,7 +169202,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 298 + "value": 340 }, "RESPONSIVE": { "score": 0, @@ -168713,7 +169219,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -168736,9 +169242,9 @@ "resolvable": false } }, - "icons": [ - "d7b3cd2400f564d004e873ac1634874a.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s1a02c1fb7c7746a8/img/favicon.png?t=1389983714": "d7b3cd2400f564d004e873ac1634874a.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -168784,7 +169290,7 @@ ], "title": "Startseite - BÜNDNIS 90 / DIE GRÜNEN MEMMINGEN" }, - "duration": 248, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -168831,7 +169337,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 248 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -168872,9 +169378,9 @@ "resolved_hostname": "www.gruene-michendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-michendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168916,7 +169422,7 @@ "opengraph": null, "title": "Basisverband Michendorf: WIRKLICH WAS BEWEGEN." }, - "duration": 187, + "duration": 670, "error": null, "responsive": { "document_width": { @@ -168964,7 +169470,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 670 }, "RESPONSIVE": { "score": 1, @@ -169004,9 +169510,9 @@ "resolved_hostname": "www.gruene-mol.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-mol.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169048,7 +169554,7 @@ "opengraph": null, "title": "KV MÄRKISCH-ODERLAND: STARTSEITE" }, - "duration": 192, + "duration": 594, "error": null, "responsive": { "document_width": { @@ -169096,7 +169602,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 594 }, "RESPONSIVE": { "score": 1, @@ -169182,7 +169688,7 @@ ], "title": "Bündnis 90/Die Grünen Mühlheim" }, - "duration": 502, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -169231,7 +169737,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 502 + "value": 462 }, "RESPONSIVE": { "score": 1, @@ -169275,9 +169781,9 @@ "resolved_hostname": "www.gruene-muenchen.de" } }, - "icons": [ - "186bbbf767927571de3a8e3648cfded4.png" - ], + "icons": { + "https://www.gruene-muenchen.de/wp-content/themes/grnmuc/favicon.png": "186bbbf767927571de3a8e3648cfded4.png" + }, "ipv4_addresses": [ "134.119.44.126" ], @@ -169322,7 +169828,6 @@ "icon": "https://www.gruene-muenchen.de/wp-content/themes/grnmuc/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -169330,7 +169835,7 @@ ], "title": "Bündnis 90/Die Grünen München" }, - "duration": 310, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -169377,7 +169882,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 310 + "value": 309 }, "RESPONSIVE": { "score": 1, @@ -169417,9 +169922,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-neckar-bergstrasse.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-neckar-bergstrasse.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -169451,7 +169957,7 @@ "opengraph": null, "title": "Grüne Kreisverband Neckar-Bergstraße: Startseite" }, - "duration": 570, + "duration": 516, "error": null, "responsive": { "document_width": { @@ -169474,7 +169980,7 @@ "opengraph": null, "title": "Grüne Kreisverband Neckar-Bergstraße: Startseite" }, - "duration": 499, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -169523,7 +170029,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 534 + "value": 316 }, "RESPONSIVE": { "score": 1, @@ -169563,9 +170069,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-neckar-stromberg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -169597,7 +170103,7 @@ "opengraph": null, "title": "gruene-neckar-stromberg.de" }, - "duration": 563, + "duration": 577, "error": null, "responsive": { "document_width": { @@ -169645,7 +170151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 563 + "value": 577 }, "RESPONSIVE": { "score": 1, @@ -169686,9 +170192,9 @@ "resolved_hostname": "www.gruene-neu-anspach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neu-anspach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169730,7 +170236,7 @@ "opengraph": null, "title": "Fraktion Neu-Anspach: Startseite" }, - "duration": 193, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -169778,7 +170284,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -169864,7 +170370,7 @@ ], "title": "Bündnis 90/Die Grünen Ortsverband Neu-Isenburg" }, - "duration": 217, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -169913,7 +170419,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -169953,9 +170459,9 @@ "resolved_hostname": "www.gruene-neusaess.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-neusaess.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169997,7 +170503,7 @@ "opengraph": null, "title": "Ortsverband Neusäß: Home" }, - "duration": 209, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -170045,7 +170551,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -170131,7 +170637,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - OV Nidda" }, - "duration": 517, + "duration": 449, "error": null, "responsive": { "document_width": { @@ -170180,7 +170686,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 449 }, "RESPONSIVE": { "score": 1, @@ -170266,7 +170772,7 @@ ], "title": "Bündnis 90/Die Grünen Nidderau" }, - "duration": 228, + "duration": 888, "error": null, "responsive": { "document_width": { @@ -170315,7 +170821,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 888 }, "RESPONSIVE": { "score": 1, @@ -170382,15 +170888,23 @@ } ], "responsive": { - "min_width": 2000 + "min_width": 320 }, "urlchecks": [ { "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "duration": 823, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 500, "url": "https://gruene-niedenstein.de/" }, { @@ -170431,14 +170945,13 @@ "value": false }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": null + "value": 823 }, "RESPONSIVE": { "score": 0, @@ -170454,7 +170967,7 @@ "value": true } }, - "score": 3.0 + "score": 5.5 }, { "details": { @@ -170478,9 +170991,9 @@ "resolved_hostname": "www.gruene-niedernhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-niedernhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -170522,7 +171035,7 @@ "opengraph": null, "title": "Grüne Niedernhausen: Home" }, - "duration": 193, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -170570,7 +171083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -170613,9 +171126,9 @@ "resolved_hostname": "www.gruene-niedersachsen.de" } }, - "icons": [ - "10bccf7c5fd52a0f20456ea4ccf2c403.png" - ], + "icons": { + "https://www.gruene-niedersachsen.de/wp-content/uploads/2017/05/cropped-logo-100x100.png": "10bccf7c5fd52a0f20456ea4ccf2c403.png" + }, "ipv4_addresses": [ "193.96.188.144" ], @@ -170672,7 +171185,7 @@ ], "title": "An morgen denken wir nicht erst seit gestern - Grüne Niedersachsen" }, - "duration": 205, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -170719,7 +171232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 182 }, "RESPONSIVE": { "score": 1, @@ -170759,9 +171272,9 @@ "resolved_hostname": "www.gruene-oa.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-oa.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -170803,7 +171316,7 @@ "opengraph": null, "title": "Die Grünen Oberallgäu: Grüne Oberallgäu" }, - "duration": 151, + "duration": 157, "error": null, "responsive": { "document_width": { @@ -170851,7 +171364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 151 + "value": 157 }, "RESPONSIVE": { "score": 1, @@ -170894,9 +171407,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-obertshausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.92" ], @@ -170938,7 +171451,7 @@ ], "title": "Grüne Obertshausen" }, - "duration": 244, + "duration": 274, "error": null, "responsive": { "document_width": { @@ -170985,7 +171498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 274 }, "RESPONSIVE": { "score": 1, @@ -171026,9 +171539,9 @@ "resolved_hostname": "www.gruene-oberursel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberursel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171070,7 +171583,7 @@ "opengraph": null, "title": "B90/Die Grünen - Oberursel: Home" }, - "duration": 205, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -171118,7 +171631,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -171158,9 +171671,9 @@ "resolved_hostname": "www.gruene-oder-spree.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oder-spree.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171202,7 +171715,7 @@ "opengraph": null, "title": "Kreisverband Oder-Spree: Home" }, - "duration": 198, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -171250,7 +171763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -171290,9 +171803,9 @@ "resolved_hostname": "www.gruene-oestrich-winkel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oestrich-winkel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171334,7 +171847,7 @@ "opengraph": null, "title": "OV Oestrich-Winkel: Wir über uns" }, - "duration": 213, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -171382,7 +171895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 250 }, "RESPONSIVE": { "score": 1, @@ -171425,9 +171938,9 @@ "resolved_hostname": "www.gruene-ohv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ohv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171472,7 +171985,7 @@ "opengraph": null, "title": ": HOME" }, - "duration": 202, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -171519,7 +172032,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -171559,9 +172072,9 @@ "resolved_hostname": "www.gruene-puchheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-puchheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171603,7 +172116,7 @@ "opengraph": null, "title": "Grüne Puchheim: Home" }, - "duration": 194, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -171651,7 +172164,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -171691,9 +172204,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -171725,7 +172239,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 393, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -171748,7 +172262,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 186, + "duration": 452, "error": null, "responsive": { "document_width": { @@ -171797,7 +172311,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 290 + "value": 408 }, "RESPONSIVE": { "score": 1, @@ -171838,9 +172352,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -171872,7 +172387,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 392, + "duration": 356, "error": null, "responsive": { "document_width": { @@ -171895,7 +172410,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 464, + "duration": 436, "error": null, "responsive": { "document_width": { @@ -171944,7 +172459,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 396 }, "RESPONSIVE": { "score": 1, @@ -171985,9 +172500,9 @@ "resolved_hostname": "www.gruene-reinbek.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-reinbek.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -172029,7 +172544,7 @@ "opengraph": null, "title": "Die Grünen Reinbek: Startseite" }, - "duration": 195, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -172077,7 +172592,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -172117,9 +172632,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-rems-murr.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-rems-murr.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -172151,7 +172667,7 @@ "opengraph": null, "title": "Grüne Kreis Rems-Murr: Kreisverband Rems-Murr" }, - "duration": 496, + "duration": 316, "error": null, "responsive": { "document_width": { @@ -172174,7 +172690,7 @@ "opengraph": null, "title": "Grüne Kreis Rems-Murr: Kreisverband Rems-Murr" }, - "duration": 293, + "duration": 563, "error": null, "responsive": { "document_width": { @@ -172223,7 +172739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 394 + "value": 440 }, "RESPONSIVE": { "score": 1, @@ -172263,9 +172779,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-remseck.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172294,7 +172810,7 @@ "opengraph": null, "title": "Grüne Remseck: HOME" }, - "duration": 554, + "duration": 719, "error": null, "responsive": { "document_width": { @@ -172342,7 +172858,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 719 }, "RESPONSIVE": { "score": 0, @@ -172383,9 +172899,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-reutlingen.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-reutlingen.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172417,7 +172934,7 @@ "opengraph": null, "title": "GRÜNE REUTLINGEN: HOME" }, - "duration": 407, + "duration": 437, "error": null, "responsive": { "document_width": { @@ -172440,7 +172957,7 @@ "opengraph": null, "title": "GRÜNE REUTLINGEN: HOME" }, - "duration": 463, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -172489,7 +173006,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 435 + "value": 526 }, "RESPONSIVE": { "score": 1, @@ -172535,9 +173052,10 @@ "resolved_hostname": "www.gruene-rhede.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-rhede.de/wp-content/themes/die-gruenen/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-rhede.de/wp-content/themes/die-gruenen/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.133.98.145" ], @@ -172588,7 +173106,7 @@ ], "title": "Ortsverband Rhede › BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 975, + "duration": 877, "error": null, "responsive": { "document_width": { @@ -172620,7 +173138,7 @@ ], "title": "Ortsverband Rhede › BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 630, + "duration": 566, "error": null, "responsive": { "document_width": { @@ -172668,7 +173186,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 802 + "value": 722 }, "RESPONSIVE": { "score": 1, @@ -172712,9 +173230,9 @@ "resolved_hostname": "www.gruene-rhein-pfalz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-rhein-pfalz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.2" ], @@ -172767,7 +173285,7 @@ ], "title": "Grüne Rhein-Pfalz" }, - "duration": 988, + "duration": 743, "error": null, "responsive": { "document_width": { @@ -172814,7 +173332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 988 + "value": 743 }, "RESPONSIVE": { "score": 1, @@ -172854,9 +173372,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-rheinstetten.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-rheinstetten.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172888,7 +173407,7 @@ "opengraph": null, "title": "Grüne Rheinstetten: Aktuell" }, - "duration": 519, + "duration": 515, "error": null, "responsive": { "document_width": { @@ -172911,7 +173430,7 @@ "opengraph": null, "title": "Grüne Rheinstetten: Aktuell" }, - "duration": 579, + "duration": 779, "error": null, "responsive": { "document_width": { @@ -172960,7 +173479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 549 + "value": 647 }, "RESPONSIVE": { "score": 1, @@ -173001,9 +173520,9 @@ "resolved_hostname": "www.gruene-rhoen-grabfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rhoen-grabfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173045,7 +173564,7 @@ "opengraph": null, "title": "Kreisverband Rhön-Grabfeld: Home" }, - "duration": 201, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -173093,7 +173612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -173133,9 +173652,9 @@ "resolved_hostname": "www.gruene-rosenheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rosenheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173177,7 +173696,7 @@ "opengraph": null, "title": "KREISVERBAND ROSENHEIM: Aktuell" }, - "duration": 199, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -173225,7 +173744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -173269,6 +173788,7 @@ "resolved_hostname": "www.gruene-rossdorf.de" } }, + "icons": {}, "ipv4_addresses": [ "85.13.155.129" ], @@ -173320,7 +173840,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN" }, - "duration": 765, + "duration": 730, "error": null, "responsive": { "document_width": { @@ -173353,9 +173873,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -173368,7 +173887,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 765 + "value": 730 }, "RESPONSIVE": { "score": 1, @@ -173384,7 +173903,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -173408,9 +173927,9 @@ "resolved_hostname": "www.gruene-roth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-roth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173452,7 +173971,7 @@ "opengraph": null, "title": "Kreisverband Roth: Startseite" }, - "duration": 196, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -173500,7 +174019,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -173579,7 +174098,7 @@ "opengraph": null, "title": "Gruene Startseite" }, - "duration": 195, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -173602,7 +174121,7 @@ "opengraph": null, "title": "Gruene Startseite" }, - "duration": 213, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -173652,7 +174171,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 202 }, "RESPONSIVE": { "score": 0, @@ -173744,7 +174263,7 @@ ], "title": "Grüne Rheingau-Taunus-Kreis" }, - "duration": 222, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -173792,7 +174311,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -173878,7 +174397,7 @@ ], "title": "Bündnis 90/Die Grünen Rüsselsheim" }, - "duration": 313, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -173927,7 +174446,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 313 + "value": 279 }, "RESPONSIVE": { "score": 1, @@ -173972,9 +174491,10 @@ "resolved_hostname": "www.gruene-runkel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-runkel.de/cms/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-runkel.de/cms/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.102" ], @@ -174026,7 +174546,7 @@ ], "title": "Bündnis 90 / Die Grünen Runkel" }, - "duration": 310, + "duration": 339, "error": null, "responsive": { "document_width": { @@ -174059,7 +174579,7 @@ ], "title": "Bündnis 90 / Die Grünen Runkel" }, - "duration": 440, + "duration": 425, "error": null, "responsive": { "document_width": { @@ -174107,7 +174627,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 382 }, "RESPONSIVE": { "score": 1, @@ -174150,9 +174670,9 @@ "resolved_hostname": "www.gruene-sachsen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "https://www.gruene-sachsen.de/fileadmin/lv/images/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.90" ], @@ -174198,7 +174718,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Sachsen" }, - "duration": 311, + "duration": 333, "error": null, "responsive": { "document_width": { @@ -174245,7 +174765,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 333 }, "RESPONSIVE": { "score": 0, @@ -174285,9 +174805,9 @@ "resolved_hostname": "www.gruene-schlangen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schlangen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174329,7 +174849,7 @@ "opengraph": null, "title": "Grüner Ortsverband Schlangen: Home" }, - "duration": 196, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -174377,7 +174897,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 227 }, "RESPONSIVE": { "score": 1, @@ -174417,9 +174937,9 @@ "resolved_hostname": "www.gruene-schlangenbad.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schlangenbad.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174549,9 +175069,9 @@ "resolved_hostname": "www.gruene-schmitten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schmitten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174593,7 +175113,7 @@ "opengraph": null, "title": "Ortsverband Schmitten: Startseite" }, - "duration": 165, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -174641,7 +175161,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -174681,9 +175201,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-schriesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-schriesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -174715,7 +175236,7 @@ "opengraph": null, "title": "Grüne Schriesheim: HOME" }, - "duration": 740, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -174738,7 +175259,7 @@ "opengraph": null, "title": "Grüne Schriesheim: HOME" }, - "duration": 813, + "duration": 967, "error": null, "responsive": { "document_width": { @@ -174787,7 +175308,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 776 + "value": 740 }, "RESPONSIVE": { "score": 1, @@ -174828,9 +175349,9 @@ "resolved_hostname": "www.gruene-schwabach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schwabach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174872,7 +175393,7 @@ "opengraph": null, "title": "Kreisverband Schwabach: Home" }, - "duration": 198, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -174920,7 +175441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 178 }, "RESPONSIVE": { "score": 1, @@ -174960,9 +175481,9 @@ "resolved_hostname": "www.gruene-schwalm-eder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schwalm-eder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175004,7 +175525,7 @@ "opengraph": null, "title": "Kreisverband Schwalm-Eder: Startseite" }, - "duration": 195, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -175052,7 +175573,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -175092,9 +175613,9 @@ "resolved_hostname": "www.gruene-schweinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schweinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175136,7 +175657,7 @@ "opengraph": null, "title": "Kreisverband Schweinfurt: Startseite" }, - "duration": 203, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -175184,7 +175705,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -175228,6 +175749,7 @@ "resolved_hostname": "www.gruene-schwelm.de" } }, + "icons": {}, "ipv4_addresses": [ "5.35.226.117" ], @@ -175284,7 +175806,7 @@ ], "title": "Willkommen - Grüne SchwelmGrüne Schwelm" }, - "duration": 529, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -175317,9 +175839,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -175332,7 +175853,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 529 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -175348,7 +175869,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -175371,9 +175892,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-schwieberdingen-hemmingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -175405,7 +175926,7 @@ "opengraph": null, "title": "Grüne OV Schwieberdingen-Hemmingen: gruene-schwieberdingen-hemmingen.de" }, - "duration": 517, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -175453,7 +175974,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 578 }, "RESPONSIVE": { "score": 1, @@ -175481,7 +176002,7 @@ "hostnames": { "gruene-senden.de": { "ip_addresses": [ - "52.17.84.106" + "52.210.189.158" ], "resolvable": true, "resolved_hostname": "gruene-senden.de" @@ -175490,8 +176011,9 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ - "52.17.84.106" + "52.210.189.158" ], "resolvable_urls": [ { @@ -175532,7 +176054,7 @@ ], "title": "Herzlich willkommen, liebe Besucherin, lieber Besucher auf der Webseite des Ortsverbandes Bündnis90/Die Grünen in Senden! - gruene2sendens Webseite!" }, - "duration": 265, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -175565,9 +176087,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -175581,7 +176102,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 265 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -175598,7 +176119,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -175622,9 +176143,9 @@ "resolved_hostname": "www.gruene-siegen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-siegen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175666,7 +176187,7 @@ "opengraph": null, "title": "GRÜNE SIEGEN: BÜNDNIS 90/DIE GRÜNEN SIEGEN - aktuelle Infos des Stadtverbandes und der Ratsfraktion in Siegen." }, - "duration": 215, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -175714,7 +176235,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -175800,7 +176321,7 @@ ], "title": "Bündnis 90/Die Grünen - Ortsverband Sinn" }, - "duration": 469, + "duration": 406, "error": null, "responsive": { "document_width": { @@ -175849,7 +176370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -175933,7 +176454,7 @@ "opengraph": null, "title": "Grüne Sinsheim" }, - "duration": 277, + "duration": 295, "error": null, "responsive": { "document_width": { @@ -175981,7 +176502,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 277 + "value": 295 }, "RESPONSIVE": { "score": 0, @@ -176020,9 +176541,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-sinzheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -176051,7 +176572,7 @@ "opengraph": null, "title": "Grüne Sinzheim: AKTUELL" }, - "duration": 607, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -176099,7 +176620,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 607 + "value": 648 }, "RESPONSIVE": { "score": 0, @@ -176140,9 +176661,9 @@ "resolved_hostname": "www.gruene-solms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-solms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176184,7 +176705,7 @@ "opengraph": null, "title": "Homepage der Grünen Solms: Startseite" }, - "duration": 173, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -176232,7 +176753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 173 + "value": 182 }, "RESPONSIVE": { "score": 1, @@ -176272,9 +176793,9 @@ "resolved_hostname": "www.gruene-stahnsdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-stahnsdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176316,7 +176837,7 @@ "opengraph": null, "title": "Basisverband Stahnsdorf: Start" }, - "duration": 248, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -176364,7 +176885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 248 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -176404,9 +176925,9 @@ "resolved_hostname": "www.gruene-steinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176448,7 +176969,7 @@ "opengraph": null, "title": "Ortsverband Steinbach: Willkommen bei Steinbachs GRÜNEN" }, - "duration": 162, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -176496,7 +177017,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -176536,9 +177057,9 @@ "resolved_hostname": "www.gruene-straubing-bogen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-straubing-bogen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176580,7 +177101,7 @@ "opengraph": null, "title": "Grüne Straubing-Bogen: Home" }, - "duration": 201, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -176628,7 +177149,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -176713,7 +177234,7 @@ "opengraph": null, "title": "Grüne Sundern" }, - "duration": 273, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -176761,7 +177282,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 293 }, "RESPONSIVE": { "score": 0, @@ -176801,9 +177322,9 @@ "resolved_hostname": "www.gruene-taunusstein.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-taunusstein.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176845,7 +177366,7 @@ "opengraph": null, "title": "Ortsverband Taunusstein: Aktuelles" }, - "duration": 196, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -176893,7 +177414,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -176937,9 +177458,9 @@ "resolved_hostname": "www.gruene-thueringen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-thueringen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -176993,7 +177514,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 398, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -177040,7 +177561,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 401 }, "RESPONSIVE": { "score": 1, @@ -177084,9 +177605,9 @@ "resolved_hostname": "www.gruene-traunstein.de" } }, - "icons": [ - "dbd336b75d1b810e5cf48bf556917855.jpg" - ], + "icons": { + "https://www.gruene-traunstein.de/wp-content/uploads/2016/12/cropped-Favicon-Gruene-KV-Traunstein.jpg": "dbd336b75d1b810e5cf48bf556917855.jpg" + }, "ipv4_addresses": [ "5.9.248.153" ], @@ -177132,7 +177653,7 @@ "opengraph": null, "title": "Kreisverband Traunstein |" }, - "duration": 454, + "duration": 338, "error": null, "responsive": { "document_width": { @@ -177179,7 +177700,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -177219,9 +177740,9 @@ "resolved_hostname": "www.gruene-tuebingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-tuebingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177263,7 +177784,7 @@ "opengraph": null, "title": "Kreisverband Tübingen: Home" }, - "duration": 207, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -177311,7 +177832,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -177351,9 +177872,9 @@ "resolved_hostname": "www.gruene-um.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-um.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177395,7 +177916,7 @@ "opengraph": null, "title": "KREISVERBAND UCKERMARK: Home" }, - "duration": 166, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -177443,7 +177964,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -177483,9 +178004,9 @@ "resolved_hostname": "www.gruene-unterallgaeu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-unterallgaeu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177527,7 +178048,7 @@ "opengraph": null, "title": "Unterallgäu: Startseite" }, - "duration": 213, + "duration": 252, "error": null, "responsive": { "document_width": { @@ -177575,7 +178096,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 252 }, "RESPONSIVE": { "score": 1, @@ -177618,9 +178139,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-usingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.68" ], @@ -177663,7 +178184,7 @@ ], "title": "Grüne Fraktion Usingen" }, - "duration": 806, + "duration": 779, "error": null, "responsive": { "document_width": { @@ -177710,7 +178231,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 806 + "value": 779 }, "RESPONSIVE": { "score": 1, @@ -177755,9 +178276,9 @@ "resolved_hostname": "www.gruene-verl.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-verl.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.173.208" ], @@ -177809,7 +178330,7 @@ ], "title": "Jetzt ist auch Verl grün › ORTSVERBAND VERL" }, - "duration": 600, + "duration": 533, "error": null, "responsive": { "document_width": { @@ -177856,7 +178377,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 533 }, "RESPONSIVE": { "score": 1, @@ -177942,7 +178463,7 @@ ], "title": "B90/Die Grünen im Landkreis Waldeck-Frankenberg" }, - "duration": 235, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -177991,7 +178512,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -178032,9 +178553,10 @@ "resolved_hostname": "www.gruene-waldeck.de" } }, - "icons": [ - "469c7d11d58fff007d0d911a2a1e952d.ico" - ], + "icons": { + "https://gruene-waldeck.de/favicon.ico": "469c7d11d58fff007d0d911a2a1e952d.ico", + "https://www.gruene-waldeck.de/favicon.ico": "469c7d11d58fff007d0d911a2a1e952d.ico" + }, "ipv4_addresses": [ "91.233.85.241" ], @@ -178073,7 +178595,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN Waldeck" }, - "duration": 185, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -178096,7 +178618,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN Waldeck" }, - "duration": 187, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -178145,7 +178667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 190 }, "RESPONSIVE": { "score": 0, @@ -178231,7 +178753,7 @@ ], "title": "Bündnis 90/Die Grünen Waldems" }, - "duration": 166, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -178280,7 +178802,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -178320,9 +178842,9 @@ "resolved_hostname": "www.gruene-wehrheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wehrheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178364,7 +178886,7 @@ "opengraph": null, "title": "Fraktion/OV Wehrheim: Startseite" }, - "duration": 177, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -178412,7 +178934,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 177 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -178455,9 +178977,9 @@ "resolved_hostname": "www.gruene-weilheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-weilheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178502,7 +179024,7 @@ "opengraph": null, "title": "KV Weilheim-Schongau: Aktivitäten, Ereignisse, Termine 2018" }, - "duration": 191, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -178549,7 +179071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -178592,9 +179114,9 @@ "resolved_hostname": "www.gruene-werder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-werder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178639,7 +179161,7 @@ "opengraph": null, "title": "Basisverband Werder: Herzlich Willkommen" }, - "duration": 188, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -178686,7 +179208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -178730,9 +179252,9 @@ "resolved_hostname": "www.gruene-wertheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-wertheim.de/wp-content/themes/urwahl5000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -178785,7 +179307,7 @@ ], "title": "Bündnis 90/ Die Grünen" }, - "duration": 272, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -178832,7 +179354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 272 + "value": 312 }, "RESPONSIVE": { "score": 1, @@ -178918,7 +179440,7 @@ ], "title": "Grüne Wetterau" }, - "duration": 608, + "duration": 404, "error": null, "responsive": { "document_width": { @@ -178967,7 +179489,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 608 + "value": 404 }, "RESPONSIVE": { "score": 1, @@ -179061,7 +179583,7 @@ ], "title": "Grüne Wiesloch" }, - "duration": 833, + "duration": 938, "error": null, "responsive": { "document_width": { @@ -179109,7 +179631,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 833 + "value": 938 }, "RESPONSIVE": { "score": 1, @@ -179150,9 +179672,10 @@ "resolved_hostname": "www.gruene-winterbach.de" } }, - "icons": [ - "82143ace59ceead2f64930232180ffad.ico" - ], + "icons": { + "https://gruene-winterbach.de/files/gruene_winterbach/img/favicon.ico": "82143ace59ceead2f64930232180ffad.ico", + "https://www.gruene-winterbach.de/files/gruene_winterbach/img/favicon.ico": "82143ace59ceead2f64930232180ffad.ico" + }, "ipv4_addresses": [ "85.13.156.196" ], @@ -179194,7 +179717,7 @@ "opengraph": null, "title": "Startseite / Aktuelles - Die Grünen in Winterbach" }, - "duration": 293, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -179217,7 +179740,7 @@ "opengraph": null, "title": "Startseite / Aktuelles - Die Grünen in Winterbach" }, - "duration": 290, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -179266,7 +179789,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 292 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -179352,7 +179875,7 @@ ], "title": "Bündnis 90/Die Grünen Wölfersheim" }, - "duration": 209, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -179401,7 +179924,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 191 }, "RESPONSIVE": { "score": 1, @@ -179440,9 +179963,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-wt.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -179471,7 +179994,7 @@ "opengraph": null, "title": "Grüne Kreis Waldshut: Kreisverband Waldshut" }, - "duration": 620, + "duration": 838, "error": null, "responsive": { "document_width": { @@ -179519,7 +180042,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 620 + "value": 838 }, "RESPONSIVE": { "score": 0, @@ -179565,9 +180088,10 @@ "resolved_hostname": "www.gruene-wuerzburg-land.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-wuerzburg-land.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-wuerzburg-land.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "46.163.77.33" ], @@ -179615,7 +180139,7 @@ ], "title": "Home" }, - "duration": 279, + "duration": 304, "error": null, "responsive": { "document_width": { @@ -179644,7 +180168,7 @@ ], "title": "Home" }, - "duration": 299, + "duration": 303, "error": null, "responsive": { "document_width": { @@ -179692,7 +180216,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 289 + "value": 304 }, "RESPONSIVE": { "score": 1, @@ -179737,9 +180261,10 @@ "resolved_hostname": "www.gruene-wuerzburg.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-wuerzburg.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-wuerzburg.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "91.250.119.224" ], @@ -179785,7 +180310,7 @@ "opengraph": null, "title": "Home" }, - "duration": 428, + "duration": 429, "error": null, "responsive": { "document_width": { @@ -179812,7 +180337,7 @@ "opengraph": null, "title": "Home" }, - "duration": 415, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -179860,7 +180385,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -179911,9 +180436,9 @@ "resolved_hostname": "www.gruene.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "https://www.gruene.de/tmpl/gfx/img/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "89.146.238.38" ], @@ -179970,7 +180495,7 @@ ], "title": "Startseite- BÜNDNIS 90/DIE GRÜNEN Bundespartei" }, - "duration": 170, + "duration": 311, "error": null, "responsive": { "document_width": { @@ -180017,7 +180542,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 311 }, "RESPONSIVE": { "score": 0, @@ -180059,9 +180584,9 @@ "resolvable": false } }, - "icons": [ - "c3fe41066db45f18d0590642b0a94012.ico" - ], + "icons": { + "https://grueneammersbek.de/homepage/templates/allrounder-gruen/favicon.ico": "c3fe41066db45f18d0590642b0a94012.ico" + }, "ipv4_addresses": [ "212.53.140.14" ], @@ -180078,7 +180603,7 @@ } ], "responsive": { - "min_width": 636 + "min_width": 580 }, "urlchecks": [ { @@ -180094,14 +180619,14 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - OV Ammersbek" }, - "duration": 294, + "duration": 289, "error": null, "responsive": { "document_width": { - "1024x768": 1067, + "1024x768": 1044, "1920x1080": 1920, - "320x480": 636, - "768x1024": 910 + "320x480": 580, + "768x1024": 854 }, "viewport_meta_tag": null }, @@ -180141,7 +180666,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 289 }, "RESPONSIVE": { "score": 0, @@ -180181,9 +180706,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenefreiberg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -180215,7 +180740,7 @@ "opengraph": null, "title": "Grüne OV Freiberg am Neckar: gruenefreiberg.de" }, - "duration": 455, + "duration": 572, "error": null, "responsive": { "document_width": { @@ -180263,7 +180788,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 455 + "value": 572 }, "RESPONSIVE": { "score": 1, @@ -180333,7 +180858,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180353,14 +180878,14 @@ ], "title": "Grüne Köln" }, - "duration": 168, + "duration": 661, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180401,7 +180926,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 661 }, "RESPONSIVE": { "score": 0, @@ -180470,7 +180995,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180490,14 +181015,14 @@ ], "title": "Grüne Köln" }, - "duration": 9, + "duration": 589, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180536,9 +181061,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 9 + "value": 589 }, "RESPONSIVE": { "score": 0, @@ -180554,7 +181079,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -180607,7 +181132,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180627,14 +181152,14 @@ ], "title": "Grüne Köln" }, - "duration": 976, + "duration": 618, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 363, - "768x1024": 768 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180675,7 +181200,144 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 976 + "value": 618 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruenekoeln.de/" + ], + "cms": "typo3", + "feeds": [ + "https://www.gruenekoeln.de/index.php?type=100" + ], + "hostnames": { + "gruenekoeln.de": { + "ip_addresses": [ + "78.47.141.38" + ], + "resolvable": true, + "resolved_hostname": "gruenekoeln.de" + }, + "www.gruenekoeln.de": { + "ip_addresses": [ + "78.47.141.38" + ], + "resolvable": true, + "resolved_hostname": "www.gruenekoeln.de" + } + }, + "ipv4_addresses": [ + "78.47.141.38" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "http://gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "http://www.gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "https://gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://www.gruenekoeln.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "https://www.gruenekoeln.de/index.php?type=100" + ], + "generator": "TYPO3 CMS", + "icon": null, + "opengraph": [ + "og:image" + ], + "title": "Grüne Köln" + }, + "duration": 532, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruenekoeln.de/" + } + ] + }, + "input_url": "https://www.gruenekoeln.de/bezirke/bezirk3/aktuelles.html", + "meta": { + "city": "Köln-Lindenthal", + "district": "Köln", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 0, + "type": "boolean", + "value": false + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 532 }, "RESPONSIVE": { "score": 1, @@ -180744,7 +181406,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180764,151 +181426,14 @@ ], "title": "Grüne Köln" }, - "duration": 32, + "duration": 585, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruenekoeln.de/" - } - ] - }, - "input_url": "https://www.gruenekoeln.de/bezirke/bezirk3/aktuelles.html", - "meta": { - "city": "Köln-Lindenthal", - "district": "Köln", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 0, - "type": "boolean", - "value": false - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 32 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.0 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruenekoeln.de/" - ], - "cms": "typo3", - "feeds": [ - "https://www.gruenekoeln.de/index.php?type=100" - ], - "hostnames": { - "gruenekoeln.de": { - "ip_addresses": [ - "78.47.141.38" - ], - "resolvable": true, - "resolved_hostname": "gruenekoeln.de" - }, - "www.gruenekoeln.de": { - "ip_addresses": [ - "78.47.141.38" - ], - "resolvable": true, - "resolved_hostname": "www.gruenekoeln.de" - } - }, - "ipv4_addresses": [ - "78.47.141.38" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "http://gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "http://www.gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "https://gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://www.gruenekoeln.de/" - } - ], - "responsive": { - "min_width": 597, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "https://www.gruenekoeln.de/index.php?type=100" - ], - "generator": "TYPO3 CMS", - "icon": null, - "opengraph": [ - "og:image" - ], - "title": "Grüne Köln" - }, - "duration": 68, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180947,14 +181472,14 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 68 + "value": 585 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -180965,7 +181490,7 @@ "value": true } }, - "score": 8.0 + "score": 8.5 }, { "details": { @@ -181018,7 +181543,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181038,13 +181563,13 @@ ], "title": "Grüne Köln" }, - "duration": 42, + "duration": 577, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181084,9 +181609,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 42 + "value": 577 }, "RESPONSIVE": { "score": 1, @@ -181102,7 +181627,7 @@ "value": true } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -181155,7 +181680,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181175,14 +181700,14 @@ ], "title": "Grüne Köln" }, - "duration": 40, + "duration": 617, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -181221,14 +181746,14 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 40 + "value": 617 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -181239,7 +181764,7 @@ "value": true } }, - "score": 8.0 + "score": 8.5 }, { "details": { @@ -181292,7 +181817,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181312,13 +181837,13 @@ ], "title": "Grüne Köln" }, - "duration": 423, + "duration": 591, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181360,7 +181885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 423 + "value": 591 }, "RESPONSIVE": { "score": 1, @@ -181429,7 +181954,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181449,13 +181974,13 @@ ], "title": "Grüne Köln" }, - "duration": 933, + "duration": 598, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181497,7 +182022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 933 + "value": 598 }, "RESPONSIVE": { "score": 1, @@ -181566,7 +182091,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181586,13 +182111,13 @@ ], "title": "Grüne Köln" }, - "duration": 164, + "duration": 559, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181634,7 +182159,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 164 + "value": 559 }, "RESPONSIVE": { "score": 1, @@ -181673,9 +182198,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenekornwestheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -181707,7 +182232,7 @@ "opengraph": null, "title": "Grüne OV Kornwestheim: gruene-kornwestheim.de" }, - "duration": 473, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -181755,7 +182280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 473 + "value": 583 }, "RESPONSIVE": { "score": 1, @@ -181795,9 +182320,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenelb.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -181829,7 +182354,7 @@ "opengraph": null, "title": "Grüne OV Ludwigsburg: gruene OV Ludwigsburg" }, - "duration": 456, + "duration": 436, "error": null, "responsive": { "document_width": { @@ -181877,7 +182402,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 456 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -181914,6 +182439,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "46.252.18.88" ], @@ -181948,7 +182474,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Vlotho" }, - "duration": 202, + "duration": 158, "error": null, "responsive": { "document_width": { @@ -181981,9 +182507,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -181997,7 +182522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 158 }, "RESPONSIVE": { "score": 1, @@ -182014,7 +182539,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -182038,9 +182563,9 @@ "resolved_hostname": "www.gruenemsp.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruenemsp.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182082,7 +182607,7 @@ "opengraph": null, "title": "GRÜNE Main-Spessart: Startseite" }, - "duration": 192, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -182130,7 +182655,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -182170,9 +182695,9 @@ "resolved_hostname": "www.grueneprignitz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.grueneprignitz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182214,7 +182739,7 @@ "opengraph": null, "title": "KREISVERBAND PRIGNITZ: Aktuelles" }, - "duration": 170, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -182262,7 +182787,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -182301,9 +182826,9 @@ "resolvable": false } }, - "icons": [ - "5a680a0d49276bbc6a5b2f2600f0079b.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s5a69b32a96959e8e/img/favicon.png?t=1397765466": "5a680a0d49276bbc6a5b2f2600f0079b.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -182345,7 +182870,7 @@ ], "title": "Aktuelles - BÜNDNIS 90 / DIE GRÜNEN in Wachtberg" }, - "duration": 318, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -182392,7 +182917,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 318 + "value": 325 }, "RESPONSIVE": { "score": 1, @@ -182438,9 +182963,7 @@ "resolved_hostname": "www.trittin.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "178.63.49.198" ], @@ -182578,9 +183101,9 @@ "resolved_hostname": "www.wds-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.wds-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182622,7 +183145,7 @@ "opengraph": null, "title": "Grüne Weil der Stadt: Ortsverband" }, - "duration": 167, + "duration": 307, "error": null, "responsive": { "document_width": { @@ -182670,7 +183193,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 307 }, "RESPONSIVE": { "score": 1, @@ -182710,9 +183233,9 @@ "resolved_hostname": "xn--grne-alternative-liste-flrsheim-vdd8o.de" } }, - "icons": [ - "ca2bb9889f5870b0b31006f9f09a23df.ico" - ], + "icons": { + "https://cdn.website-start.de/favicon.ico": "ca2bb9889f5870b0b31006f9f09a23df.ico" + }, "ipv4_addresses": [ "217.160.0.157" ], @@ -182757,7 +183280,7 @@ ], "title": "Grüne Alternative Liste Flörsheim / GALF - Aktuelles" }, - "duration": 271, + "duration": 292, "error": null, "responsive": { "document_width": { @@ -182805,7 +183328,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 271 + "value": 292 }, "RESPONSIVE": { "score": 0, @@ -182888,7 +183411,7 @@ ], "title": "Grüne Stadtallendorf" }, - "duration": 500, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -182937,7 +183460,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 500 + "value": 462 }, "RESPONSIVE": { "score": 0, @@ -182981,9 +183504,9 @@ "resolved_hostname": "xn--grne-teltow-uhb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.xn--grne-teltow-uhb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "148.251.142.217" ], @@ -183032,7 +183555,7 @@ ], "title": "Bündnis 90/Die Grünen Teltow" }, - "duration": 781, + "duration": 816, "error": null, "responsive": { "document_width": { @@ -183079,7 +183602,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 781 + "value": 816 }, "RESPONSIVE": { "score": 0, @@ -183119,9 +183642,9 @@ "resolved_hostname": "xn--grne-wf-o2a.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.xn--grne-wf-o2a.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -183160,7 +183683,7 @@ "opengraph": null, "title": "Kreisverband Wolfenbüttel: Startseite" }, - "duration": 219, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -183208,7 +183731,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 213 }, "RESPONSIVE": { "score": 0, @@ -183252,9 +183775,9 @@ "resolved_hostname": "xn--padergrn-d6a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.xn--padergrn-d6a.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.225.232" ], @@ -183307,7 +183830,7 @@ ], "title": "Die Grünen" }, - "duration": 151, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -183354,7 +183877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 151 + "value": 172 }, "RESPONSIVE": { "score": 0, @@ -183395,9 +183918,10 @@ "resolved_hostname": "xn--grne-idstein-elb.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.xn--grne-idstein-elb.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico", + "https://xn--grne-idstein-elb.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "178.16.59.226" ], @@ -183436,7 +183960,7 @@ "opengraph": null, "title": "Grüne in Idstein: Die Grünen in Idstein" }, - "duration": 345, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -183459,7 +183983,7 @@ "opengraph": null, "title": "Grüne in Idstein: Die Grünen in Idstein" }, - "duration": 406, + "duration": 398, "error": null, "responsive": { "document_width": { @@ -183508,7 +184032,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 376 + "value": 336 }, "RESPONSIVE": { "score": 0, @@ -183548,9 +184072,9 @@ "resolved_hostname": "xn--grne-lippe-beb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://xn--grne-lippe-beb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -183589,7 +184113,7 @@ "opengraph": null, "title": "Lippe: Startseite" }, - "duration": 186, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -183637,7 +184161,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 202 }, "RESPONSIVE": { "score": 0, From e2077fe12ba33a6a42a9902e967679f9818c80e1 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Mon, 27 Aug 2018 23:48:54 +0200 Subject: [PATCH 8/8] Adapt display code for the favicon --- docs/bundle.js | 2 +- docs/data/spider_result.json | 23544 +++++++++++++++++---------------- webapp/src/index.js | 4 +- 3 files changed, 12037 insertions(+), 11513 deletions(-) diff --git a/docs/bundle.js b/docs/bundle.js index c54daa8..4f6ed86 100644 --- a/docs/bundle.js +++ b/docs/bundle.js @@ -82,4 +82,4 @@ var n="undefined"!=typeof window&&"undefined"!=typeof document,r=["Edge","Triden * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -!function(t,e,n){"use strict";function r(t,e){for(var n=0;n0?n:null}catch(t){return null}},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(n){t(n).trigger(e.end)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],a=e[i],s=a&&r.isElement(a)?"element":(l=a,{}.toString.call(l).match(/\s([a-zA-Z]+)/)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var l}};return e=("undefined"==typeof window||!window.QUnit)&&{end:"transitionend"},t.fn.emulateTransitionEnd=n,r.supportsTransitionEnd()&&(t.event.special[r.TRANSITION_END]={bindType:e.end,delegateType:e.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}}),r}(e),s=function(t){var e=t.fn.alert,n={CLOSE:"close.bs.alert",CLOSED:"closed.bs.alert",CLICK_DATA_API:"click.bs.alert.data-api"},r={ALERT:"alert",FADE:"fade",SHOW:"show"},o=function(){function e(t){this._element=t}var o=e.prototype;return o.close=function(t){t=t||this._element;var e=this._getRootElement(t),n=this._triggerCloseEvent(e);n.isDefaultPrevented()||this._removeElement(e)},o.dispose=function(){t.removeData(this._element,"bs.alert"),this._element=null},o._getRootElement=function(e){var n=a.getSelectorFromElement(e),i=!1;return n&&(i=t(n)[0]),i||(i=t(e).closest("."+r.ALERT)[0]),i},o._triggerCloseEvent=function(e){var r=t.Event(n.CLOSE);return t(e).trigger(r),r},o._removeElement=function(e){var n=this;t(e).removeClass(r.SHOW),a.supportsTransitionEnd()&&t(e).hasClass(r.FADE)?t(e).one(a.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(150):this._destroyElement(e)},o._destroyElement=function(e){t(e).detach().trigger(n.CLOSED).remove()},e._jQueryInterface=function(n){return this.each(function(){var r=t(this),i=r.data("bs.alert");i||(i=new e(this),r.data("bs.alert",i)),"close"===n&&i[n](this)})},e._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(n.CLICK_DATA_API,'[data-dismiss="alert"]',o._handleDismiss(new o)),t.fn.alert=o._jQueryInterface,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=e,o._jQueryInterface},o}(e),l=function(t){var e="button",n=t.fn[e],r={ACTIVE:"active",BUTTON:"btn",FOCUS:"focus"},o={DATA_TOGGLE_CARROT:'[data-toggle^="button"]',DATA_TOGGLE:'[data-toggle="buttons"]',INPUT:"input",ACTIVE:".active",BUTTON:".btn"},a={CLICK_DATA_API:"click.bs.button.data-api",FOCUS_BLUR_DATA_API:"focus.bs.button.data-api blur.bs.button.data-api"},s=function(){function e(t){this._element=t}var n=e.prototype;return n.toggle=function(){var e=!0,n=!0,i=t(this._element).closest(o.DATA_TOGGLE)[0];if(i){var a=t(this._element).find(o.INPUT)[0];if(a){if("radio"===a.type)if(a.checked&&t(this._element).hasClass(r.ACTIVE))e=!1;else{var s=t(i).find(o.ACTIVE)[0];s&&t(s).removeClass(r.ACTIVE)}if(e){if(a.hasAttribute("disabled")||i.hasAttribute("disabled")||a.classList.contains("disabled")||i.classList.contains("disabled"))return;a.checked=!t(this._element).hasClass(r.ACTIVE),t(a).trigger("change")}a.focus(),n=!1}}n&&this._element.setAttribute("aria-pressed",!t(this._element).hasClass(r.ACTIVE)),e&&t(this._element).toggleClass(r.ACTIVE)},n.dispose=function(){t.removeData(this._element,"bs.button"),this._element=null},e._jQueryInterface=function(n){return this.each(function(){var r=t(this).data("bs.button");r||(r=new e(this),t(this).data("bs.button",r)),"toggle"===n&&r[n]()})},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(a.CLICK_DATA_API,o.DATA_TOGGLE_CARROT,function(e){e.preventDefault();var n=e.target;t(n).hasClass(r.BUTTON)||(n=t(n).closest(o.BUTTON)),s._jQueryInterface.call(t(n),"toggle")}).on(a.FOCUS_BLUR_DATA_API,o.DATA_TOGGLE_CARROT,function(e){var n=t(e.target).closest(o.BUTTON)[0];t(n).toggleClass(r.FOCUS,/^focus(in)?$/.test(e.type))}),t.fn[e]=s._jQueryInterface,t.fn[e].Constructor=s,t.fn[e].noConflict=function(){return t.fn[e]=n,s._jQueryInterface},s}(e),u=function(t){var e="carousel",n="bs.carousel",r="."+n,s=t.fn[e],l={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},u={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},c={NEXT:"next",PREV:"prev",LEFT:"left",RIGHT:"right"},f={SLIDE:"slide"+r,SLID:"slid"+r,KEYDOWN:"keydown"+r,MOUSEENTER:"mouseenter"+r,MOUSELEAVE:"mouseleave"+r,TOUCHEND:"touchend"+r,LOAD_DATA_API:"load.bs.carousel.data-api",CLICK_DATA_API:"click.bs.carousel.data-api"},h={CAROUSEL:"carousel",ACTIVE:"active",SLIDE:"slide",RIGHT:"carousel-item-right",LEFT:"carousel-item-left",NEXT:"carousel-item-next",PREV:"carousel-item-prev",ITEM:"carousel-item"},d={ACTIVE:".active",ACTIVE_ITEM:".active.carousel-item",ITEM:".carousel-item",NEXT_PREV:".carousel-item-next, .carousel-item-prev",INDICATORS:".carousel-indicators",DATA_SLIDE:"[data-slide], [data-slide-to]",DATA_RIDE:'[data-ride="carousel"]'},p=function(){function s(e,n){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this._config=this._getConfig(n),this._element=t(e)[0],this._indicatorsElement=t(this._element).find(d.INDICATORS)[0],this._addEventListeners()}var p=s.prototype;return p.next=function(){this._isSliding||this._slide(c.NEXT)},p.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},p.prev=function(){this._isSliding||this._slide(c.PREV)},p.pause=function(e){e||(this._isPaused=!0),t(this._element).find(d.NEXT_PREV)[0]&&a.supportsTransitionEnd()&&(a.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},p.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},p.to=function(e){var n=this;this._activeElement=t(this._element).find(d.ACTIVE_ITEM)[0];var r=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)t(this._element).one(f.SLID,function(){return n.to(e)});else{if(r===e)return this.pause(),void this.cycle();var i=e>r?c.NEXT:c.PREV;this._slide(i,this._items[e])}},p.dispose=function(){t(this._element).off(r),t.removeData(this._element,n),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},p._getConfig=function(t){return t=o({},l,t),a.typeCheckConfig(e,t,u),t},p._addEventListeners=function(){var e=this;this._config.keyboard&&t(this._element).on(f.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&(t(this._element).on(f.MOUSEENTER,function(t){return e.pause(t)}).on(f.MOUSELEAVE,function(t){return e.cycle(t)}),"ontouchstart"in document.documentElement&&t(this._element).on(f.TOUCHEND,function(){e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval)}))},p._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},p._getItemIndex=function(e){return this._items=t.makeArray(t(e).parent().find(d.ITEM)),this._items.indexOf(e)},p._getItemByDirection=function(t,e){var n=t===c.NEXT,r=t===c.PREV,i=this._getItemIndex(e),o=this._items.length-1,a=r&&0===i||n&&i===o;if(a&&!this._config.wrap)return e;var s=t===c.PREV?-1:1,l=(i+s)%this._items.length;return-1===l?this._items[this._items.length-1]:this._items[l]},p._triggerSlideEvent=function(e,n){var r=this._getItemIndex(e),i=this._getItemIndex(t(this._element).find(d.ACTIVE_ITEM)[0]),o=t.Event(f.SLIDE,{relatedTarget:e,direction:n,from:i,to:r});return t(this._element).trigger(o),o},p._setActiveIndicatorElement=function(e){if(this._indicatorsElement){t(this._indicatorsElement).find(d.ACTIVE).removeClass(h.ACTIVE);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&t(n).addClass(h.ACTIVE)}},p._slide=function(e,n){var r,i,o,s=this,l=t(this._element).find(d.ACTIVE_ITEM)[0],u=this._getItemIndex(l),p=n||l&&this._getItemByDirection(e,l),g=this._getItemIndex(p),_=Boolean(this._interval);if(e===c.NEXT?(r=h.LEFT,i=h.NEXT,o=c.LEFT):(r=h.RIGHT,i=h.PREV,o=c.RIGHT),p&&t(p).hasClass(h.ACTIVE))this._isSliding=!1;else{var v=this._triggerSlideEvent(p,o);if(!v.isDefaultPrevented()&&l&&p){this._isSliding=!0,_&&this.pause(),this._setActiveIndicatorElement(p);var m=t.Event(f.SLID,{relatedTarget:p,direction:o,from:u,to:g});a.supportsTransitionEnd()&&t(this._element).hasClass(h.SLIDE)?(t(p).addClass(i),a.reflow(p),t(l).addClass(r),t(p).addClass(r),t(l).one(a.TRANSITION_END,function(){t(p).removeClass(r+" "+i).addClass(h.ACTIVE),t(l).removeClass(h.ACTIVE+" "+i+" "+r),s._isSliding=!1,setTimeout(function(){return t(s._element).trigger(m)},0)}).emulateTransitionEnd(600)):(t(l).removeClass(h.ACTIVE),t(p).addClass(h.ACTIVE),this._isSliding=!1,t(this._element).trigger(m)),_&&this.cycle()}}},s._jQueryInterface=function(e){return this.each(function(){var r=t(this).data(n),i=o({},l,t(this).data());"object"==typeof e&&(i=o({},i,e));var a="string"==typeof e?e:i.slide;if(r||(r=new s(this,i),t(this).data(n,r)),"number"==typeof e)r.to(e);else if("string"==typeof a){if(void 0===r[a])throw new TypeError('No method named "'+a+'"');r[a]()}else i.interval&&(r.pause(),r.cycle())})},s._dataApiClickHandler=function(e){var r=a.getSelectorFromElement(this);if(r){var i=t(r)[0];if(i&&t(i).hasClass(h.CAROUSEL)){var l=o({},t(i).data(),t(this).data()),u=this.getAttribute("data-slide-to");u&&(l.interval=!1),s._jQueryInterface.call(t(i),l),u&&t(i).data(n).to(u),e.preventDefault()}}},i(s,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return l}}]),s}();return t(document).on(f.CLICK_DATA_API,d.DATA_SLIDE,p._dataApiClickHandler),t(window).on(f.LOAD_DATA_API,function(){t(d.DATA_RIDE).each(function(){var e=t(this);p._jQueryInterface.call(e,e.data())})}),t.fn[e]=p._jQueryInterface,t.fn[e].Constructor=p,t.fn[e].noConflict=function(){return t.fn[e]=s,p._jQueryInterface},p}(e),c=function(t){var e="collapse",n="bs.collapse",r=t.fn[e],s={toggle:!0,parent:""},l={toggle:"boolean",parent:"(string|element)"},u={SHOW:"show.bs.collapse",SHOWN:"shown.bs.collapse",HIDE:"hide.bs.collapse",HIDDEN:"hidden.bs.collapse",CLICK_DATA_API:"click.bs.collapse.data-api"},c={SHOW:"show",COLLAPSE:"collapse",COLLAPSING:"collapsing",COLLAPSED:"collapsed"},f={WIDTH:"width",HEIGHT:"height"},h={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},d=function(){function r(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n),this._triggerArray=t.makeArray(t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var r=t(h.DATA_TOGGLE),i=0;i0&&(this._selector=s,this._triggerArray.push(o))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var d=r.prototype;return d.toggle=function(){t(this._element).hasClass(c.SHOW)?this.hide():this.show()},d.show=function(){var e,i,o=this;if(!(this._isTransitioning||t(this._element).hasClass(c.SHOW)||(this._parent&&0===(e=t.makeArray(t(this._parent).find(h.ACTIVES).filter('[data-parent="'+this._config.parent+'"]'))).length&&(e=null),e&&(i=t(e).not(this._selector).data(n))&&i._isTransitioning))){var s=t.Event(u.SHOW);if(t(this._element).trigger(s),!s.isDefaultPrevented()){e&&(r._jQueryInterface.call(t(e).not(this._selector),"hide"),i||t(e).data(n,null));var l=this._getDimension();t(this._element).removeClass(c.COLLAPSE).addClass(c.COLLAPSING),this._element.style[l]=0,this._triggerArray.length>0&&t(this._triggerArray).removeClass(c.COLLAPSED).attr("aria-expanded",!0),this.setTransitioning(!0);var f=function(){t(o._element).removeClass(c.COLLAPSING).addClass(c.COLLAPSE).addClass(c.SHOW),o._element.style[l]="",o.setTransitioning(!1),t(o._element).trigger(u.SHOWN)};if(a.supportsTransitionEnd()){var d=l[0].toUpperCase()+l.slice(1),p="scroll"+d;t(this._element).one(a.TRANSITION_END,f).emulateTransitionEnd(600),this._element.style[l]=this._element[p]+"px"}else f()}}},d.hide=function(){var e=this;if(!this._isTransitioning&&t(this._element).hasClass(c.SHOW)){var n=t.Event(u.HIDE);if(t(this._element).trigger(n),!n.isDefaultPrevented()){var r=this._getDimension();if(this._element.style[r]=this._element.getBoundingClientRect()[r]+"px",a.reflow(this._element),t(this._element).addClass(c.COLLAPSING).removeClass(c.COLLAPSE).removeClass(c.SHOW),this._triggerArray.length>0)for(var i=0;i0&&t(n).toggleClass(c.COLLAPSED,!r).attr("aria-expanded",r)}},r._getTargetFromElement=function(e){var n=a.getSelectorFromElement(e);return n?t(n)[0]:null},r._jQueryInterface=function(e){return this.each(function(){var i=t(this),a=i.data(n),l=o({},s,i.data(),"object"==typeof e&&e);if(!a&&l.toggle&&/show|hide/.test(e)&&(l.toggle=!1),a||(a=new r(this,l),i.data(n,a)),"string"==typeof e){if(void 0===a[e])throw new TypeError('No method named "'+e+'"');a[e]()}})},i(r,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return s}}]),r}();return t(document).on(u.CLICK_DATA_API,h.DATA_TOGGLE,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var r=t(this),i=a.getSelectorFromElement(this);t(i).each(function(){var e=t(this),i=e.data(n),o=i?"toggle":r.data();d._jQueryInterface.call(e,o)})}),t.fn[e]=d._jQueryInterface,t.fn[e].Constructor=d,t.fn[e].noConflict=function(){return t.fn[e]=r,d._jQueryInterface},d}(e),f=function(t){var e="dropdown",r="bs.dropdown",s="."+r,l=t.fn[e],u=new RegExp("38|40|27"),c={HIDE:"hide"+s,HIDDEN:"hidden"+s,SHOW:"show"+s,SHOWN:"shown"+s,CLICK:"click"+s,CLICK_DATA_API:"click.bs.dropdown.data-api",KEYDOWN_DATA_API:"keydown.bs.dropdown.data-api",KEYUP_DATA_API:"keyup.bs.dropdown.data-api"},f={DISABLED:"disabled",SHOW:"show",DROPUP:"dropup",DROPRIGHT:"dropright",DROPLEFT:"dropleft",MENURIGHT:"dropdown-menu-right",MENULEFT:"dropdown-menu-left",POSITION_STATIC:"position-static"},h={DATA_TOGGLE:'[data-toggle="dropdown"]',FORM_CHILD:".dropdown form",MENU:".dropdown-menu",NAVBAR_NAV:".navbar-nav",VISIBLE_ITEMS:".dropdown-menu .dropdown-item:not(.disabled)"},d={TOP:"top-start",TOPEND:"top-end",BOTTOM:"bottom-start",BOTTOMEND:"bottom-end",RIGHT:"right-start",RIGHTEND:"right-end",LEFT:"left-start",LEFTEND:"left-end"},p={offset:0,flip:!0,boundary:"scrollParent"},g={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)"},_=function(){function l(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var _=l.prototype;return _.toggle=function(){if(!this._element.disabled&&!t(this._element).hasClass(f.DISABLED)){var e=l._getParentFromElement(this._element),r=t(this._menu).hasClass(f.SHOW);if(l._clearMenus(),!r){var i={relatedTarget:this._element},o=t.Event(c.SHOW,i);if(t(e).trigger(o),!o.isDefaultPrevented()){if(!this._inNavbar){if(void 0===n)throw new TypeError("Bootstrap dropdown require Popper.js (https://popper.js.org)");var a=this._element;t(e).hasClass(f.DROPUP)&&(t(this._menu).hasClass(f.MENULEFT)||t(this._menu).hasClass(f.MENURIGHT))&&(a=e),"scrollParent"!==this._config.boundary&&t(e).addClass(f.POSITION_STATIC),this._popper=new n(a,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===t(e).closest(h.NAVBAR_NAV).length&&t("body").children().on("mouseover",null,t.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),t(this._menu).toggleClass(f.SHOW),t(e).toggleClass(f.SHOW).trigger(t.Event(c.SHOWN,i))}}}},_.dispose=function(){t.removeData(this._element,r),t(this._element).off(s),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},_.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},_._addEventListeners=function(){var e=this;t(this._element).on(c.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},_._getConfig=function(n){return n=o({},this.constructor.Default,t(this._element).data(),n),a.typeCheckConfig(e,n,this.constructor.DefaultType),n},_._getMenuElement=function(){if(!this._menu){var e=l._getParentFromElement(this._element);this._menu=t(e).find(h.MENU)[0]}return this._menu},_._getPlacement=function(){var e=t(this._element).parent(),n=d.BOTTOM;return e.hasClass(f.DROPUP)?(n=d.TOP,t(this._menu).hasClass(f.MENURIGHT)&&(n=d.TOPEND)):e.hasClass(f.DROPRIGHT)?n=d.RIGHT:e.hasClass(f.DROPLEFT)?n=d.LEFT:t(this._menu).hasClass(f.MENURIGHT)&&(n=d.BOTTOMEND),n},_._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},_._getPopperConfig=function(){var t=this,e={};"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=o({},e.offsets,t._config.offset(e.offsets)||{}),e}:e.offset=this._config.offset;var n={placement:this._getPlacement(),modifiers:{offset:e,flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return n},l._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(r),i="object"==typeof e?e:null;if(n||(n=new l(this,i),t(this).data(r,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},l._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=t.makeArray(t(h.DATA_TOGGLE)),i=0;i0&&o--,40===e.which&&odocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},h._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},h._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},h={SHOW:"show",OUT:"out"},d={HIDE:"hide"+r,HIDDEN:"hidden"+r,SHOW:"show"+r,SHOWN:"shown"+r,INSERTED:"inserted"+r,CLICK:"click"+r,FOCUSIN:"focusin"+r,FOCUSOUT:"focusout"+r,MOUSEENTER:"mouseenter"+r,MOUSELEAVE:"mouseleave"+r},p={FADE:"fade",SHOW:"show"},g={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner",ARROW:".arrow"},_={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},v=function(){function s(t,e){if(void 0===n)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var v=s.prototype;return v.enable=function(){this._isEnabled=!0},v.disable=function(){this._isEnabled=!1},v.toggleEnabled=function(){this._isEnabled=!this._isEnabled},v.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,r=t(e.currentTarget).data(n);r||(r=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,r)),r._activeTrigger.click=!r._activeTrigger.click,r._isWithActiveTrigger()?r._enter(null,r):r._leave(null,r)}else{if(t(this.getTipElement()).hasClass(p.SHOW))return void this._leave(null,this);this._enter(null,this)}},v.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},v.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var r=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(r);var i=t.contains(this.element.ownerDocument.documentElement,this.element);if(r.isDefaultPrevented()||!i)return;var o=this.getTipElement(),l=a.getUID(this.constructor.NAME);o.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&t(o).addClass(p.FADE);var u="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,c=this._getAttachment(u);this.addAttachmentClass(c);var f=!1===this.config.container?document.body:t(this.config.container);t(o).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(o).appendTo(f),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,o,{placement:c,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:g.ARROW},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(o).addClass(p.SHOW),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var d=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===h.OUT&&e._leave(null,e)};a.supportsTransitionEnd()&&t(this.tip).hasClass(p.FADE)?t(this.tip).one(a.TRANSITION_END,d).emulateTransitionEnd(s._TRANSITION_DURATION):d()}},v.hide=function(e){var n=this,r=this.getTipElement(),i=t.Event(this.constructor.Event.HIDE),o=function(){n._hoverState!==h.SHOW&&r.parentNode&&r.parentNode.removeChild(r),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(i),i.isDefaultPrevented()||(t(r).removeClass(p.SHOW),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[_.CLICK]=!1,this._activeTrigger[_.FOCUS]=!1,this._activeTrigger[_.HOVER]=!1,a.supportsTransitionEnd()&&t(this.tip).hasClass(p.FADE)?t(r).one(a.TRANSITION_END,o).emulateTransitionEnd(150):o(),this._hoverState="")},v.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},v.isWithContent=function(){return Boolean(this.getTitle())},v.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},v.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},v.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(g.TOOLTIP_INNER),this.getTitle()),e.removeClass(p.FADE+" "+p.SHOW)},v.setElementContent=function(e,n){var r=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?r?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[r?"html":"text"](n)},v.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},v._getAttachment=function(t){return c[t.toUpperCase()]},v._setListeners=function(){var e=this,n=this.config.trigger.split(" ");n.forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==_.MANUAL){var r=n===_.HOVER?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,i=n===_.HOVER?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(r,e.config.selector,function(t){return e._enter(t)}).on(i,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=o({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},v._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},v._enter=function(e,n){var r=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(r))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(r,n)),e&&(n._activeTrigger["focusin"===e.type?_.FOCUS:_.HOVER]=!0),t(n.getTipElement()).hasClass(p.SHOW)||n._hoverState===h.SHOW?n._hoverState=h.SHOW:(clearTimeout(n._timeout),n._hoverState=h.SHOW,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===h.SHOW&&n.show()},n.config.delay.show):n.show())},v._leave=function(e,n){var r=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(r))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(r,n)),e&&(n._activeTrigger["focusout"===e.type?_.FOCUS:_.HOVER]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=h.OUT,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===h.OUT&&n.hide()},n.config.delay.hide):n.hide())},v._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},v._getConfig=function(n){return"number"==typeof(n=o({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),a.typeCheckConfig(e,n,this.constructor.DefaultType),n},v._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},v._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(l);null!==n&&n.length>0&&e.removeClass(n.join(""))},v._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},v._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(p.FADE),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},s._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.tooltip"),r="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new s(this,r),t(this).data("bs.tooltip",n)),"string"==typeof e)){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},i(s,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return f}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return d}},{key:"EVENT_KEY",get:function(){return r}},{key:"DefaultType",get:function(){return u}}]),s}();return t.fn[e]=v._jQueryInterface,t.fn[e].Constructor=v,t.fn[e].noConflict=function(){return t.fn[e]=s,v._jQueryInterface},v}(e),p=function(t){var e="popover",n=".bs.popover",r=t.fn[e],a=new RegExp("(^|\\s)bs-popover\\S+","g"),s=o({},d.Default,{placement:"right",trigger:"click",content:"",template:''}),l=o({},d.DefaultType,{content:"(string|element|function)"}),u={FADE:"fade",SHOW:"show"},c={TITLE:".popover-header",CONTENT:".popover-body"},f={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},h=function(r){var o,h;function d(){return r.apply(this,arguments)||this}h=r,(o=d).prototype=Object.create(h.prototype),o.prototype.constructor=o,o.__proto__=h;var p=d.prototype;return p.isWithContent=function(){return this.getTitle()||this._getContent()},p.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},p.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},p.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(c.TITLE),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(e.find(c.CONTENT),n),e.removeClass(u.FADE+" "+u.SHOW)},p._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},p._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(a);null!==n&&n.length>0&&e.removeClass(n.join(""))},d._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.popover"),r="object"==typeof e?e:null;if((n||!/destroy|hide/.test(e))&&(n||(n=new d(this,r),t(this).data("bs.popover",n)),"string"==typeof e)){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},i(d,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return s}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return f}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return l}}]),d}(d);return t.fn[e]=h._jQueryInterface,t.fn[e].Constructor=h,t.fn[e].noConflict=function(){return t.fn[e]=r,h._jQueryInterface},h}(e),g=function(t){var e="scrollspy",n=t.fn[e],r={offset:10,method:"auto",target:""},s={offset:"number",method:"string",target:"(string|element)"},l={ACTIVATE:"activate.bs.scrollspy",SCROLL:"scroll.bs.scrollspy",LOAD_DATA_API:"load.bs.scrollspy.data-api"},u={DROPDOWN_ITEM:"dropdown-item",DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active"},c={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},f={OFFSET:"offset",POSITION:"position"},h=function(){function n(e,n){var r=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+c.NAV_LINKS+","+this._config.target+" "+c.LIST_ITEMS+","+this._config.target+" "+c.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(l.SCROLL,function(t){return r._process(t)}),this.refresh(),this._process()}var h=n.prototype;return h.refresh=function(){var e=this,n=this._scrollElement===this._scrollElement.window?f.OFFSET:f.POSITION,r="auto"===this._config.method?n:this._config.method,i=r===f.POSITION?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight();var o=t.makeArray(t(this._selector));o.map(function(e){var n,o=a.getSelectorFromElement(e);if(o&&(n=t(o)[0]),n){var s=n.getBoundingClientRect();if(s.width||s.height)return[t(n)[r]().top+i,o]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},h.dispose=function(){t.removeData(this._element,"bs.scrollspy"),t(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},h._getConfig=function(n){if("string"!=typeof(n=o({},r,n)).target){var i=t(n.target).attr("id");i||(i=a.getUID(e),t(n.target).attr("id",i)),n.target="#"+i}return a.typeCheckConfig(e,n,s),n},h._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},h._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},h._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},h._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var r=this._targets[this._targets.length-1];this._activeTarget!==r&&this._activate(r)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var i=this._offsets.length;i--;){var o=this._activeTarget!==this._targets[i]&&t>=this._offsets[i]&&(void 0===this._offsets[i+1]||t li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},s=function(){function e(t){this._element=t}var s=e.prototype;return s.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&t(this._element).hasClass(r.ACTIVE)||t(this._element).hasClass(r.DISABLED))){var i,s,l=t(this._element).closest(o.NAV_LIST_GROUP)[0],u=a.getSelectorFromElement(this._element);if(l){var c="UL"===l.nodeName?o.ACTIVE_UL:o.ACTIVE;s=(s=t.makeArray(t(l).find(c)))[s.length-1]}var f=t.Event(n.HIDE,{relatedTarget:this._element}),h=t.Event(n.SHOW,{relatedTarget:s});if(s&&t(s).trigger(f),t(this._element).trigger(h),!h.isDefaultPrevented()&&!f.isDefaultPrevented()){u&&(i=t(u)[0]),this._activate(this._element,l);var d=function(){var r=t.Event(n.HIDDEN,{relatedTarget:e._element}),i=t.Event(n.SHOWN,{relatedTarget:s});t(s).trigger(r),t(e._element).trigger(i)};i?this._activate(i,i.parentNode,d):d()}}},s.dispose=function(){t.removeData(this._element,"bs.tab"),this._element=null},s._activate=function(e,n,i){var s=this,l=("UL"===n.nodeName?t(n).find(o.ACTIVE_UL):t(n).children(o.ACTIVE))[0],u=i&&a.supportsTransitionEnd()&&l&&t(l).hasClass(r.FADE),c=function(){return s._transitionComplete(e,l,i)};l&&u?t(l).one(a.TRANSITION_END,c).emulateTransitionEnd(150):c()},s._transitionComplete=function(e,n,i){if(n){t(n).removeClass(r.SHOW+" "+r.ACTIVE);var s=t(n.parentNode).find(o.DROPDOWN_ACTIVE_CHILD)[0];s&&t(s).removeClass(r.ACTIVE),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(t(e).addClass(r.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),a.reflow(e),t(e).addClass(r.SHOW),e.parentNode&&t(e.parentNode).hasClass(r.DROPDOWN_MENU)){var l=t(e).closest(o.DROPDOWN)[0];l&&t(l).find(o.DROPDOWN_TOGGLE).addClass(r.ACTIVE),e.setAttribute("aria-expanded",!0)}i&&i()},e._jQueryInterface=function(n){return this.each(function(){var r=t(this),i=r.data("bs.tab");if(i||(i=new e(this),r.data("bs.tab",i)),"string"==typeof n){if(void 0===i[n])throw new TypeError('No method named "'+n+'"');i[n]()}})},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(n.CLICK_DATA_API,o.DATA_TOGGLE,function(e){e.preventDefault(),s._jQueryInterface.call(t(this),"show")}),t.fn.tab=s._jQueryInterface,t.fn.tab.Constructor=s,t.fn.tab.noConflict=function(){return t.fn.tab=e,s._jQueryInterface},s}(e);(function(t){if(void 0===t)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")})(e),t.Util=a,t.Alert=s,t.Button=l,t.Carousel=u,t.Collapse=c,t.Dropdown=f,t.Modal=h,t.Popover=p,t.Scrollspy=g,t.Tab=_,t.Tooltip=d,Object.defineProperty(t,"__esModule",{value:!0})}(e,n(0),n(7))},function(t,e,n){"use strict";n.r(e);var r=n(4),i=n.n(r),o=n(0),a=n.n(o),s=(n(8),n(3)),l=n.n(s);n(6),n(5);a()(function(){var t='',e='';a.a.getJSON("data/screenshots.json",function(n){a.a.getJSON("data/spider_result.json",function(r){var o=a()("tbody");a.a.each(r,function(r,s){var u,c,f=a()(document.createElement("tr")),h=null;"DE:ORTSVERBAND"===s.meta.level?h="OV":"DE:KREISVERBAND"===s.meta.level?h="KV":"DE:LANDESVERBAND"===s.meta.level&&(h="LV"),f.append(''+(null===h?"":h)+""),f.append(""+(null===s.meta.state?"":s.meta.state)+""),f.append(""+(null===s.meta.district?"":s.meta.district)+""),f.append(""+(null===s.meta.city?"":s.meta.city)+""),f.append(''+(u=l.a.toUnicode(s.input_url),c=60,u.length>c&&(u=u.substring(0,c)+"…"),u)+""),f.append(''+s.score.toFixed(1)+"");var d=i.a.join(s.details.ipv4_addresses,", ");f.append(''+(""===d?e:d)+"");var p=''+t+"";if(s.result.SITE_REACHABLE.value||(p=''+e+""),f.append(''+p+""),s.result.SITE_REACHABLE.value&&null!==s.result.HTTP_RESPONSE_DURATION.value){var g="bad";s.result.HTTP_RESPONSE_DURATION.score>0&&(g="medium"),s.result.HTTP_RESPONSE_DURATION.score>.5&&(g="good"),f.append(''+s.result.HTTP_RESPONSE_DURATION.value+" ms")}else f.append(''+e+"");var _=s.result.FAVICON.value&&null!=s.details.icons[0],v=_&&null!=s.details.icons[0]?s.details.icons[0]:"",m=_?'':'';f.append(''+m+"");var y=s.result.HTTPS.value,b=y?''+t+"":''+e+"";f.append(''+b+"");var w=s.result.WWW_OPTIONAL.value,T=w?''+t+"":''+e+"";f.append(''+T+"");var S=s.result.CANONICAL_URL.value,C=S?''+t+"":''+e+"";f.append(''+C+"");var D=s.result.RESPONSIVE.value,x=D?''+t+"":''+e+"";f.append(''+x+"");var E=s.result.FEEDS.value,A=E?''+t+"":''+e+"";f.append(''+A+"");var I=!1;s.details.canonical_urls&&s.details.canonical_urls.length>0&&(void 0!==n[s.details.canonical_urls[0]]&&(I='',I+=''));f.append(''+(I||'')+""),f.append(''+(s.details.cms?s.details.cms:"")+""),o.append(f)}),a()("table.table").DataTable({order:[[0,"asc"]],paging:!1,pageLength:1e4,language:{search:"Suche"}}),a()(".tt").tooltipster({animationDuration:100,theme:"tooltipster-borderless"})})})})}]); \ No newline at end of file +!function(t,e,n){"use strict";function r(t,e){for(var n=0;n0?n:null}catch(t){return null}},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(n){t(n).trigger(e.end)},supportsTransitionEnd:function(){return Boolean(e)},isElement:function(t){return(t[0]||t).nodeType},typeCheckConfig:function(t,e,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],a=e[i],s=a&&r.isElement(a)?"element":(l=a,{}.toString.call(l).match(/\s([a-zA-Z]+)/)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(t.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var l}};return e=("undefined"==typeof window||!window.QUnit)&&{end:"transitionend"},t.fn.emulateTransitionEnd=n,r.supportsTransitionEnd()&&(t.event.special[r.TRANSITION_END]={bindType:e.end,delegateType:e.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}}),r}(e),s=function(t){var e=t.fn.alert,n={CLOSE:"close.bs.alert",CLOSED:"closed.bs.alert",CLICK_DATA_API:"click.bs.alert.data-api"},r={ALERT:"alert",FADE:"fade",SHOW:"show"},o=function(){function e(t){this._element=t}var o=e.prototype;return o.close=function(t){t=t||this._element;var e=this._getRootElement(t),n=this._triggerCloseEvent(e);n.isDefaultPrevented()||this._removeElement(e)},o.dispose=function(){t.removeData(this._element,"bs.alert"),this._element=null},o._getRootElement=function(e){var n=a.getSelectorFromElement(e),i=!1;return n&&(i=t(n)[0]),i||(i=t(e).closest("."+r.ALERT)[0]),i},o._triggerCloseEvent=function(e){var r=t.Event(n.CLOSE);return t(e).trigger(r),r},o._removeElement=function(e){var n=this;t(e).removeClass(r.SHOW),a.supportsTransitionEnd()&&t(e).hasClass(r.FADE)?t(e).one(a.TRANSITION_END,function(t){return n._destroyElement(e,t)}).emulateTransitionEnd(150):this._destroyElement(e)},o._destroyElement=function(e){t(e).detach().trigger(n.CLOSED).remove()},e._jQueryInterface=function(n){return this.each(function(){var r=t(this),i=r.data("bs.alert");i||(i=new e(this),r.data("bs.alert",i)),"close"===n&&i[n](this)})},e._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(n.CLICK_DATA_API,'[data-dismiss="alert"]',o._handleDismiss(new o)),t.fn.alert=o._jQueryInterface,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=e,o._jQueryInterface},o}(e),l=function(t){var e="button",n=t.fn[e],r={ACTIVE:"active",BUTTON:"btn",FOCUS:"focus"},o={DATA_TOGGLE_CARROT:'[data-toggle^="button"]',DATA_TOGGLE:'[data-toggle="buttons"]',INPUT:"input",ACTIVE:".active",BUTTON:".btn"},a={CLICK_DATA_API:"click.bs.button.data-api",FOCUS_BLUR_DATA_API:"focus.bs.button.data-api blur.bs.button.data-api"},s=function(){function e(t){this._element=t}var n=e.prototype;return n.toggle=function(){var e=!0,n=!0,i=t(this._element).closest(o.DATA_TOGGLE)[0];if(i){var a=t(this._element).find(o.INPUT)[0];if(a){if("radio"===a.type)if(a.checked&&t(this._element).hasClass(r.ACTIVE))e=!1;else{var s=t(i).find(o.ACTIVE)[0];s&&t(s).removeClass(r.ACTIVE)}if(e){if(a.hasAttribute("disabled")||i.hasAttribute("disabled")||a.classList.contains("disabled")||i.classList.contains("disabled"))return;a.checked=!t(this._element).hasClass(r.ACTIVE),t(a).trigger("change")}a.focus(),n=!1}}n&&this._element.setAttribute("aria-pressed",!t(this._element).hasClass(r.ACTIVE)),e&&t(this._element).toggleClass(r.ACTIVE)},n.dispose=function(){t.removeData(this._element,"bs.button"),this._element=null},e._jQueryInterface=function(n){return this.each(function(){var r=t(this).data("bs.button");r||(r=new e(this),t(this).data("bs.button",r)),"toggle"===n&&r[n]()})},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(a.CLICK_DATA_API,o.DATA_TOGGLE_CARROT,function(e){e.preventDefault();var n=e.target;t(n).hasClass(r.BUTTON)||(n=t(n).closest(o.BUTTON)),s._jQueryInterface.call(t(n),"toggle")}).on(a.FOCUS_BLUR_DATA_API,o.DATA_TOGGLE_CARROT,function(e){var n=t(e.target).closest(o.BUTTON)[0];t(n).toggleClass(r.FOCUS,/^focus(in)?$/.test(e.type))}),t.fn[e]=s._jQueryInterface,t.fn[e].Constructor=s,t.fn[e].noConflict=function(){return t.fn[e]=n,s._jQueryInterface},s}(e),u=function(t){var e="carousel",n="bs.carousel",r="."+n,s=t.fn[e],l={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},u={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},c={NEXT:"next",PREV:"prev",LEFT:"left",RIGHT:"right"},f={SLIDE:"slide"+r,SLID:"slid"+r,KEYDOWN:"keydown"+r,MOUSEENTER:"mouseenter"+r,MOUSELEAVE:"mouseleave"+r,TOUCHEND:"touchend"+r,LOAD_DATA_API:"load.bs.carousel.data-api",CLICK_DATA_API:"click.bs.carousel.data-api"},h={CAROUSEL:"carousel",ACTIVE:"active",SLIDE:"slide",RIGHT:"carousel-item-right",LEFT:"carousel-item-left",NEXT:"carousel-item-next",PREV:"carousel-item-prev",ITEM:"carousel-item"},d={ACTIVE:".active",ACTIVE_ITEM:".active.carousel-item",ITEM:".carousel-item",NEXT_PREV:".carousel-item-next, .carousel-item-prev",INDICATORS:".carousel-indicators",DATA_SLIDE:"[data-slide], [data-slide-to]",DATA_RIDE:'[data-ride="carousel"]'},p=function(){function s(e,n){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this._config=this._getConfig(n),this._element=t(e)[0],this._indicatorsElement=t(this._element).find(d.INDICATORS)[0],this._addEventListeners()}var p=s.prototype;return p.next=function(){this._isSliding||this._slide(c.NEXT)},p.nextWhenVisible=function(){!document.hidden&&t(this._element).is(":visible")&&"hidden"!==t(this._element).css("visibility")&&this.next()},p.prev=function(){this._isSliding||this._slide(c.PREV)},p.pause=function(e){e||(this._isPaused=!0),t(this._element).find(d.NEXT_PREV)[0]&&a.supportsTransitionEnd()&&(a.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},p.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},p.to=function(e){var n=this;this._activeElement=t(this._element).find(d.ACTIVE_ITEM)[0];var r=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)t(this._element).one(f.SLID,function(){return n.to(e)});else{if(r===e)return this.pause(),void this.cycle();var i=e>r?c.NEXT:c.PREV;this._slide(i,this._items[e])}},p.dispose=function(){t(this._element).off(r),t.removeData(this._element,n),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},p._getConfig=function(t){return t=o({},l,t),a.typeCheckConfig(e,t,u),t},p._addEventListeners=function(){var e=this;this._config.keyboard&&t(this._element).on(f.KEYDOWN,function(t){return e._keydown(t)}),"hover"===this._config.pause&&(t(this._element).on(f.MOUSEENTER,function(t){return e.pause(t)}).on(f.MOUSELEAVE,function(t){return e.cycle(t)}),"ontouchstart"in document.documentElement&&t(this._element).on(f.TOUCHEND,function(){e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval)}))},p._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},p._getItemIndex=function(e){return this._items=t.makeArray(t(e).parent().find(d.ITEM)),this._items.indexOf(e)},p._getItemByDirection=function(t,e){var n=t===c.NEXT,r=t===c.PREV,i=this._getItemIndex(e),o=this._items.length-1,a=r&&0===i||n&&i===o;if(a&&!this._config.wrap)return e;var s=t===c.PREV?-1:1,l=(i+s)%this._items.length;return-1===l?this._items[this._items.length-1]:this._items[l]},p._triggerSlideEvent=function(e,n){var r=this._getItemIndex(e),i=this._getItemIndex(t(this._element).find(d.ACTIVE_ITEM)[0]),o=t.Event(f.SLIDE,{relatedTarget:e,direction:n,from:i,to:r});return t(this._element).trigger(o),o},p._setActiveIndicatorElement=function(e){if(this._indicatorsElement){t(this._indicatorsElement).find(d.ACTIVE).removeClass(h.ACTIVE);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&t(n).addClass(h.ACTIVE)}},p._slide=function(e,n){var r,i,o,s=this,l=t(this._element).find(d.ACTIVE_ITEM)[0],u=this._getItemIndex(l),p=n||l&&this._getItemByDirection(e,l),g=this._getItemIndex(p),_=Boolean(this._interval);if(e===c.NEXT?(r=h.LEFT,i=h.NEXT,o=c.LEFT):(r=h.RIGHT,i=h.PREV,o=c.RIGHT),p&&t(p).hasClass(h.ACTIVE))this._isSliding=!1;else{var v=this._triggerSlideEvent(p,o);if(!v.isDefaultPrevented()&&l&&p){this._isSliding=!0,_&&this.pause(),this._setActiveIndicatorElement(p);var m=t.Event(f.SLID,{relatedTarget:p,direction:o,from:u,to:g});a.supportsTransitionEnd()&&t(this._element).hasClass(h.SLIDE)?(t(p).addClass(i),a.reflow(p),t(l).addClass(r),t(p).addClass(r),t(l).one(a.TRANSITION_END,function(){t(p).removeClass(r+" "+i).addClass(h.ACTIVE),t(l).removeClass(h.ACTIVE+" "+i+" "+r),s._isSliding=!1,setTimeout(function(){return t(s._element).trigger(m)},0)}).emulateTransitionEnd(600)):(t(l).removeClass(h.ACTIVE),t(p).addClass(h.ACTIVE),this._isSliding=!1,t(this._element).trigger(m)),_&&this.cycle()}}},s._jQueryInterface=function(e){return this.each(function(){var r=t(this).data(n),i=o({},l,t(this).data());"object"==typeof e&&(i=o({},i,e));var a="string"==typeof e?e:i.slide;if(r||(r=new s(this,i),t(this).data(n,r)),"number"==typeof e)r.to(e);else if("string"==typeof a){if(void 0===r[a])throw new TypeError('No method named "'+a+'"');r[a]()}else i.interval&&(r.pause(),r.cycle())})},s._dataApiClickHandler=function(e){var r=a.getSelectorFromElement(this);if(r){var i=t(r)[0];if(i&&t(i).hasClass(h.CAROUSEL)){var l=o({},t(i).data(),t(this).data()),u=this.getAttribute("data-slide-to");u&&(l.interval=!1),s._jQueryInterface.call(t(i),l),u&&t(i).data(n).to(u),e.preventDefault()}}},i(s,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return l}}]),s}();return t(document).on(f.CLICK_DATA_API,d.DATA_SLIDE,p._dataApiClickHandler),t(window).on(f.LOAD_DATA_API,function(){t(d.DATA_RIDE).each(function(){var e=t(this);p._jQueryInterface.call(e,e.data())})}),t.fn[e]=p._jQueryInterface,t.fn[e].Constructor=p,t.fn[e].noConflict=function(){return t.fn[e]=s,p._jQueryInterface},p}(e),c=function(t){var e="collapse",n="bs.collapse",r=t.fn[e],s={toggle:!0,parent:""},l={toggle:"boolean",parent:"(string|element)"},u={SHOW:"show.bs.collapse",SHOWN:"shown.bs.collapse",HIDE:"hide.bs.collapse",HIDDEN:"hidden.bs.collapse",CLICK_DATA_API:"click.bs.collapse.data-api"},c={SHOW:"show",COLLAPSE:"collapse",COLLAPSING:"collapsing",COLLAPSED:"collapsed"},f={WIDTH:"width",HEIGHT:"height"},h={ACTIVES:".show, .collapsing",DATA_TOGGLE:'[data-toggle="collapse"]'},d=function(){function r(e,n){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(n),this._triggerArray=t.makeArray(t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'));for(var r=t(h.DATA_TOGGLE),i=0;i0&&(this._selector=s,this._triggerArray.push(o))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var d=r.prototype;return d.toggle=function(){t(this._element).hasClass(c.SHOW)?this.hide():this.show()},d.show=function(){var e,i,o=this;if(!(this._isTransitioning||t(this._element).hasClass(c.SHOW)||(this._parent&&0===(e=t.makeArray(t(this._parent).find(h.ACTIVES).filter('[data-parent="'+this._config.parent+'"]'))).length&&(e=null),e&&(i=t(e).not(this._selector).data(n))&&i._isTransitioning))){var s=t.Event(u.SHOW);if(t(this._element).trigger(s),!s.isDefaultPrevented()){e&&(r._jQueryInterface.call(t(e).not(this._selector),"hide"),i||t(e).data(n,null));var l=this._getDimension();t(this._element).removeClass(c.COLLAPSE).addClass(c.COLLAPSING),this._element.style[l]=0,this._triggerArray.length>0&&t(this._triggerArray).removeClass(c.COLLAPSED).attr("aria-expanded",!0),this.setTransitioning(!0);var f=function(){t(o._element).removeClass(c.COLLAPSING).addClass(c.COLLAPSE).addClass(c.SHOW),o._element.style[l]="",o.setTransitioning(!1),t(o._element).trigger(u.SHOWN)};if(a.supportsTransitionEnd()){var d=l[0].toUpperCase()+l.slice(1),p="scroll"+d;t(this._element).one(a.TRANSITION_END,f).emulateTransitionEnd(600),this._element.style[l]=this._element[p]+"px"}else f()}}},d.hide=function(){var e=this;if(!this._isTransitioning&&t(this._element).hasClass(c.SHOW)){var n=t.Event(u.HIDE);if(t(this._element).trigger(n),!n.isDefaultPrevented()){var r=this._getDimension();if(this._element.style[r]=this._element.getBoundingClientRect()[r]+"px",a.reflow(this._element),t(this._element).addClass(c.COLLAPSING).removeClass(c.COLLAPSE).removeClass(c.SHOW),this._triggerArray.length>0)for(var i=0;i0&&t(n).toggleClass(c.COLLAPSED,!r).attr("aria-expanded",r)}},r._getTargetFromElement=function(e){var n=a.getSelectorFromElement(e);return n?t(n)[0]:null},r._jQueryInterface=function(e){return this.each(function(){var i=t(this),a=i.data(n),l=o({},s,i.data(),"object"==typeof e&&e);if(!a&&l.toggle&&/show|hide/.test(e)&&(l.toggle=!1),a||(a=new r(this,l),i.data(n,a)),"string"==typeof e){if(void 0===a[e])throw new TypeError('No method named "'+e+'"');a[e]()}})},i(r,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return s}}]),r}();return t(document).on(u.CLICK_DATA_API,h.DATA_TOGGLE,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var r=t(this),i=a.getSelectorFromElement(this);t(i).each(function(){var e=t(this),i=e.data(n),o=i?"toggle":r.data();d._jQueryInterface.call(e,o)})}),t.fn[e]=d._jQueryInterface,t.fn[e].Constructor=d,t.fn[e].noConflict=function(){return t.fn[e]=r,d._jQueryInterface},d}(e),f=function(t){var e="dropdown",r="bs.dropdown",s="."+r,l=t.fn[e],u=new RegExp("38|40|27"),c={HIDE:"hide"+s,HIDDEN:"hidden"+s,SHOW:"show"+s,SHOWN:"shown"+s,CLICK:"click"+s,CLICK_DATA_API:"click.bs.dropdown.data-api",KEYDOWN_DATA_API:"keydown.bs.dropdown.data-api",KEYUP_DATA_API:"keyup.bs.dropdown.data-api"},f={DISABLED:"disabled",SHOW:"show",DROPUP:"dropup",DROPRIGHT:"dropright",DROPLEFT:"dropleft",MENURIGHT:"dropdown-menu-right",MENULEFT:"dropdown-menu-left",POSITION_STATIC:"position-static"},h={DATA_TOGGLE:'[data-toggle="dropdown"]',FORM_CHILD:".dropdown form",MENU:".dropdown-menu",NAVBAR_NAV:".navbar-nav",VISIBLE_ITEMS:".dropdown-menu .dropdown-item:not(.disabled)"},d={TOP:"top-start",TOPEND:"top-end",BOTTOM:"bottom-start",BOTTOMEND:"bottom-end",RIGHT:"right-start",RIGHTEND:"right-end",LEFT:"left-start",LEFTEND:"left-end"},p={offset:0,flip:!0,boundary:"scrollParent"},g={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)"},_=function(){function l(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var _=l.prototype;return _.toggle=function(){if(!this._element.disabled&&!t(this._element).hasClass(f.DISABLED)){var e=l._getParentFromElement(this._element),r=t(this._menu).hasClass(f.SHOW);if(l._clearMenus(),!r){var i={relatedTarget:this._element},o=t.Event(c.SHOW,i);if(t(e).trigger(o),!o.isDefaultPrevented()){if(!this._inNavbar){if(void 0===n)throw new TypeError("Bootstrap dropdown require Popper.js (https://popper.js.org)");var a=this._element;t(e).hasClass(f.DROPUP)&&(t(this._menu).hasClass(f.MENULEFT)||t(this._menu).hasClass(f.MENURIGHT))&&(a=e),"scrollParent"!==this._config.boundary&&t(e).addClass(f.POSITION_STATIC),this._popper=new n(a,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===t(e).closest(h.NAVBAR_NAV).length&&t("body").children().on("mouseover",null,t.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),t(this._menu).toggleClass(f.SHOW),t(e).toggleClass(f.SHOW).trigger(t.Event(c.SHOWN,i))}}}},_.dispose=function(){t.removeData(this._element,r),t(this._element).off(s),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},_.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},_._addEventListeners=function(){var e=this;t(this._element).on(c.CLICK,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},_._getConfig=function(n){return n=o({},this.constructor.Default,t(this._element).data(),n),a.typeCheckConfig(e,n,this.constructor.DefaultType),n},_._getMenuElement=function(){if(!this._menu){var e=l._getParentFromElement(this._element);this._menu=t(e).find(h.MENU)[0]}return this._menu},_._getPlacement=function(){var e=t(this._element).parent(),n=d.BOTTOM;return e.hasClass(f.DROPUP)?(n=d.TOP,t(this._menu).hasClass(f.MENURIGHT)&&(n=d.TOPEND)):e.hasClass(f.DROPRIGHT)?n=d.RIGHT:e.hasClass(f.DROPLEFT)?n=d.LEFT:t(this._menu).hasClass(f.MENURIGHT)&&(n=d.BOTTOMEND),n},_._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},_._getPopperConfig=function(){var t=this,e={};"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=o({},e.offsets,t._config.offset(e.offsets)||{}),e}:e.offset=this._config.offset;var n={placement:this._getPlacement(),modifiers:{offset:e,flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return n},l._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(r),i="object"==typeof e?e:null;if(n||(n=new l(this,i),t(this).data(r,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},l._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=t.makeArray(t(h.DATA_TOGGLE)),i=0;i0&&o--,40===e.which&&odocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},h._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},h._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},h={SHOW:"show",OUT:"out"},d={HIDE:"hide"+r,HIDDEN:"hidden"+r,SHOW:"show"+r,SHOWN:"shown"+r,INSERTED:"inserted"+r,CLICK:"click"+r,FOCUSIN:"focusin"+r,FOCUSOUT:"focusout"+r,MOUSEENTER:"mouseenter"+r,MOUSELEAVE:"mouseleave"+r},p={FADE:"fade",SHOW:"show"},g={TOOLTIP:".tooltip",TOOLTIP_INNER:".tooltip-inner",ARROW:".arrow"},_={HOVER:"hover",FOCUS:"focus",CLICK:"click",MANUAL:"manual"},v=function(){function s(t,e){if(void 0===n)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var v=s.prototype;return v.enable=function(){this._isEnabled=!0},v.disable=function(){this._isEnabled=!1},v.toggleEnabled=function(){this._isEnabled=!this._isEnabled},v.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,r=t(e.currentTarget).data(n);r||(r=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,r)),r._activeTrigger.click=!r._activeTrigger.click,r._isWithActiveTrigger()?r._enter(null,r):r._leave(null,r)}else{if(t(this.getTipElement()).hasClass(p.SHOW))return void this._leave(null,this);this._enter(null,this)}},v.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},v.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var r=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(r);var i=t.contains(this.element.ownerDocument.documentElement,this.element);if(r.isDefaultPrevented()||!i)return;var o=this.getTipElement(),l=a.getUID(this.constructor.NAME);o.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&t(o).addClass(p.FADE);var u="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,c=this._getAttachment(u);this.addAttachmentClass(c);var f=!1===this.config.container?document.body:t(this.config.container);t(o).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(o).appendTo(f),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,o,{placement:c,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:g.ARROW},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(o).addClass(p.SHOW),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var d=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===h.OUT&&e._leave(null,e)};a.supportsTransitionEnd()&&t(this.tip).hasClass(p.FADE)?t(this.tip).one(a.TRANSITION_END,d).emulateTransitionEnd(s._TRANSITION_DURATION):d()}},v.hide=function(e){var n=this,r=this.getTipElement(),i=t.Event(this.constructor.Event.HIDE),o=function(){n._hoverState!==h.SHOW&&r.parentNode&&r.parentNode.removeChild(r),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(i),i.isDefaultPrevented()||(t(r).removeClass(p.SHOW),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[_.CLICK]=!1,this._activeTrigger[_.FOCUS]=!1,this._activeTrigger[_.HOVER]=!1,a.supportsTransitionEnd()&&t(this.tip).hasClass(p.FADE)?t(r).one(a.TRANSITION_END,o).emulateTransitionEnd(150):o(),this._hoverState="")},v.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},v.isWithContent=function(){return Boolean(this.getTitle())},v.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},v.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},v.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(g.TOOLTIP_INNER),this.getTitle()),e.removeClass(p.FADE+" "+p.SHOW)},v.setElementContent=function(e,n){var r=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?r?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[r?"html":"text"](n)},v.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},v._getAttachment=function(t){return c[t.toUpperCase()]},v._setListeners=function(){var e=this,n=this.config.trigger.split(" ");n.forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==_.MANUAL){var r=n===_.HOVER?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,i=n===_.HOVER?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(r,e.config.selector,function(t){return e._enter(t)}).on(i,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=o({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},v._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},v._enter=function(e,n){var r=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(r))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(r,n)),e&&(n._activeTrigger["focusin"===e.type?_.FOCUS:_.HOVER]=!0),t(n.getTipElement()).hasClass(p.SHOW)||n._hoverState===h.SHOW?n._hoverState=h.SHOW:(clearTimeout(n._timeout),n._hoverState=h.SHOW,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===h.SHOW&&n.show()},n.config.delay.show):n.show())},v._leave=function(e,n){var r=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(r))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(r,n)),e&&(n._activeTrigger["focusout"===e.type?_.FOCUS:_.HOVER]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=h.OUT,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===h.OUT&&n.hide()},n.config.delay.hide):n.hide())},v._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},v._getConfig=function(n){return"number"==typeof(n=o({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),a.typeCheckConfig(e,n,this.constructor.DefaultType),n},v._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},v._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(l);null!==n&&n.length>0&&e.removeClass(n.join(""))},v._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},v._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(p.FADE),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},s._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.tooltip"),r="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new s(this,r),t(this).data("bs.tooltip",n)),"string"==typeof e)){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},i(s,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return f}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return d}},{key:"EVENT_KEY",get:function(){return r}},{key:"DefaultType",get:function(){return u}}]),s}();return t.fn[e]=v._jQueryInterface,t.fn[e].Constructor=v,t.fn[e].noConflict=function(){return t.fn[e]=s,v._jQueryInterface},v}(e),p=function(t){var e="popover",n=".bs.popover",r=t.fn[e],a=new RegExp("(^|\\s)bs-popover\\S+","g"),s=o({},d.Default,{placement:"right",trigger:"click",content:"",template:''}),l=o({},d.DefaultType,{content:"(string|element|function)"}),u={FADE:"fade",SHOW:"show"},c={TITLE:".popover-header",CONTENT:".popover-body"},f={HIDE:"hide"+n,HIDDEN:"hidden"+n,SHOW:"show"+n,SHOWN:"shown"+n,INSERTED:"inserted"+n,CLICK:"click"+n,FOCUSIN:"focusin"+n,FOCUSOUT:"focusout"+n,MOUSEENTER:"mouseenter"+n,MOUSELEAVE:"mouseleave"+n},h=function(r){var o,h;function d(){return r.apply(this,arguments)||this}h=r,(o=d).prototype=Object.create(h.prototype),o.prototype.constructor=o,o.__proto__=h;var p=d.prototype;return p.isWithContent=function(){return this.getTitle()||this._getContent()},p.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},p.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},p.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(c.TITLE),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(e.find(c.CONTENT),n),e.removeClass(u.FADE+" "+u.SHOW)},p._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},p._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(a);null!==n&&n.length>0&&e.removeClass(n.join(""))},d._jQueryInterface=function(e){return this.each(function(){var n=t(this).data("bs.popover"),r="object"==typeof e?e:null;if((n||!/destroy|hide/.test(e))&&(n||(n=new d(this,r),t(this).data("bs.popover",n)),"string"==typeof e)){if(void 0===n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},i(d,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return s}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return f}},{key:"EVENT_KEY",get:function(){return n}},{key:"DefaultType",get:function(){return l}}]),d}(d);return t.fn[e]=h._jQueryInterface,t.fn[e].Constructor=h,t.fn[e].noConflict=function(){return t.fn[e]=r,h._jQueryInterface},h}(e),g=function(t){var e="scrollspy",n=t.fn[e],r={offset:10,method:"auto",target:""},s={offset:"number",method:"string",target:"(string|element)"},l={ACTIVATE:"activate.bs.scrollspy",SCROLL:"scroll.bs.scrollspy",LOAD_DATA_API:"load.bs.scrollspy.data-api"},u={DROPDOWN_ITEM:"dropdown-item",DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active"},c={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},f={OFFSET:"offset",POSITION:"position"},h=function(){function n(e,n){var r=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+c.NAV_LINKS+","+this._config.target+" "+c.LIST_ITEMS+","+this._config.target+" "+c.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(l.SCROLL,function(t){return r._process(t)}),this.refresh(),this._process()}var h=n.prototype;return h.refresh=function(){var e=this,n=this._scrollElement===this._scrollElement.window?f.OFFSET:f.POSITION,r="auto"===this._config.method?n:this._config.method,i=r===f.POSITION?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight();var o=t.makeArray(t(this._selector));o.map(function(e){var n,o=a.getSelectorFromElement(e);if(o&&(n=t(o)[0]),n){var s=n.getBoundingClientRect();if(s.width||s.height)return[t(n)[r]().top+i,o]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},h.dispose=function(){t.removeData(this._element,"bs.scrollspy"),t(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},h._getConfig=function(n){if("string"!=typeof(n=o({},r,n)).target){var i=t(n.target).attr("id");i||(i=a.getUID(e),t(n.target).attr("id",i)),n.target="#"+i}return a.typeCheckConfig(e,n,s),n},h._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},h._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},h._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},h._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var r=this._targets[this._targets.length-1];this._activeTarget!==r&&this._activate(r)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var i=this._offsets.length;i--;){var o=this._activeTarget!==this._targets[i]&&t>=this._offsets[i]&&(void 0===this._offsets[i+1]||t li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"},s=function(){function e(t){this._element=t}var s=e.prototype;return s.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&t(this._element).hasClass(r.ACTIVE)||t(this._element).hasClass(r.DISABLED))){var i,s,l=t(this._element).closest(o.NAV_LIST_GROUP)[0],u=a.getSelectorFromElement(this._element);if(l){var c="UL"===l.nodeName?o.ACTIVE_UL:o.ACTIVE;s=(s=t.makeArray(t(l).find(c)))[s.length-1]}var f=t.Event(n.HIDE,{relatedTarget:this._element}),h=t.Event(n.SHOW,{relatedTarget:s});if(s&&t(s).trigger(f),t(this._element).trigger(h),!h.isDefaultPrevented()&&!f.isDefaultPrevented()){u&&(i=t(u)[0]),this._activate(this._element,l);var d=function(){var r=t.Event(n.HIDDEN,{relatedTarget:e._element}),i=t.Event(n.SHOWN,{relatedTarget:s});t(s).trigger(r),t(e._element).trigger(i)};i?this._activate(i,i.parentNode,d):d()}}},s.dispose=function(){t.removeData(this._element,"bs.tab"),this._element=null},s._activate=function(e,n,i){var s=this,l=("UL"===n.nodeName?t(n).find(o.ACTIVE_UL):t(n).children(o.ACTIVE))[0],u=i&&a.supportsTransitionEnd()&&l&&t(l).hasClass(r.FADE),c=function(){return s._transitionComplete(e,l,i)};l&&u?t(l).one(a.TRANSITION_END,c).emulateTransitionEnd(150):c()},s._transitionComplete=function(e,n,i){if(n){t(n).removeClass(r.SHOW+" "+r.ACTIVE);var s=t(n.parentNode).find(o.DROPDOWN_ACTIVE_CHILD)[0];s&&t(s).removeClass(r.ACTIVE),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(t(e).addClass(r.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),a.reflow(e),t(e).addClass(r.SHOW),e.parentNode&&t(e.parentNode).hasClass(r.DROPDOWN_MENU)){var l=t(e).closest(o.DROPDOWN)[0];l&&t(l).find(o.DROPDOWN_TOGGLE).addClass(r.ACTIVE),e.setAttribute("aria-expanded",!0)}i&&i()},e._jQueryInterface=function(n){return this.each(function(){var r=t(this),i=r.data("bs.tab");if(i||(i=new e(this),r.data("bs.tab",i)),"string"==typeof n){if(void 0===i[n])throw new TypeError('No method named "'+n+'"');i[n]()}})},i(e,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),e}();return t(document).on(n.CLICK_DATA_API,o.DATA_TOGGLE,function(e){e.preventDefault(),s._jQueryInterface.call(t(this),"show")}),t.fn.tab=s._jQueryInterface,t.fn.tab.Constructor=s,t.fn.tab.noConflict=function(){return t.fn.tab=e,s._jQueryInterface},s}(e);(function(t){if(void 0===t)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||e[0]>=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")})(e),t.Util=a,t.Alert=s,t.Button=l,t.Carousel=u,t.Collapse=c,t.Dropdown=f,t.Modal=h,t.Popover=p,t.Scrollspy=g,t.Tab=_,t.Tooltip=d,Object.defineProperty(t,"__esModule",{value:!0})}(e,n(0),n(7))},function(t,e,n){"use strict";n.r(e);var r=n(4),i=n.n(r),o=n(0),a=n.n(o),s=(n(8),n(3)),l=n.n(s);n(6),n(5);a()(function(){var t='',e='';a.a.getJSON("data/screenshots.json",function(n){a.a.getJSON("data/spider_result.json",function(r){var o=a()("tbody");a.a.each(r,function(r,s){var u,c,f=a()(document.createElement("tr")),h=null;"DE:ORTSVERBAND"===s.meta.level?h="OV":"DE:KREISVERBAND"===s.meta.level?h="KV":"DE:LANDESVERBAND"===s.meta.level&&(h="LV"),f.append(''+(null===h?"":h)+""),f.append(""+(null===s.meta.state?"":s.meta.state)+""),f.append(""+(null===s.meta.district?"":s.meta.district)+""),f.append(""+(null===s.meta.city?"":s.meta.city)+""),f.append(''+(u=l.a.toUnicode(s.input_url),c=60,u.length>c&&(u=u.substring(0,c)+"…"),u)+""),f.append(''+s.score.toFixed(1)+"");var d=i.a.join(s.details.ipv4_addresses,", ");f.append(''+(""===d?e:d)+"");var p=''+t+"";if(s.result.SITE_REACHABLE.value||(p=''+e+""),f.append(''+p+""),s.result.SITE_REACHABLE.value&&null!==s.result.HTTP_RESPONSE_DURATION.value){var g="bad";s.result.HTTP_RESPONSE_DURATION.score>0&&(g="medium"),s.result.HTTP_RESPONSE_DURATION.score>.5&&(g="good"),f.append(''+s.result.HTTP_RESPONSE_DURATION.value+" ms")}else f.append(''+e+"");var _=s.result.FAVICON.value&&Object.keys(s.details.icons).length>0,v=_?Object.values(s.details.icons)[0]:"",m=_?'':'';f.append(''+m+"");var y=s.result.HTTPS.value,b=y?''+t+"":''+e+"";f.append(''+b+"");var w=s.result.WWW_OPTIONAL.value,T=w?''+t+"":''+e+"";f.append(''+T+"");var S=s.result.CANONICAL_URL.value,C=S?''+t+"":''+e+"";f.append(''+C+"");var D=s.result.RESPONSIVE.value,x=D?''+t+"":''+e+"";f.append(''+x+"");var E=s.result.FEEDS.value,A=E?''+t+"":''+e+"";f.append(''+A+"");var I=!1;s.details.canonical_urls&&s.details.canonical_urls.length>0&&(void 0!==n[s.details.canonical_urls[0]]&&(I='',I+=''));f.append(''+(I||'')+""),f.append(''+(s.details.cms?s.details.cms:"")+""),o.append(f)}),a()("table.table").DataTable({order:[[0,"asc"]],paging:!1,pageLength:1e4,language:{search:"Suche"}}),a()(".tt").tooltipster({animationDuration:100,theme:"tooltipster-borderless"})})})})}]); \ No newline at end of file diff --git a/docs/data/spider_result.json b/docs/data/spider_result.json index b577e18..012c78b 100644 --- a/docs/data/spider_result.json +++ b/docs/data/spider_result.json @@ -23,9 +23,9 @@ "resolvable": false } }, - "icons": [ - "932005cdd933ad5de0f1e8197c77e195.ico" - ], + "icons": { + "http://die-gruenen-bissendorf.de/templates/etosha/favicon.ico": "932005cdd933ad5de0f1e8197c77e195.ico" + }, "ipv4_addresses": [ "80.77.31.190" ], @@ -61,7 +61,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen in Bissendorf" }, - "duration": 202, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -109,7 +109,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 197 }, "RESPONSIVE": { "score": 0, @@ -154,9 +154,9 @@ "resolved_hostname": "www.die-gruenen-burscheid.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://die-gruenen-burscheid.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.91" ], @@ -214,7 +214,7 @@ ], "title": "Die Grünen in Burscheid" }, - "duration": 635, + "duration": 663, "error": null, "responsive": { "document_width": { @@ -262,7 +262,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 635 + "value": 663 }, "RESPONSIVE": { "score": 1, @@ -304,9 +304,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://die-gruenen-meppen.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -341,7 +341,7 @@ "opengraph": null, "title": "Startseite - Die GRÜNEN in Meppen" }, - "duration": 592, + "duration": 532, "error": null, "responsive": { "document_width": { @@ -389,7 +389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 592 + "value": 532 }, "RESPONSIVE": { "score": 0, @@ -430,9 +430,9 @@ "resolved_hostname": "www.diegruenen-scheessel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://diegruenen-scheessel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -474,7 +474,7 @@ "opengraph": null, "title": "Ortsverband Scheeßel: Startseite" }, - "duration": 228, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -522,7 +522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -566,9 +566,9 @@ "resolved_hostname": "www.erbach.gruene-odenwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://erbach.gruene-odenwald.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -627,7 +627,7 @@ ], "title": "Grüne Stadtverband Erbach / Odw." }, - "duration": 474, + "duration": 515, "error": null, "responsive": { "document_width": { @@ -675,7 +675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 515 }, "RESPONSIVE": { "score": 1, @@ -719,9 +719,9 @@ "resolved_hostname": "www.gl-lautertal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gl-lautertal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.250.168.173" ], @@ -754,7 +754,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 354, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -779,13 +779,13 @@ ], "title": "Grüne Liste Lautertal" }, - "duration": 490, + "duration": 482, "error": null, "responsive": { "document_width": { "1024x768": 1026, "1920x1080": 1920, - "320x480": 320, + "320x480": 354, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -827,7 +827,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 490 + "value": 482 }, "RESPONSIVE": { "score": 1, @@ -867,9 +867,9 @@ "resolved_hostname": "www.gruene-abgland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-abgland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -911,7 +911,7 @@ "opengraph": null, "title": "Grüne Altenburg: Startseite" }, - "duration": 169, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -959,7 +959,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -999,9 +999,9 @@ "resolved_hostname": "www.gruene-ak.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ak.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -1043,7 +1043,7 @@ "opengraph": null, "title": "Kreisverband Altenkirchen: Home" }, - "duration": 235, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -1091,7 +1091,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -1135,9 +1135,9 @@ "resolved_hostname": "www.gruene-alfter.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-alfter.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.75.180.83" ], @@ -1195,7 +1195,7 @@ ], "title": "Ortsverband Alfter" }, - "duration": 980, + "duration": 31, "error": null, "responsive": { "document_width": { @@ -1241,9 +1241,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 980 + "value": 31 }, "RESPONSIVE": { "score": 1, @@ -1259,7 +1259,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -1287,9 +1287,9 @@ "resolved_hostname": "www.gruene-altmark.de" } }, - "icons": [ - "2acd93ebf6225a014f4820d5c57bcea1.png" - ], + "icons": { + "http://gruene-altmark.de/wp-content/uploads/2016/12/cropped-cropped-Logo_Sonnenblume-32x32.png": "2acd93ebf6225a014f4820d5c57bcea1.png" + }, "ipv4_addresses": [ "185.21.102.87" ], @@ -1346,7 +1346,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in der Altmark" }, - "duration": 550, + "duration": 500, "error": null, "responsive": { "document_width": { @@ -1394,7 +1394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 550 + "value": 500 }, "RESPONSIVE": { "score": 1, @@ -1438,9 +1438,9 @@ "resolved_hostname": "www.gruene-altmark.de" } }, - "icons": [ - "2acd93ebf6225a014f4820d5c57bcea1.png" - ], + "icons": { + "http://gruene-altmark.de/wp-content/uploads/2016/12/cropped-cropped-Logo_Sonnenblume-32x32.png": "2acd93ebf6225a014f4820d5c57bcea1.png" + }, "ipv4_addresses": [ "185.21.102.87" ], @@ -1497,7 +1497,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in der Altmark" }, - "duration": 517, + "duration": 512, "error": null, "responsive": { "document_width": { @@ -1545,7 +1545,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 512 }, "RESPONSIVE": { "score": 1, @@ -1589,9 +1589,9 @@ "resolved_hostname": "www.gruene-altrip.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-altrip.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.8" ], @@ -1653,7 +1653,7 @@ ], "title": "GRÜNE Altrip" }, - "duration": 255, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -1701,7 +1701,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -1741,9 +1741,9 @@ "resolved_hostname": "www.gruene-alzey-worms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-alzey-worms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -1785,7 +1785,7 @@ "opengraph": null, "title": "KV Alzey-Worms: Startseite" }, - "duration": 205, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -1833,7 +1833,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -1876,9 +1876,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-apen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -1923,7 +1923,7 @@ ], "title": "Grüne Apen" }, - "duration": 306, + "duration": 314, "error": null, "responsive": { "document_width": { @@ -1971,7 +1971,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 314 }, "RESPONSIVE": { "score": 1, @@ -2017,9 +2017,9 @@ "resolved_hostname": "www.gruene-bad-honnef.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bad-honnef.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -2078,7 +2078,7 @@ ], "title": "Bündnis 90/Die Grünen Bad Honnef" }, - "duration": 64, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -2126,7 +2126,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -2207,7 +2207,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN – Ortsverband Bad Nauheim" }, - "duration": 524, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -2256,7 +2256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 380 }, "RESPONSIVE": { "score": 1, @@ -2336,7 +2336,7 @@ "opengraph": null, "title": "Gruene Barnstorf" }, - "duration": 175, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -2385,7 +2385,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 161 }, "RESPONSIVE": { "score": 1, @@ -2427,9 +2427,10 @@ "resolved_hostname": "www.gruene-barsinghausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-barsinghausen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-barsinghausen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -2471,7 +2472,7 @@ "opengraph": null, "title": "Ortsverband Barsinghausen | ." }, - "duration": 227, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -2494,7 +2495,7 @@ "opengraph": null, "title": "Ortsverband Barsinghausen | ." }, - "duration": 219, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -2543,7 +2544,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -2588,9 +2589,10 @@ "resolved_hostname": "www.gruene-bensheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bensheim.de/wp-content/themes/1508143812-PQxCZo/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-bensheim.de/wp-content/themes/1508143812-PQxCZo/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.81" ], @@ -2642,7 +2644,7 @@ ], "title": "Grüne Liste Bensheim – Die Grünen" }, - "duration": 558, + "duration": 517, "error": null, "responsive": { "document_width": { @@ -2675,7 +2677,7 @@ ], "title": "Grüne Liste Bensheim – Die Grünen" }, - "duration": 550, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -2723,7 +2725,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 626 }, "RESPONSIVE": { "score": 1, @@ -2763,9 +2765,9 @@ "resolved_hostname": "www.gruene-bernkastel-wittlich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bernkastel-wittlich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -2807,7 +2809,7 @@ "opengraph": null, "title": "Kreisverband Bernkastel-Wittlich: Startseite" }, - "duration": 260, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -2855,7 +2857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 260 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -2898,9 +2900,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-beverstedt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.163" ], @@ -2945,7 +2947,7 @@ ], "title": "B90-Grüne Beverstedt" }, - "duration": 186, + "duration": 166, "error": null, "responsive": { "document_width": { @@ -2993,7 +2995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 166 }, "RESPONSIVE": { "score": 1, @@ -3038,9 +3040,9 @@ "resolved_hostname": "www.gruene-bezirksverband-mittelrhein.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-bezirksverband-mittelrhein.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -3098,7 +3100,7 @@ ], "title": "Bezirksverband von BÜNDNIS 90/DIE GRÜNEN » GRÜNE Mittelrhein" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -3146,7 +3148,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 1, @@ -3186,9 +3188,9 @@ "resolved_hostname": "www.gruene-birkenfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-birkenfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3230,7 +3232,7 @@ "opengraph": null, "title": "Kreisverband Birkenfeld: Home" }, - "duration": 257, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -3278,7 +3280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -3373,7 +3375,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Blieskastel | Grün wirkt!" }, - "duration": 1000, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -3420,9 +3422,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": 1000 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -3438,7 +3440,7 @@ "value": true } }, - "score": 6.0 + "score": 6.5 }, { "details": { @@ -3462,9 +3464,9 @@ "resolved_hostname": "www.gruene-blk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-blk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3506,7 +3508,7 @@ "opengraph": null, "title": "KV Burgenlandkreis: Startseite" }, - "duration": 198, + "duration": 262, "error": null, "responsive": { "document_width": { @@ -3554,7 +3556,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -3598,9 +3600,9 @@ "resolved_hostname": "www.gruene-bocholt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bocholt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.54" ], @@ -3653,7 +3655,7 @@ ], "title": "- ORTSVERBAND BOCHOLTORTSVERBAND BOCHOLT" }, - "duration": 888, + "duration": 790, "error": null, "responsive": { "document_width": { @@ -3700,7 +3702,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 888 + "value": 790 }, "RESPONSIVE": { "score": 1, @@ -3740,9 +3742,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -3784,7 +3786,7 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 192, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -3832,7 +3834,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -3872,273 +3874,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://www.gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://www.gruene-bochum.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE IN BOCHUM: Startseite" - }, - "duration": 206, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-bochum.de/startseite/" - } - ] - }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-nord/", - "meta": { - "city": "Bochum-Nord", - "district": "Bochum", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 206 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-bochum.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-bochum.de" - }, - "www.gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-bochum.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "http://www.gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://gruene-bochum.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-bochum.de/startseite/", - "url": "https://www.gruene-bochum.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE IN BOCHUM: Startseite" - }, - "duration": 248, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-bochum.de/startseite/" - } - ] - }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-ost/", - "meta": { - "city": "Bochum-Ost", - "district": "Bochum", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 248 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-bochum.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-bochum.de" - }, - "www.gruene-bochum.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-bochum.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -4196,9 +3934,9 @@ } ] }, - "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-sued/", + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-nord/", "meta": { - "city": "Bochum-Süd", + "city": "Bochum-Nord", "district": "Bochum", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -4268,9 +4006,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -4312,7 +4050,271 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 195, + "duration": 238, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-bochum.de/startseite/" + } + ] + }, + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-ost/", + "meta": { + "city": "Bochum-Ost", + "district": "Bochum", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 238 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-bochum.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-bochum.de" + }, + "www.gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bochum.de" + } + }, + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://www.gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://www.gruene-bochum.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE IN BOCHUM: Startseite" + }, + "duration": 218, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-bochum.de/startseite/" + } + ] + }, + "input_url": "http://gruene-bochum.de/in-den-stadtteilen/ov-sued/", + "meta": { + "city": "Bochum-Süd", + "district": "Bochum", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 218 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-bochum.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-bochum.de" + }, + "www.gruene-bochum.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bochum.de" + } + }, + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "http://www.gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://gruene-bochum.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bochum.de/startseite/", + "url": "https://www.gruene-bochum.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE IN BOCHUM: Startseite" + }, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -4360,7 +4362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -4407,9 +4409,7 @@ "resolved_hostname": "www.gruene-bokhorst-wankendorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "217.160.0.185" ], @@ -4584,9 +4584,9 @@ "resolved_hostname": "www.gruene-bornheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bornheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -4628,7 +4628,7 @@ "opengraph": null, "title": "Ortsverband Bornheim: Home" }, - "duration": 214, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -4676,7 +4676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -4720,9 +4720,9 @@ "resolved_hostname": "www.gruene-bous.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bous.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -4768,7 +4768,7 @@ "opengraph": null, "title": "Ortsverband Bous - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 307, + "duration": 369, "error": null, "responsive": { "document_width": { @@ -4815,7 +4815,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 307 + "value": 369 }, "RESPONSIVE": { "score": 1, @@ -4862,9 +4862,10 @@ "resolved_hostname": "www.gruene-braunschweig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-braunschweig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-braunschweig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.29" ], @@ -4921,7 +4922,7 @@ ], "title": "Grüne in BraunschweigGrüne Braunschweig" }, - "duration": 103, + "duration": 556, "error": null, "responsive": { "document_width": { @@ -4959,7 +4960,7 @@ ], "title": "Grüne in BraunschweigGrüne Braunschweig" }, - "duration": 628, + "duration": 870, "error": null, "responsive": { "document_width": { @@ -5007,7 +5008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 366 + "value": 713 }, "RESPONSIVE": { "score": 1, @@ -5047,9 +5048,9 @@ "resolved_hostname": "www.gruene-bremen-nordost.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-nordost.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5091,7 +5092,7 @@ "opengraph": null, "title": "KV Bremen-Nordost: Home" }, - "duration": 200, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -5139,7 +5140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -5179,9 +5180,9 @@ "resolved_hostname": "www.gruene-bremen-ost.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-ost.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5311,9 +5312,9 @@ "resolved_hostname": "www.gruene-bremervoerde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremervoerde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5355,7 +5356,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Bremervörde: Aktuelles" }, - "duration": 222, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -5403,7 +5404,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -5488,7 +5489,7 @@ "opengraph": null, "title": "Contenido" }, - "duration": 63, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -5511,7 +5512,7 @@ "opengraph": null, "title": "Contenido" }, - "duration": 60, + "duration": 107, "error": null, "responsive": { "document_width": { @@ -5562,7 +5563,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 92 }, "RESPONSIVE": { "score": 0, @@ -5643,7 +5644,7 @@ "opengraph": null, "title": "Die Grünen in Bubenreuth | Die Internetseite von Bündnis 90/DIE GRÜNEN – Ortsverband Bubenreuth" }, - "duration": 393, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -5692,7 +5693,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 393 + "value": 373 }, "RESPONSIVE": { "score": 1, @@ -5733,9 +5734,9 @@ "resolved_hostname": "www.gruene-buchholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-buchholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -5777,7 +5778,7 @@ "opengraph": null, "title": "GRÜNE BUCHHOLZ: Startseite" }, - "duration": 221, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -5825,7 +5826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -5866,9 +5867,10 @@ "resolved_hostname": "www.gruene-burgdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-burgdorf.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-burgdorf.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -5910,7 +5912,7 @@ "opengraph": null, "title": "Ortsverband Burgdorf | ." }, - "duration": 231, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -5933,7 +5935,7 @@ "opengraph": null, "title": "Ortsverband Burgdorf | ." }, - "duration": 235, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -5982,7 +5984,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 260 }, "RESPONSIVE": { "score": 1, @@ -6025,9 +6027,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-cadolzburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.80" ], @@ -6072,7 +6074,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 294, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -6120,7 +6122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 320 }, "RESPONSIVE": { "score": 1, @@ -6161,9 +6163,9 @@ "resolved_hostname": "www.gruene-cloppenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cloppenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6205,7 +6207,7 @@ "opengraph": null, "title": "Kreisverband Cloppenburg: Home" }, - "duration": 252, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -6253,7 +6255,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 252 + "value": 231 }, "RESPONSIVE": { "score": 1, @@ -6297,9 +6299,9 @@ "resolved_hostname": "www.gruene-coelbe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-coelbe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.54" ], @@ -6357,7 +6359,7 @@ ], "title": "Die Grünen Cölbe" }, - "duration": 545, + "duration": 54, "error": null, "responsive": { "document_width": { @@ -6403,9 +6405,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 545 + "value": 54 }, "RESPONSIVE": { "score": 1, @@ -6421,7 +6423,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -6445,9 +6447,9 @@ "resolved_hostname": "www.gruene-cremlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cremlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6489,7 +6491,7 @@ "opengraph": null, "title": "Gemeindeverband Cremlingen: Startseite" }, - "duration": 196, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -6537,7 +6539,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -6577,9 +6579,9 @@ "resolved_hostname": "www.gruene-cw.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cw.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -6621,7 +6623,7 @@ "opengraph": null, "title": "KV Charlottenburg-Wilmersdorf: Aktuelles" }, - "duration": 214, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -6669,7 +6671,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -6713,9 +6715,9 @@ "resolved_hostname": "www.gruene-dachau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-dachau.de/wp/wp-content/themes/1508053999-H8CBIu/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.137" ], @@ -6732,7 +6734,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -6740,7 +6742,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-dachau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -6774,7 +6776,7 @@ ], "title": "Kreisverband Grüne Dachau" }, - "duration": 146, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -6822,7 +6824,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 146 + "value": 161 }, "RESPONSIVE": { "score": 1, @@ -6910,7 +6912,7 @@ "opengraph": null, "title": "gruene dieburg neu" }, - "duration": 82, + "duration": 84, "error": null, "responsive": { "document_width": { @@ -6933,7 +6935,7 @@ "opengraph": null, "title": "gruene dieburg neu" }, - "duration": 86, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -6982,9 +6984,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 84 + "value": 100 }, "RESPONSIVE": { "score": 1, @@ -7000,7 +7002,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -7028,9 +7030,9 @@ "resolved_hostname": "www.gruene-dietzenbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-dietzenbach.de/Wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.160.71.74" ], @@ -7088,7 +7090,7 @@ ], "title": "B90/Die Grünen Dietzenbach" }, - "duration": 835, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -7134,9 +7136,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 835 + "value": 73 }, "RESPONSIVE": { "score": 1, @@ -7152,7 +7154,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -7176,9 +7178,9 @@ "resolved_hostname": "www.gruene-donnersberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-donnersberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -7220,7 +7222,7 @@ "opengraph": null, "title": "Kreisverband Donnersberg: Home" }, - "duration": 226, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -7268,7 +7270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -7376,7 +7378,7 @@ "opengraph": null, "title": "Grüne Ortsverband Dudenhofen" }, - "duration": 61, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -7427,7 +7429,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -7471,9 +7473,9 @@ "resolved_hostname": "www.gruene-dudweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dudweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -7519,7 +7521,7 @@ "opengraph": null, "title": "Ortsverband Dudweiler - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 356, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -7566,7 +7568,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 356 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -7606,9 +7608,9 @@ "resolved_hostname": "www.gruene-eaf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eaf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -7650,7 +7652,7 @@ "opengraph": null, "title": "OV Elm-Asse-Fallstein: Startseite" }, - "duration": 167, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -7698,7 +7700,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -7745,9 +7747,10 @@ "resolved_hostname": "www.gruene-egelsbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-egelsbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-egelsbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.178" ], @@ -7800,7 +7803,7 @@ ], "title": "GRÜNE in Egelsbach" }, - "duration": 160, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -7834,7 +7837,7 @@ ], "title": "GRÜNE in Egelsbach" }, - "duration": 91, + "duration": 308, "error": null, "responsive": { "document_width": { @@ -7882,7 +7885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -7923,9 +7926,10 @@ "resolved_hostname": "www.gruene-eichenau.de" } }, - "icons": [ - "5a73b539cd667f41fab9916dffe52882.ico" - ], + "icons": { + "https://gruene-eichenau.de/layouts/moziloCMS/favicon.ico": "5a73b539cd667f41fab9916dffe52882.ico", + "https://www.gruene-eichenau.de/layouts/moziloCMS/favicon.ico": "5a73b539cd667f41fab9916dffe52882.ico" + }, "ipv4_addresses": [ "194.117.254.61" ], @@ -7967,7 +7971,7 @@ "opengraph": null, "title": "ORTSVERBAND EICHENAU" }, - "duration": 192, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -7990,7 +7994,7 @@ "opengraph": null, "title": "ORTSVERBAND EICHENAU" }, - "duration": 186, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -8039,7 +8043,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -8079,9 +8083,9 @@ "resolved_hostname": "www.gruene-eln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8123,7 +8127,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN KV Emsland Nord: Startseite" }, - "duration": 224, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -8171,7 +8175,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -8282,141 +8286,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "http://gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "http://www.gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "https://gruene-en.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-en.de/home/", - "url": "https://www.gruene-en.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Ennepe-Ruhr: Home" - }, - "duration": 189, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-en.de/home/" - } - ] - }, - "input_url": "http://gruene-en.de/ortsverbaende/ortsverband-witten/ortsverband-witten0/", - "meta": { - "city": "Witten", - "district": "Ennepe-Ruhr", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 189 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-en.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-en.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-en.de" - }, - "www.gruene-en.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-en.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -8474,9 +8346,9 @@ } ] }, - "input_url": "http://gruene-en.de/ortsverbaende/ov-breckerfeld/home/", + "input_url": "http://gruene-en.de/ortsverbaende/ortsverband-witten/ortsverband-witten0/", "meta": { - "city": "Breckerfeld", + "city": "Witten", "district": "Ennepe-Ruhr", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -8546,9 +8418,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8590,7 +8462,139 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 228, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-en.de/home/" + } + ] + }, + "input_url": "http://gruene-en.de/ortsverbaende/ov-breckerfeld/home/", + "meta": { + "city": "Breckerfeld", + "district": "Ennepe-Ruhr", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-en.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-en.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-en.de" + }, + "www.gruene-en.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-en.de" + } + }, + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "http://gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "http://www.gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "https://gruene-en.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-en.de/home/", + "url": "https://www.gruene-en.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Ennepe-Ruhr: Home" + }, + "duration": 262, "error": null, "responsive": { "document_width": { @@ -8638,7 +8642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -8678,9 +8682,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8722,7 +8726,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 189, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -8770,7 +8774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -8810,9 +8814,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -8854,7 +8858,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 221, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -8902,7 +8906,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -8997,7 +9001,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ennepetal | Homepage der Partei Bündnis 90/Die Grünen in Ennepetal." }, - "duration": 976, + "duration": 731, "error": null, "responsive": { "document_width": { @@ -9046,7 +9050,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 976 + "value": 731 }, "RESPONSIVE": { "score": 1, @@ -9090,9 +9094,9 @@ "resolved_hostname": "www.gruene-ensdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ensdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -9138,7 +9142,7 @@ "opengraph": null, "title": "Ortsverband Ensdorf - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 311, + "duration": 365, "error": null, "responsive": { "document_width": { @@ -9185,7 +9189,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 365 }, "RESPONSIVE": { "score": 1, @@ -9228,9 +9232,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-essen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.168" ], @@ -9273,7 +9277,7 @@ ], "title": "GRÜNE Essen" }, - "duration": 324, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -9320,7 +9324,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 324 + "value": 280 }, "RESPONSIVE": { "score": 1, @@ -9362,9 +9366,10 @@ "resolved_hostname": "www.gruene-feldkirchen.de" } }, - "icons": [ - "8b4d5da43d1a3269ea1702c4acbc671d.ico" - ], + "icons": { + "http://gruene-feldkirchen.de/images_gruen/favicon.ico": "8b4d5da43d1a3269ea1702c4acbc671d.ico", + "http://www.gruene-feldkirchen.de/images_gruen/favicon.ico": "8b4d5da43d1a3269ea1702c4acbc671d.ico" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -9412,7 +9417,7 @@ "opengraph": null, "title": "GRÜNE IN FELDKIRCHEN" }, - "duration": 102, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -9435,7 +9440,7 @@ "opengraph": null, "title": "GRÜNE IN FELDKIRCHEN" }, - "duration": 70, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -9485,7 +9490,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 86 + "value": 71 }, "RESPONSIVE": { "score": 1, @@ -9529,9 +9534,9 @@ "resolved_hostname": "www.gruene-ffb.de" } }, - "icons": [ - "4822081b2998400cc4422b25ff099c37.ico" - ], + "icons": { + "http://gruene-ffb.de/wp-content/uploads/2018/04/gruene_favicon.ico": "4822081b2998400cc4422b25ff099c37.ico" + }, "ipv4_addresses": [ "134.119.234.203" ], @@ -9589,7 +9594,7 @@ ], "title": "Home - GRÜNE Fürstenfeldbruck" }, - "duration": 995, + "duration": 915, "error": null, "responsive": { "document_width": { @@ -9637,7 +9642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 995 + "value": 915 }, "RESPONSIVE": { "score": 1, @@ -9677,9 +9682,9 @@ "resolved_hostname": "www.gruene-frankenthal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-frankenthal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -9721,7 +9726,7 @@ "opengraph": null, "title": "Kreisverband Frankenthal: Home" }, - "duration": 219, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -9769,7 +9774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -9813,9 +9818,9 @@ "resolved_hostname": "www.gruene-friedrichsthal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-friedrichsthal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -9861,7 +9866,7 @@ "opengraph": null, "title": "Ortsverband Friedrichsthal - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 309, + "duration": 319, "error": null, "responsive": { "document_width": { @@ -9908,7 +9913,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 319 }, "RESPONSIVE": { "score": 1, @@ -9949,9 +9954,10 @@ "resolved_hostname": "www.gruene-garbsen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-garbsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-garbsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -9993,7 +9999,7 @@ "opengraph": null, "title": "Ortsverband Garbsen | ." }, - "duration": 280, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -10016,7 +10022,7 @@ "opengraph": null, "title": "Ortsverband Garbsen | ." }, - "duration": 227, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -10065,7 +10071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 254 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -10105,9 +10111,9 @@ "resolved_hostname": "www.gruene-ger.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ger.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10149,7 +10155,7 @@ "opengraph": null, "title": "B90/GRÜNE KV Germersheim: Home" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -10197,7 +10203,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -10237,9 +10243,9 @@ "resolved_hostname": "www.gruene-gera.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gera.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10281,7 +10287,7 @@ "opengraph": null, "title": "Grünes Gera: Willkommen bei den Geraer Grünen" }, - "duration": 239, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -10329,7 +10335,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -10373,9 +10379,9 @@ "resolved_hostname": "www.gruene-gersheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-gersheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -10421,7 +10427,7 @@ "opengraph": null, "title": "Ortsverband Gersheim - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 317, + "duration": 374, "error": null, "responsive": { "document_width": { @@ -10468,7 +10474,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 317 + "value": 374 }, "RESPONSIVE": { "score": 1, @@ -10508,9 +10514,9 @@ "resolved_hostname": "www.gruene-gotha.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gotha.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10552,7 +10558,7 @@ "opengraph": null, "title": "Für mehr Grün im Landkreis: Aktuelles" }, - "duration": 220, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -10600,7 +10606,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -10640,9 +10646,9 @@ "resolved_hostname": "www.gruene-greiz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-greiz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -10684,7 +10690,7 @@ "opengraph": null, "title": "Kreisverband Greiz: Startseite" }, - "duration": 683, + "duration": 180, "error": null, "responsive": { "document_width": { @@ -10732,7 +10738,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 683 + "value": 180 }, "RESPONSIVE": { "score": 1, @@ -10775,9 +10781,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-guenzburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.84" ], @@ -10797,7 +10803,7 @@ } ], "responsive": { - "min_width": 352, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -10823,13 +10829,13 @@ ], "title": "Grüne Günzburg" }, - "duration": 255, + "duration": 278, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 352, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -10871,7 +10877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -10916,9 +10922,9 @@ "resolved_hostname": "www.gruene-gundelfingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-gundelfingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.102" ], @@ -10976,7 +10982,7 @@ ], "title": "Gruene Gundelfingen" }, - "duration": 576, + "duration": 637, "error": null, "responsive": { "document_width": { @@ -11024,7 +11030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 576 + "value": 637 }, "RESPONSIVE": { "score": 1, @@ -11068,9 +11074,9 @@ "resolved_hostname": "www.gruene-haar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/haar/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -11129,7 +11135,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 533, + "duration": 502, "error": null, "responsive": { "document_width": { @@ -11176,7 +11182,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 533 + "value": 502 }, "RESPONSIVE": { "score": 1, @@ -11261,7 +11267,7 @@ "opengraph": null, "title": "Grüne Halberg" }, - "duration": 77, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -11284,7 +11290,7 @@ "opengraph": null, "title": "Grüne Halberg" }, - "duration": 102, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -11335,7 +11341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 90 + "value": 76 }, "RESPONSIVE": { "score": 0, @@ -11379,9 +11385,9 @@ "resolved_hostname": "www.gruene-hallewestfalen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hallewestfalen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -11440,7 +11446,7 @@ ], "title": "Bündnis 90/Die Grünen Halle (Westf.)" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -11488,7 +11494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 1, @@ -11529,9 +11535,10 @@ "resolved_hostname": "www.gruene-hemmingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hemmingen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-hemmingen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -11573,7 +11580,7 @@ "opengraph": null, "title": "Ortsverband Hemmingen | ." }, - "duration": 212, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -11596,7 +11603,7 @@ "opengraph": null, "title": "Ortsverband Hemmingen | ." }, - "duration": 240, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -11645,7 +11652,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -11685,9 +11692,9 @@ "resolved_hostname": "www.gruene-hennef.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hennef.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -11729,7 +11736,7 @@ "opengraph": null, "title": "B90/GRÜNE Hennef: Aktuelles" }, - "duration": 561, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -11777,7 +11784,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 561 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -11821,9 +11828,9 @@ "resolved_hostname": "www.gruene-heusweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-heusweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -11850,7 +11857,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -11869,13 +11876,13 @@ "opengraph": null, "title": "Grüne Heusweiler - Stark für die Region !" }, - "duration": 388, + "duration": 295, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -11916,7 +11923,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 388 + "value": 295 }, "RESPONSIVE": { "score": 1, @@ -11960,9 +11967,9 @@ "resolved_hostname": "www.gruene-hofheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hofheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.185" ], @@ -12021,7 +12028,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN" }, - "duration": 255, + "duration": 862, "error": null, "responsive": { "document_width": { @@ -12069,7 +12076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 255 + "value": 862 }, "RESPONSIVE": { "score": 1, @@ -12109,9 +12116,9 @@ "resolved_hostname": "www.gruene-hollenstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hollenstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12153,7 +12160,7 @@ "opengraph": null, "title": "Ortsverband Hollenstedt: Aktuelles" }, - "duration": 193, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -12201,7 +12208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -12243,9 +12250,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-homburg.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "85.214.227.211" ], @@ -12257,7 +12264,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-homburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-homburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -12280,7 +12287,7 @@ "opengraph": null, "title": "Startseite - Grüne Homburg" }, - "duration": 817, + "duration": 792, "error": null, "responsive": { "document_width": { @@ -12328,7 +12335,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 817 + "value": 792 }, "RESPONSIVE": { "score": 0, @@ -12399,7 +12406,7 @@ "opengraph": null, "title": "Bündnis 90/ Die Grünen St. Ingbert" }, - "duration": 59, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -12449,7 +12456,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -12490,9 +12497,9 @@ "resolved_hostname": "www.gruene-im-vest.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-im-vest.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12534,7 +12541,7 @@ "opengraph": null, "title": "KV Recklinghausen: Home" }, - "duration": 199, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -12582,7 +12589,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -12622,9 +12629,9 @@ "resolved_hostname": "www.gruene-im-weimarer-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-im-weimarer-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -12666,7 +12673,7 @@ "opengraph": null, "title": "GRÜNE IM WEIMARER LAND: Grüne Neuigkeiten" }, - "duration": 161, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -12714,7 +12721,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 161 + "value": 173 }, "RESPONSIVE": { "score": 1, @@ -12828,9 +12835,9 @@ "resolvable": false } }, - "icons": [ - "6d11f61fcfc825f4f5446a844d910cd7.png" - ], + "icons": { + "https://gruene-inden.de/wp-content/uploads/2018/04/cropped-sonnenblume_4c_auf_transparent_hellesgelb-32x32.png": "6d11f61fcfc825f4f5446a844d910cd7.png" + }, "ipv4_addresses": [ "81.169.145.160" ], @@ -12866,7 +12873,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – Ortsgruppe Inden" }, - "duration": 577, + "duration": 567, "error": null, "responsive": { "document_width": { @@ -12913,7 +12920,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 577 + "value": 567 }, "RESPONSIVE": { "score": 0, @@ -12955,9 +12962,10 @@ "resolved_hostname": "www.gruene-isernhagen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-isernhagen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-isernhagen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -12999,7 +13007,7 @@ "opengraph": null, "title": "Ortsverband Isernhagen | ." }, - "duration": 214, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -13022,7 +13030,7 @@ "opengraph": null, "title": "Ortsverband Isernhagen | ." }, - "duration": 258, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -13071,7 +13079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -13156,7 +13164,7 @@ "opengraph": null, "title": "Die Grünen Ismaning" }, - "duration": 138, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -13179,7 +13187,7 @@ "opengraph": null, "title": "Die Grünen Ismaning" }, - "duration": 129, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -13228,9 +13236,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 134 + "value": 83 }, "RESPONSIVE": { "score": 0, @@ -13246,7 +13254,7 @@ "value": true } }, - "score": 3.5 + "score": 4.0 }, { "details": { @@ -13270,9 +13278,9 @@ "resolved_hostname": "www.gruene-jena.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-jena.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -13314,7 +13322,7 @@ "opengraph": null, "title": "Die Grünen in Jena: AKTUELLES" }, - "duration": 215, + "duration": 658, "error": null, "responsive": { "document_width": { @@ -13362,7 +13370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 658 }, "RESPONSIVE": { "score": 1, @@ -13406,9 +13414,9 @@ "resolved_hostname": "www.gruene-jerichower-land.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-jerichower-land.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.60" ], @@ -13425,7 +13433,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -13433,7 +13441,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-jerichower-land.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -13466,7 +13474,7 @@ ], "title": "Kreisverband Jerichower Land | BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 770, + "duration": 410, "error": null, "responsive": { "document_width": { @@ -13514,7 +13522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 410 }, "RESPONSIVE": { "score": 1, @@ -13592,7 +13600,7 @@ "urlchecks": [ { "content": null, - "duration": 614, + "duration": 483, "error": null, "responsive": { "document_width": { @@ -13608,7 +13616,7 @@ }, { "content": null, - "duration": 197, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -13659,7 +13667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 406 + "value": 346 }, "RESPONSIVE": { "score": 0, @@ -13734,7 +13742,7 @@ ], "title": "Bündnis 90/Die Grünen Kassel" }, - "duration": 199, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -13783,7 +13791,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -13829,9 +13837,9 @@ "resolved_hostname": "www.gruene-kinzigtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-kinzigtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.236" ], @@ -13889,7 +13897,7 @@ ], "title": "Grüne Kinzigtal" }, - "duration": 198, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -13912,7 +13920,7 @@ "opengraph": null, "title": null }, - "duration": 55, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -13961,7 +13969,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -14004,6 +14012,7 @@ "resolved_hostname": "www.gruene-kirchhain.de" } }, + "icons": {}, "ipv4_addresses": [ "217.11.48.105" ], @@ -14051,7 +14060,7 @@ "opengraph": null, "title": "Grüne Kommunalpolitik" }, - "duration": 241, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -14084,9 +14093,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -14100,7 +14108,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 218 }, "RESPONSIVE": { "score": 0, @@ -14116,7 +14124,7 @@ "value": true } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -14140,9 +14148,9 @@ "resolved_hostname": "www.gruene-kl.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -14184,7 +14192,7 @@ "opengraph": null, "title": "Kaiserslautern: Home - Aktuelles" }, - "duration": 284, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -14232,7 +14240,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 284 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -14276,9 +14284,9 @@ "resolved_hostname": "www.gruene-kleinblittersdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kleinblittersdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -14324,7 +14332,7 @@ "opengraph": null, "title": "Ortsverband Kleinblittersdorf - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 313, + "duration": 287, "error": null, "responsive": { "document_width": { @@ -14371,7 +14379,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 313 + "value": 287 }, "RESPONSIVE": { "score": 1, @@ -14415,9 +14423,9 @@ "resolved_hostname": "www.gruene-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -14476,7 +14484,7 @@ ], "title": "Ortsverband Kleve › Grüne Kleve" }, - "duration": 457, + "duration": 520, "error": null, "responsive": { "document_width": { @@ -14524,7 +14532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 457 + "value": 520 }, "RESPONSIVE": { "score": 1, @@ -14564,9 +14572,9 @@ "resolved_hostname": "www.gruene-koblenz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-koblenz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -14608,7 +14616,7 @@ "opengraph": null, "title": "Kreisverband Koblenz: Home" }, - "duration": 241, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -14656,7 +14664,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -14698,9 +14706,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-kriftel.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -14735,7 +14743,7 @@ "opengraph": null, "title": "Startseite - Bündnis90/Die Grünen – Ortsverband Kriftel" }, - "duration": 179, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -14783,7 +14791,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 179 + "value": 185 }, "RESPONSIVE": { "score": 0, @@ -14828,9 +14836,9 @@ "resolved_hostname": "www.gruene-krummhoern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-krummhoern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "83.169.42.104" ], @@ -14882,7 +14890,7 @@ ], "title": "Grüne Krummhörn" }, - "duration": 696, + "duration": 669, "error": null, "responsive": { "document_width": { @@ -14929,7 +14937,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 696 + "value": 669 }, "RESPONSIVE": { "score": 1, @@ -14969,9 +14977,9 @@ "resolved_hostname": "www.gruene-kusel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kusel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15013,7 +15021,7 @@ "opengraph": null, "title": "Kreisverband Kusel: Willkommen" }, - "duration": 175, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -15061,7 +15069,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 178 }, "RESPONSIVE": { "score": 1, @@ -15105,9 +15113,9 @@ "resolved_hostname": "www.gruene-kv-borken.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kv-borken.de/wp-content/themes/1507917786-b0aO66/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.225" ], @@ -15160,7 +15168,7 @@ ], "title": "KV BORKENVORSTAND DES KV BORKEN" }, - "duration": 943, + "duration": 733, "error": null, "responsive": { "document_width": { @@ -15207,7 +15215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 943 + "value": 733 }, "RESPONSIVE": { "score": 1, @@ -15247,9 +15255,9 @@ "resolved_hostname": "www.gruene-kv-lauenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-lauenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15291,7 +15299,7 @@ "opengraph": null, "title": "Herzogtum Lauenburg: Home – Aktuelles" }, - "duration": 208, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -15339,7 +15347,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -15379,9 +15387,9 @@ "resolved_hostname": "www.gruene-kv-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15423,7 +15431,7 @@ "opengraph": null, "title": "Kreisverband Stade: Aktuelle Informationen aus dem Kreisverband Stade - Bündnis90/Die Grünen" }, - "duration": 207, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -15471,7 +15479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -15512,9 +15520,10 @@ "resolved_hostname": "www.gruene-laatzen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-laatzen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-laatzen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -15556,7 +15565,7 @@ "opengraph": null, "title": "Ortsverband Laatzen | ." }, - "duration": 214, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -15579,7 +15588,7 @@ "opengraph": null, "title": "Ortsverband Laatzen | ." }, - "duration": 275, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -15628,7 +15637,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -15668,9 +15677,9 @@ "resolved_hostname": "www.gruene-le.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-le.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15712,7 +15721,7 @@ "opengraph": null, "title": "Leinfelden-Echterdingen: Startseite" }, - "duration": 217, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -15760,7 +15769,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -15804,9 +15813,9 @@ "resolved_hostname": "www.gruene-lebach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-lebach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -15852,7 +15861,7 @@ "opengraph": null, "title": "Ortsverband Lebach - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 286, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -15899,7 +15908,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 286 + "value": 327 }, "RESPONSIVE": { "score": 1, @@ -15939,9 +15948,9 @@ "resolved_hostname": "www.gruene-leichlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-leichlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -15983,7 +15992,7 @@ "opengraph": null, "title": "Ortsverband Leichlingen: Home" }, - "duration": 192, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -16031,7 +16040,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -16075,9 +16084,9 @@ "resolved_hostname": "www.gruene-lichtenberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-lichtenberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.22" ], @@ -16094,7 +16103,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -16102,7 +16111,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-lichtenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -16135,7 +16144,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 945, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -16183,7 +16192,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 945 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -16226,9 +16235,9 @@ "resolved_hostname": "www.gruene-limburgerhof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-limburgerhof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16273,7 +16282,7 @@ "opengraph": null, "title": "Ortsverband Limburgerhof: Startseite" }, - "duration": 250, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -16320,7 +16329,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 219 }, "RESPONSIVE": { "score": 0, @@ -16362,9 +16371,9 @@ "resolvable": false } }, - "icons": [ - "4a8754784888a49ad98e0a7afce8a906.ico" - ], + "icons": { + "http://gruene-lorsch.de/wp-content/themes/greenchameleon-0.9/options/images/favicon.ico": "4a8754784888a49ad98e0a7afce8a906.ico" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -16405,7 +16414,7 @@ ], "title": "Lorsch - Fraktion in der Stadtverordnetenversammlung" }, - "duration": 542, + "duration": 581, "error": null, "responsive": { "document_width": { @@ -16453,7 +16462,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 542 + "value": 581 }, "RESPONSIVE": { "score": 0, @@ -16497,9 +16506,9 @@ "resolved_hostname": "www.gruene-luedinghausen.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-luedinghausen.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -16547,7 +16556,7 @@ "opengraph": null, "title": "Ortsverband der Grünen Lüdinghausen » Bündnis 90/Die Grünen Lüdinghausen" }, - "duration": 870, + "duration": 891, "error": null, "responsive": { "document_width": { @@ -16595,7 +16604,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 870 + "value": 891 }, "RESPONSIVE": { "score": 0, @@ -16635,9 +16644,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16679,7 +16688,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 198, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -16727,7 +16736,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -16767,9 +16776,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16811,7 +16820,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 203, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -16859,7 +16868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -16899,9 +16908,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -16943,7 +16952,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 206, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -16991,7 +17000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -17031,9 +17040,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17163,9 +17172,9 @@ "resolved_hostname": "www.gruene-magdeburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-magdeburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17192,7 +17201,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 480, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -17207,13 +17216,13 @@ "opengraph": null, "title": "Kreisverband Magdeburg: Start" }, - "duration": 245, + "duration": 201, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 480, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -17255,7 +17264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -17295,9 +17304,9 @@ "resolved_hostname": "www.gruene-mansfeld-suedharz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mansfeld-suedharz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17339,7 +17348,7 @@ "opengraph": null, "title": "KV Mansfeld-Südharz: Home" }, - "duration": 330, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -17387,7 +17396,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 330 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -17460,7 +17469,7 @@ "opengraph": null, "title": "Die Gruenen in Meckenheim" }, - "duration": 74, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -17510,7 +17519,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 74 + "value": 95 }, "RESPONSIVE": { "score": 1, @@ -17551,9 +17560,9 @@ "resolved_hostname": "www.gruene-mettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -17595,7 +17604,7 @@ "opengraph": null, "title": "OV Mettingen: Startseite" }, - "duration": 191, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -17643,7 +17652,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -17688,9 +17697,9 @@ "resolved_hostname": "www.gruene-mitte.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mitte.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.67.28.209" ], @@ -17717,7 +17726,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 383, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -17749,13 +17758,13 @@ ], "title": "Willkommen - Bündnis 90 Die Grünen Berlin-MitteGrüne Mitte" }, - "duration": 748, + "duration": 219, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 383, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -17796,7 +17805,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 748 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -17840,9 +17849,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -17895,7 +17904,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 903, + "duration": 962, "error": null, "responsive": { "document_width": { @@ -17942,7 +17951,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 903 + "value": 962 }, "RESPONSIVE": { "score": 1, @@ -17982,9 +17991,9 @@ "resolved_hostname": "www.gruene-monheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-monheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18026,7 +18035,7 @@ "opengraph": null, "title": "Grüne Monheim: Home" }, - "duration": 201, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -18074,7 +18083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -18159,7 +18168,7 @@ "opengraph": null, "title": "Grüne Mühltal" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -18182,7 +18191,7 @@ "opengraph": null, "title": "Grüne Mühltal" }, - "duration": 70, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -18233,7 +18242,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 72 }, "RESPONSIVE": { "score": 0, @@ -18276,9 +18285,9 @@ "resolved_hostname": "www.gruene-mv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18323,7 +18332,7 @@ "opengraph": null, "title": "Mecklenburg-Vorpommern: Start" }, - "duration": 240, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -18370,7 +18379,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -18414,9 +18423,9 @@ "resolved_hostname": "www.gruene-neckargemuend.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-neckargemuend.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -18474,7 +18483,7 @@ ], "title": "- Bündnis 90/Die Grünen – OV Neckargemünd" }, - "duration": 383, + "duration": 434, "error": null, "responsive": { "document_width": { @@ -18522,7 +18531,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 434 }, "RESPONSIVE": { "score": 0, @@ -18562,9 +18571,9 @@ "resolved_hostname": "www.gruene-neumuenster.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neumuenster.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18606,7 +18615,7 @@ "opengraph": null, "title": "Grüne Neumünster: Aktuelles" }, - "duration": 190, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -18654,7 +18663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -18697,9 +18706,9 @@ "resolved_hostname": "www.gruene-neunkirchen-am-brand.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-neunkirchen-am-brand.de/wordpress/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.8.207.7" ], @@ -18747,7 +18756,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Neunkirchen am Brand" }, - "duration": 975, + "duration": 926, "error": null, "responsive": { "document_width": { @@ -18795,7 +18804,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 975 + "value": 926 }, "RESPONSIVE": { "score": 0, @@ -18835,9 +18844,9 @@ "resolved_hostname": "www.gruene-neuwied.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neuwied.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -18879,7 +18888,7 @@ "opengraph": null, "title": "Kreisverband Neuwied: Home" }, - "duration": 236, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -18927,7 +18936,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -18972,9 +18981,9 @@ "resolved_hostname": "www.gruene-nideggen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-nideggen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.121" ], @@ -18991,7 +19000,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -18999,7 +19008,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-nideggen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19038,7 +19047,7 @@ ], "title": "" }, - "duration": 503, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -19086,7 +19095,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 503 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -19130,9 +19139,9 @@ "resolved_hostname": "www.gruene-niederaula.de" } }, - "icons": [ - "d4b7217bba56a47dd0a55118680e29d0.jpg" - ], + "icons": { + "http://gruene-niederaula.de/wp-content/uploads/2016/02/1-Orig-Logo-150x85.jpg": "d4b7217bba56a47dd0a55118680e29d0.jpg" + }, "ipv4_addresses": [ "89.31.143.100" ], @@ -19149,7 +19158,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19157,7 +19166,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-niederaula.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -19184,7 +19193,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Niederaula" }, - "duration": 422, + "duration": 334, "error": null, "responsive": { "document_width": { @@ -19232,7 +19241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 334 }, "RESPONSIVE": { "score": 1, @@ -19317,7 +19326,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Niederzier" }, - "duration": 62, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -19340,7 +19349,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Niederzier" }, - "duration": 59, + "duration": 71, "error": null, "responsive": { "document_width": { @@ -19391,7 +19400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -19431,9 +19440,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -19475,7 +19484,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 198, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -19523,7 +19532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -19563,405 +19572,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 203, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-mittelweser/", - "meta": { - "city": "Mittelweser", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 203 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 241, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-nienburg/", - "meta": { - "city": "Nienburg", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 241 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "http://www.gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://gruene-nienburg.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", - "url": "https://www.gruene-nienburg.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Nienburg: Herzlich Willkommen" - }, - "duration": 197, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nienburg.de/herzlich-willkommen/" - } - ] - }, - "input_url": "http://gruene-nienburg.de/ortsverband-steimbke/", - "meta": { - "city": "Steimbke", - "district": "Nienburg", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 197 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nienburg.de/herzlich-willkommen/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nienburg.de" - }, - "www.gruene-nienburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nienburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -20019,9 +19632,9 @@ } ] }, - "input_url": "http://gruene-nienburg.de/ortsverband-steyerberg/", + "input_url": "http://gruene-nienburg.de/ortsverband-mittelweser/", "meta": { - "city": "Steyerberg", + "city": "Mittelweser", "district": "Nienburg", "level": "DE:ORTSVERBAND", "state": "Niedersachsen" @@ -20091,9 +19704,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20135,7 +19748,403 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 193, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-nienburg/", + "meta": { + "city": "Nienburg", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 198, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-steimbke/", + "meta": { + "city": "Steimbke", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 198 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 245, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nienburg.de/herzlich-willkommen/" + } + ] + }, + "input_url": "http://gruene-nienburg.de/ortsverband-steyerberg/", + "meta": { + "city": "Steyerberg", + "district": "Nienburg", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 245 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nienburg.de/herzlich-willkommen/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nienburg.de" + }, + "www.gruene-nienburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nienburg.de" + } + }, + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "http://www.gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://gruene-nienburg.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nienburg.de/herzlich-willkommen/", + "url": "https://www.gruene-nienburg.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Nienburg: Herzlich Willkommen" + }, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -20183,7 +20192,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -20227,9 +20236,9 @@ "resolved_hostname": "www.gruene-nks.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-nks.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.129.167" ], @@ -20288,7 +20297,7 @@ ], "title": "Grüne Neunkirchen-Seelscheid" }, - "duration": 238, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -20336,7 +20345,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -20376,9 +20385,9 @@ "resolved_hostname": "www.gruene-norden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-norden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20420,7 +20429,7 @@ "opengraph": null, "title": "Ortsverband Stadt Norden: Home" }, - "duration": 200, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -20468,7 +20477,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -20508,9 +20517,9 @@ "resolved_hostname": "www.gruene-northeim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-northeim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20552,7 +20561,7 @@ "opengraph": null, "title": "Ortsverband Northeim: Startseite" }, - "duration": 172, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -20600,7 +20609,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 175 }, "RESPONSIVE": { "score": 1, @@ -20644,9 +20653,9 @@ "resolved_hostname": "www.gruene-nuembrecht.de" } }, - "icons": [ - "ccee93bd02b00be593e0ab7b81491fdd.ico" - ], + "icons": { + "https://www.gruene-nuembrecht.de/favicon.ico": "ccee93bd02b00be593e0ab7b81491fdd.ico" + }, "ipv4_addresses": [ "83.169.42.104" ], @@ -20689,7 +20698,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Nümbrecht" }, - "duration": 201, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -20716,7 +20725,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Nümbrecht" }, - "duration": 245, + "duration": 269, "error": null, "responsive": { "document_width": { @@ -20764,7 +20773,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 237 }, "RESPONSIVE": { "score": 0, @@ -20807,9 +20816,9 @@ "resolved_hostname": "www.gruene-nw.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nw.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -20854,7 +20863,7 @@ "opengraph": null, "title": "KV Neustadt a. d. Weinstrasse: Home" }, - "duration": 209, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -20901,7 +20910,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -20945,9 +20954,9 @@ "resolved_hostname": "www.gruene-ober-ramstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ober-ramstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -21005,7 +21014,7 @@ ], "title": "GRÜNE Ober-Ramstadt" }, - "duration": 376, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -21053,7 +21062,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 376 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -21097,9 +21106,9 @@ "resolved_hostname": "www.gruene-oberpfalz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-oberpfalz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.7" ], @@ -21158,7 +21167,7 @@ ], "title": "Grüne Oberpfalz" }, - "duration": 480, + "duration": 450, "error": null, "responsive": { "document_width": { @@ -21206,7 +21215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 480 + "value": 450 }, "RESPONSIVE": { "score": 1, @@ -21251,9 +21260,10 @@ "resolved_hostname": "www.gruene-oberzent.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-oberzent.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico", + "https://gruene-oberzent.de/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -21301,7 +21311,7 @@ ], "title": "Startseite - Bündnis 90 / Die Grünen Oberzent - - Bündnis 90 / Die Grünen Oberzent" }, - "duration": 350, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -21333,7 +21343,7 @@ ], "title": "Startseite - Bündnis 90 / Die Grünen Oberzent - - Bündnis 90 / Die Grünen Oberzent" }, - "duration": 437, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -21381,7 +21391,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 394 + "value": 455 }, "RESPONSIVE": { "score": 0, @@ -21424,9 +21434,9 @@ "resolved_hostname": "www.gruene-olching.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://www.gruene-olching.de/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "80.237.132.107" ], @@ -21443,7 +21453,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21451,7 +21461,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-olching.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21474,7 +21484,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN Olching" }, - "duration": 343, + "duration": 371, "error": null, "responsive": { "document_width": { @@ -21522,7 +21532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 343 + "value": 371 }, "RESPONSIVE": { "score": 0, @@ -21566,9 +21576,9 @@ "resolved_hostname": "www.gruene-ortenau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ortenau.de/wp-9b89d-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.10" ], @@ -21585,7 +21595,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21593,7 +21603,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ortenau.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -21626,7 +21636,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortenau" }, - "duration": 521, + "duration": 539, "error": null, "responsive": { "document_width": { @@ -21674,7 +21684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 521 + "value": 539 }, "RESPONSIVE": { "score": 1, @@ -21714,9 +21724,9 @@ "resolved_hostname": "www.gruene-os.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -21758,7 +21768,7 @@ "opengraph": null, "title": "Stadtverband Osnabrück: Startseite" }, - "duration": 193, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -21806,7 +21816,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -21850,9 +21860,9 @@ "resolved_hostname": "www.gruene-ottweiler.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ottweiler.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -21898,7 +21908,7 @@ "opengraph": null, "title": "Ortsverband Ottweiler - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 303, + "duration": 338, "error": null, "responsive": { "document_width": { @@ -21945,7 +21955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 303 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -21985,9 +21995,9 @@ "resolved_hostname": "www.gruene-pankow.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pankow.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22029,7 +22039,7 @@ "opengraph": null, "title": "Homepage Kreisverband Pankow: Home" }, - "duration": 218, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -22077,7 +22087,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -22122,9 +22132,10 @@ "resolved_hostname": "www.gruene-passau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.129" ], @@ -22169,7 +22180,6 @@ "icon": "http://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -22177,7 +22187,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Kreisverband Passau-Stadt" }, - "duration": 25, + "duration": 953, "error": null, "responsive": { "document_width": { @@ -22203,7 +22213,6 @@ "icon": "https://gruene-passau.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -22211,7 +22220,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Kreisverband Passau-Stadt" }, - "duration": 95, + "duration": 926, "error": null, "responsive": { "document_width": { @@ -22256,9 +22265,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 60 + "value": 940 }, "RESPONSIVE": { "score": 1, @@ -22274,7 +22283,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -22298,9 +22307,9 @@ "resolved_hostname": "www.gruene-pattensen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pattensen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22342,7 +22351,7 @@ "opengraph": null, "title": "Ortsverband Pattensen: Aus dem Ortsverband" }, - "duration": 212, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -22390,7 +22399,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -22437,9 +22446,10 @@ "resolved_hostname": "www.gruene-pforzheim-enz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-pforzheim-enz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-pforzheim-enz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.1" ], @@ -22491,7 +22501,7 @@ ], "title": "- Bündnis 90 / Die Grünen" }, - "duration": 610, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -22524,7 +22534,7 @@ ], "title": "- Bündnis 90 / Die Grünen" }, - "duration": 740, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -22572,7 +22582,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 675 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -22612,9 +22622,9 @@ "resolved_hostname": "www.gruene-pirmasens.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pirmasens.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -22656,7 +22666,7 @@ "opengraph": null, "title": "Stadtverband Pirmasens: Home" }, - "duration": 171, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -22704,7 +22714,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 149 }, "RESPONSIVE": { "score": 1, @@ -22748,9 +22758,9 @@ "resolved_hostname": "www.gruene-rastatt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rastatt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.227.247.44" ], @@ -22808,7 +22818,7 @@ ], "title": "GRÜNE RASTATT" }, - "duration": 235, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -22856,7 +22866,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -22900,9 +22910,9 @@ "resolved_hostname": "www.gruene-rees.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rees.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.216" ], @@ -22960,7 +22970,7 @@ ], "title": "Die GRÜNEN Rees" }, - "duration": 728, + "duration": 846, "error": null, "responsive": { "document_width": { @@ -23008,7 +23018,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 728 + "value": 846 }, "RESPONSIVE": { "score": 1, @@ -23053,9 +23063,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -23072,7 +23082,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23080,7 +23090,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23114,7 +23124,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 546, + "duration": 526, "error": null, "responsive": { "document_width": { @@ -23162,7 +23172,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 546 + "value": 526 }, "RESPONSIVE": { "score": 1, @@ -23207,9 +23217,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -23226,7 +23236,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23234,7 +23244,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -23268,7 +23278,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 562, + "duration": 555, "error": null, "responsive": { "document_width": { @@ -23316,7 +23326,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 562 + "value": 555 }, "RESPONSIVE": { "score": 1, @@ -23356,9 +23366,9 @@ "resolved_hostname": "www.gruene-reichshof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reichshof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23400,7 +23410,7 @@ "opengraph": null, "title": "Reichshof: Startseite" }, - "duration": 222, + "duration": 253, "error": null, "responsive": { "document_width": { @@ -23448,7 +23458,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 253 }, "RESPONSIVE": { "score": 1, @@ -23488,9 +23498,9 @@ "resolved_hostname": "www.gruene-reinickendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reinickendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23532,7 +23542,7 @@ "opengraph": null, "title": "Kreisverband Reinickendorf: Startseite" }, - "duration": 194, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -23580,7 +23590,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -23625,9 +23635,9 @@ "resolved_hostname": "www.gruene-rendsburg-eckernfoerde.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rendsburg-eckernfoerde.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.147", "217.70.186.100" @@ -23686,7 +23696,7 @@ ], "title": "KV Rendsburg-Eckernförde" }, - "duration": 326, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -23702,7 +23712,7 @@ }, { "content": null, - "duration": 57, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -23750,7 +23760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 248 }, "RESPONSIVE": { "score": 1, @@ -23790,9 +23800,9 @@ "resolved_hostname": "www.gruene-rh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -23834,7 +23844,7 @@ "opengraph": null, "title": "KV Rhein-Hunsrück: HOME" }, - "duration": 196, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -23882,7 +23892,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -23926,9 +23936,9 @@ "resolved_hostname": "www.gruene-rhein-sieg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rhein-sieg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -23986,7 +23996,7 @@ ], "title": "Kreisverband von Bündnis 90/Die Grünen » Bündnis 90/Die Grünen Rhein-Sieg" }, - "duration": 57, + "duration": 59, "error": null, "responsive": { "document_width": { @@ -24034,7 +24044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 57 + "value": 59 }, "RESPONSIVE": { "score": 1, @@ -24078,9 +24088,9 @@ "resolved_hostname": "www.gruene-riegelsberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-riegelsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -24126,7 +24136,7 @@ "opengraph": null, "title": "Ortsverband Riegelsberg - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 308, + "duration": 310, "error": null, "responsive": { "document_width": { @@ -24173,7 +24183,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 310 }, "RESPONSIVE": { "score": 1, @@ -24216,9 +24226,9 @@ "resolved_hostname": "www.gruene-rlp.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rlp.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -24263,7 +24273,7 @@ "opengraph": null, "title": "Rheinland-Pfalz: Startseite" }, - "duration": 193, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -24310,7 +24320,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -24340,8 +24350,8 @@ "hostnames": { "gruene-rodgau.de": { "ip_addresses": [ - "81.88.32.226", - "81.88.42.143" + "81.88.42.143", + "81.88.32.226" ], "resolvable": true, "resolved_hostname": "gruene-rodgau.de" @@ -24355,9 +24365,9 @@ "resolved_hostname": "www.gruene-rodgau.de" } }, - "icons": [ - "763a07a20f4c0be782bfc18673b39f04.ico" - ], + "icons": { + "http://2016.gruene-rodgau.de/templates/joomlage0071-simplex/favicon.ico": "763a07a20f4c0be782bfc18673b39f04.ico" + }, "ipv4_addresses": [ "81.88.32.226", "81.88.42.143" @@ -24410,7 +24420,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Stadtverband Rodgau - Startseite" }, - "duration": 315, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -24458,7 +24468,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 315 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -24501,9 +24511,9 @@ "resolvable": false } }, - "icons": [ - "53bc42ded65062b7dc578a20b5ff2cce.jpg" - ], + "icons": { + "http://gruene-roetgen.de/wp-content/uploads/2017/02/cropped-sonnenblume-klein-grün_bearbeitet-4.jpg": "53bc42ded65062b7dc578a20b5ff2cce.jpg" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -24542,7 +24552,7 @@ "opengraph": null, "title": "gruene-roetgen – gruene roetgen" }, - "duration": 294, + "duration": 290, "error": null, "responsive": { "document_width": { @@ -24590,7 +24600,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 290 }, "RESPONSIVE": { "score": 1, @@ -24634,9 +24644,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-rommerskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -24681,7 +24691,7 @@ ], "title": "Bündnis 90/ die Grünen" }, - "duration": 398, + "duration": 357, "error": null, "responsive": { "document_width": { @@ -24729,7 +24739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 357 }, "RESPONSIVE": { "score": 1, @@ -24770,9 +24780,9 @@ "resolved_hostname": "www.gruene-ruppichteroth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ruppichteroth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -24814,7 +24824,7 @@ "opengraph": null, "title": "OV Ruppichteroth: Startseite" }, - "duration": 198, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -24862,7 +24872,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -24907,9 +24917,10 @@ "resolved_hostname": "www.gruene-saarbruecken.de" } }, - "icons": [ - "ad26b2b5dc1cd9cd682d9f653939490d.ico" - ], + "icons": { + "https://gruene-saarbruecken.de/templates/gruene_2/favicon.ico": "ad26b2b5dc1cd9cd682d9f653939490d.ico", + "https://www.gruene-saarbruecken.de/templates/gruene_2/favicon.ico": "ad26b2b5dc1cd9cd682d9f653939490d.ico" + }, "ipv4_addresses": [ "78.47.188.23" ], @@ -24955,7 +24966,7 @@ "opengraph": null, "title": "Aktuell" }, - "duration": 361, + "duration": 349, "error": null, "responsive": { "document_width": { @@ -24982,7 +24993,7 @@ "opengraph": null, "title": "Aktuell" }, - "duration": 389, + "duration": 392, "error": null, "responsive": { "document_width": { @@ -25030,7 +25041,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 370 }, "RESPONSIVE": { "score": 1, @@ -25074,9 +25085,9 @@ "resolved_hostname": "www.gruene-saarlouis.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-saarlouis.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25122,7 +25133,7 @@ "opengraph": null, "title": "Ortsverband Saarlouis - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 301, + "duration": 316, "error": null, "responsive": { "document_width": { @@ -25169,7 +25180,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 316 }, "RESPONSIVE": { "score": 1, @@ -25213,9 +25224,9 @@ "resolved_hostname": "www.gruene-saarwellingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-saarwellingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25261,7 +25272,7 @@ "opengraph": null, "title": "ORTSVERBAND SAARWELLINGEN - Bündnis 90/Die Grünen – Saarland" }, - "duration": 386, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -25308,7 +25319,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 386 + "value": 293 }, "RESPONSIVE": { "score": 1, @@ -25348,9 +25359,9 @@ "resolved_hostname": "www.gruene-salzgitter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-salzgitter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25392,7 +25403,7 @@ "opengraph": null, "title": "Grüne in Salzgitter: Aktuelles" }, - "duration": 200, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -25440,7 +25451,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -25480,9 +25491,9 @@ "resolved_hostname": "www.gruene-sanktaugustin.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sanktaugustin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25524,7 +25535,7 @@ "opengraph": null, "title": "GRÜNE Sankt Augustin: Home" }, - "duration": 202, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -25572,7 +25583,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 193 }, "RESPONSIVE": { "score": 1, @@ -25612,9 +25623,9 @@ "resolved_hostname": "www.gruene-schifferstadt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schifferstadt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -25656,7 +25667,7 @@ "opengraph": null, "title": "Grüne Schifferstadt: Startseite" }, - "duration": 215, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -25704,7 +25715,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -25748,9 +25759,9 @@ "resolved_hostname": "www.gruene-schmelz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-schmelz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -25796,7 +25807,7 @@ "opengraph": null, "title": "Ortsverband Schmelz - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 271, + "duration": 313, "error": null, "responsive": { "document_width": { @@ -25843,7 +25854,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 271 + "value": 313 }, "RESPONSIVE": { "score": 1, @@ -25887,9 +25898,9 @@ "resolved_hostname": "www.gruene-schoeneiche.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-schoeneiche.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.134.30" ], @@ -25947,7 +25958,7 @@ ], "title": "- Bündnis 90/Die Grünen Schöneiche bei Berlin" }, - "duration": 264, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -25995,7 +26006,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 247 }, "RESPONSIVE": { "score": 0, @@ -26039,9 +26050,9 @@ "resolved_hostname": "www.gruene-schwalbach-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-schwalbach-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -26087,7 +26098,7 @@ "opengraph": null, "title": "Ortsverband Schwalbach - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 283, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -26134,7 +26145,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 283 + "value": 318 }, "RESPONSIVE": { "score": 1, @@ -26174,9 +26185,9 @@ "resolved_hostname": "www.gruene-se-kv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-se-kv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -26218,7 +26229,7 @@ "opengraph": null, "title": "Kreisverband Segeberg: Home" }, - "duration": 199, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -26266,7 +26277,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -26307,9 +26318,10 @@ "resolved_hostname": "www.gruene-seelze.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seelze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-seelze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -26351,7 +26363,7 @@ "opengraph": null, "title": "Ortsverband Seelze | ." }, - "duration": 217, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -26374,7 +26386,7 @@ "opengraph": null, "title": "Ortsverband Seelze | ." }, - "duration": 228, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -26423,7 +26435,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -26463,9 +26475,9 @@ "resolved_hostname": "www.gruene-sickte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sickte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -26507,7 +26519,7 @@ "opengraph": null, "title": "OV Samtgemeinde Sickte: Startseite" }, - "duration": 189, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -26555,7 +26567,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -26598,9 +26610,9 @@ "resolved_hostname": "www.gruene-siegburg.de" } }, - "icons": [ - "9351d68ba37778de3368808f94d53ba8.jpg" - ], + "icons": { + "http://wp.gruene-siegburg.de/wp-content/uploads/2015/10/sonnenblume_auf_gruen1.jpg": "9351d68ba37778de3368808f94d53ba8.jpg" + }, "ipv4_addresses": [ "217.160.223.87" ], @@ -26658,7 +26670,7 @@ ], "title": "Grüne-Siegburg" }, - "duration": 75, + "duration": 714, "error": null, "responsive": { "document_width": { @@ -26704,9 +26716,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 75 + "value": 714 }, "RESPONSIVE": { "score": 1, @@ -26722,7 +26734,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -26748,9 +26760,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -26785,7 +26797,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 444, + "duration": 432, "error": null, "responsive": { "document_width": { @@ -26833,7 +26845,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 444 + "value": 432 }, "RESPONSIVE": { "score": 0, @@ -26876,9 +26888,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -26913,7 +26925,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 470, + "duration": 452, "error": null, "responsive": { "document_width": { @@ -26961,7 +26973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 470 + "value": 452 }, "RESPONSIVE": { "score": 0, @@ -27004,9 +27016,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -27041,7 +27053,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 433, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -27089,7 +27101,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 433 + "value": 460 }, "RESPONSIVE": { "score": 0, @@ -27134,9 +27146,9 @@ "resolved_hostname": "www.gruene-sonneberg-hildburghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-sonneberg-hildburghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.160" ], @@ -27194,7 +27206,7 @@ ], "title": "B90 / Die Grünen" }, - "duration": 284, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -27242,7 +27254,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 284 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -27285,9 +27297,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenespandau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.156" ], @@ -27330,7 +27342,7 @@ ], "title": "Bündnis 90/Die Grünen Spandau" }, - "duration": 122, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -27377,7 +27389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -27419,9 +27431,10 @@ "resolved_hostname": "www.gruene-springe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-springe.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-springe.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -27463,7 +27476,7 @@ "opengraph": null, "title": "Ortsverband Springe | ." }, - "duration": 213, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -27486,7 +27499,7 @@ "opengraph": null, "title": "Ortsverband Springe | ." }, - "duration": 234, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -27535,7 +27548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -27623,7 +27636,7 @@ "opengraph": null, "title": "Unbenanntes Dokument" }, - "duration": 107, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -27646,7 +27659,7 @@ "opengraph": null, "title": "Unbenanntes Dokument" }, - "duration": 82, + "duration": 107, "error": null, "responsive": { "document_width": { @@ -27697,7 +27710,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 94 + "value": 92 }, "RESPONSIVE": { "score": 1, @@ -27742,9 +27755,9 @@ "resolved_hostname": "www.gruene-suedlohn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-suedlohn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -27803,7 +27816,7 @@ ], "title": "EHRLICH - OFFEN - BÜRGERNAH › Bündnis 90/Die GRÜNEN - Südlohn" }, - "duration": 59, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -27851,7 +27864,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 68 }, "RESPONSIVE": { "score": 1, @@ -27897,9 +27910,10 @@ "resolvable": false } }, - "icons": [ - "09d52e5603efb19a8c1cb52af6a1c9da.png" - ], + "icons": { + "http://gruene-suedwest.de/wp-content/uploads/2017/01/favicon.png": "09d52e5603efb19a8c1cb52af6a1c9da.png", + "https://gruene-suedwest.de/wp-content/uploads/2017/01/favicon.png": "09d52e5603efb19a8c1cb52af6a1c9da.png" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -27941,7 +27955,7 @@ ], "title": "Home - Grüne Steglitz-Zehlendorf" }, - "duration": 575, + "duration": 573, "error": null, "responsive": { "document_width": { @@ -27974,7 +27988,7 @@ ], "title": "Home - Grüne Steglitz-Zehlendorf" }, - "duration": 686, + "duration": 680, "error": null, "responsive": { "document_width": { @@ -28022,7 +28036,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 630 + "value": 626 }, "RESPONSIVE": { "score": 1, @@ -28063,9 +28077,9 @@ "resolved_hostname": "www.gruene-suedwestpfalz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-suedwestpfalz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -28107,7 +28121,7 @@ "opengraph": null, "title": "Grüne Südwestpfalz: Startseite" }, - "duration": 195, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -28155,7 +28169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 168 }, "RESPONSIVE": { "score": 1, @@ -28195,9 +28209,9 @@ "resolved_hostname": "www.gruene-suew.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-suew.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -28239,7 +28253,7 @@ "opengraph": null, "title": "Kreisverband Grüne Südliche Weinstraße: Startseite" }, - "duration": 206, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -28287,7 +28301,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -28331,9 +28345,9 @@ "resolved_hostname": "www.gruene-swisttal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-swisttal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.176" ], @@ -28366,7 +28380,7 @@ } ], "responsive": { - "min_width": 335, + "min_width": 349, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -28393,13 +28407,13 @@ ], "title": "Die GRÜNEN in Swisttal" }, - "duration": 208, + "duration": 491, "error": null, "responsive": { "document_width": { - "1024x768": 1337, + "1024x768": 1160, "1920x1080": 1920, - "320x480": 335, + "320x480": 349, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -28441,7 +28455,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 491 }, "RESPONSIVE": { "score": 1, @@ -28483,9 +28497,9 @@ "resolvable": false } }, - "icons": [ - "f6644057949af3bd9612bcf3a50a2149.ico" - ], + "icons": { + "http://gruene-taufkirchen.de/templates/jp-x2/favicon.ico": "f6644057949af3bd9612bcf3a50a2149.ico" + }, "ipv4_addresses": [ "81.169.145.72" ], @@ -28524,7 +28538,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 166, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -28572,7 +28586,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -28620,9 +28634,10 @@ "resolved_hostname": "www.gruene-tholey.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-tholey.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-tholey.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -28668,7 +28683,7 @@ "opengraph": null, "title": "Ortsverband Tholey - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 249, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -28695,7 +28710,7 @@ "opengraph": null, "title": "Ortsverband Tholey - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 324, + "duration": 305, "error": null, "responsive": { "document_width": { @@ -28743,7 +28758,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 286 + "value": 262 }, "RESPONSIVE": { "score": 1, @@ -28828,7 +28843,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Titz" }, - "duration": 63, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -28851,7 +28866,7 @@ "opengraph": null, "title": "Willkommen :: Grüne Titz" }, - "duration": 60, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -28902,7 +28917,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -28949,9 +28964,10 @@ "resolved_hostname": "www.gruene-tostedt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-tostedt.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-tostedt.de/wp-content/themes/urwahl3000-master/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.226.43" ], @@ -29003,7 +29019,7 @@ ], "title": "Ortsverband Tostedt" }, - "duration": 498, + "duration": 536, "error": null, "responsive": { "document_width": { @@ -29036,7 +29052,7 @@ ], "title": "Ortsverband Tostedt" }, - "duration": 625, + "duration": 657, "error": null, "responsive": { "document_width": { @@ -29084,7 +29100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 562 + "value": 596 }, "RESPONSIVE": { "score": 1, @@ -29124,9 +29140,9 @@ "resolved_hostname": "www.gruene-trier-saarburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-trier-saarburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -29168,7 +29184,7 @@ "opengraph": null, "title": "Trier-Saarburg: Home" }, - "duration": 196, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -29216,7 +29232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 331 }, "RESPONSIVE": { "score": 1, @@ -29259,9 +29275,9 @@ "resolved_hostname": "www.gruene-troisdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-troisdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -29319,7 +29335,7 @@ ], "title": "Nachhaltige und soziale Politik für Troisdorf › GRÜNE für Troisdorf" }, - "duration": 358, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -29367,7 +29383,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 358 + "value": 350 }, "RESPONSIVE": { "score": 1, @@ -29411,9 +29427,9 @@ "resolved_hostname": "www.gruene-ueberherrn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ueberherrn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -29459,7 +29475,7 @@ "opengraph": null, "title": "Ortsverband Überherrn - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 303, + "duration": 291, "error": null, "responsive": { "document_width": { @@ -29506,7 +29522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 303 + "value": 291 }, "RESPONSIVE": { "score": 1, @@ -29550,9 +29566,9 @@ "resolved_hostname": "www.gruene-uedem.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-uedem.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.143.172.216" ], @@ -29611,7 +29627,7 @@ ], "title": "Grüne Uedem" }, - "duration": 798, + "duration": 829, "error": null, "responsive": { "document_width": { @@ -29659,7 +29675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 798 + "value": 829 }, "RESPONSIVE": { "score": 1, @@ -29699,9 +29715,9 @@ "resolved_hostname": "www.gruene-uelzen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uelzen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -29743,7 +29759,7 @@ "opengraph": null, "title": "Grüne im Kreis Uelzen: Startseite" }, - "duration": 217, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -29791,7 +29807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -29832,9 +29848,10 @@ "resolved_hostname": "www.gruene-uetze.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uetze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-uetze.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -29876,7 +29893,7 @@ "opengraph": null, "title": "Ortsverband Uetze | ." }, - "duration": 279, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -29899,7 +29916,7 @@ "opengraph": null, "title": "Ortsverband Uetze | ." }, - "duration": 214, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -29948,7 +29965,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 246 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -30005,7 +30022,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -30013,7 +30030,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ush.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -30033,7 +30050,7 @@ "opengraph": null, "title": "" }, - "duration": 100, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -30056,7 +30073,7 @@ "opengraph": null, "title": "" }, - "duration": 65, + "duration": 82, "error": null, "responsive": { "document_width": { @@ -30107,7 +30124,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 82 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -30147,9 +30164,9 @@ "resolved_hostname": "www.gruene-vechta.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vechta.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -30191,7 +30208,7 @@ "opengraph": null, "title": "Kreisverband Vechta: Startseite" }, - "duration": 171, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -30239,7 +30256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -30283,9 +30300,9 @@ "resolved_hostname": "www.gruene-voelklingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-voelklingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30331,7 +30348,7 @@ "opengraph": null, "title": "Ortsverband Völklingen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 288, + "duration": 311, "error": null, "responsive": { "document_width": { @@ -30378,7 +30395,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 288 + "value": 311 }, "RESPONSIVE": { "score": 1, @@ -30422,9 +30439,9 @@ "resolved_hostname": "www.gruene-wadern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wadern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30470,7 +30487,7 @@ "opengraph": null, "title": "Ortsverband Wadern - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 270, + "duration": 299, "error": null, "responsive": { "document_width": { @@ -30517,7 +30534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 270 + "value": 299 }, "RESPONSIVE": { "score": 1, @@ -30561,9 +30578,9 @@ "resolved_hostname": "www.gruene-wallerfangen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wallerfangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -30609,7 +30626,7 @@ "opengraph": null, "title": "Ortsverband Wallerfangen - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 321, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -30656,7 +30673,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 321 + "value": 320 }, "RESPONSIVE": { "score": 1, @@ -30697,9 +30714,10 @@ "resolved_hostname": "www.gruene-wedemark.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wedemark.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-wedemark.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -30741,7 +30759,7 @@ "opengraph": null, "title": "Ortsverband Wedemark | ." }, - "duration": 265, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -30764,7 +30782,7 @@ "opengraph": null, "title": "Ortsverband Wedemark | ." }, - "duration": 217, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -30813,7 +30831,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -30860,6 +30878,7 @@ "resolved_hostname": "www.gruene-weilerswist.de" } }, + "icons": {}, "ipv4_addresses": [ "81.169.152.41" ], @@ -30897,12 +30916,12 @@ "http://weilerswist.gruene-euskirchen.de/?feed=rss2", "http://weilerswist.gruene-euskirchen.de/?feed=comments-rss2" ], - "generator": "WordPress 3.8", + "generator": "WordPress 4.9.8", "icon": "http://weilerswist.gruene-euskirchen.de/wp-content/themes/medicaljournal/images/favicon.png", "opengraph": null, "title": "Bündnis 90/Die Grünen OV Weilerswist" }, - "duration": 297, + "duration": 607, "error": null, "responsive": { "document_width": { @@ -30924,12 +30943,12 @@ "https://weilerswist.gruene-euskirchen.de/?feed=rss2", "https://weilerswist.gruene-euskirchen.de/?feed=comments-rss2" ], - "generator": "WordPress 3.8", + "generator": "WordPress 4.9.8", "icon": "http://weilerswist.gruene-euskirchen.de/wp-content/themes/medicaljournal/images/favicon.png", "opengraph": null, "title": "Bündnis 90/Die Grünen OV Weilerswist" }, - "duration": 388, + "duration": 721, "error": null, "responsive": { "document_width": { @@ -30963,9 +30982,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -30978,7 +30996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 664 }, "RESPONSIVE": { "score": 0, @@ -30994,7 +31012,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -31019,9 +31037,10 @@ "resolved_hostname": "www.gruene-wennigsen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wennigsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-wennigsen.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -31063,7 +31082,7 @@ "opengraph": null, "title": "Ortsverband Wennigsen | ." }, - "duration": 210, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -31086,7 +31105,7 @@ "opengraph": null, "title": "Ortsverband Wennigsen | ." }, - "duration": 223, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -31135,7 +31154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -31179,9 +31198,9 @@ "resolved_hostname": "www.gruene-werther.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-werther.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -31239,7 +31258,7 @@ ], "title": "OV Werther" }, - "duration": 65, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -31287,7 +31306,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 65 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -31374,7 +31393,7 @@ "opengraph": null, "title": "Grüne in Westfalen: Startseite" }, - "duration": 60, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -31422,9 +31441,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 60 + "value": 139 }, "RESPONSIVE": { "score": 1, @@ -31440,7 +31459,7 @@ "value": true } }, - "score": 6.0 + "score": 5.5 }, { "details": { @@ -31468,9 +31487,9 @@ "resolved_hostname": "www.gruene-wiesenbach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-wiesenbach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "87.118.118.84" ], @@ -31528,7 +31547,7 @@ ], "title": "Ortsverband Wiesenbach" }, - "duration": 810, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -31576,7 +31595,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 810 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -31616,9 +31635,9 @@ "resolved_hostname": "www.gruene-wilhelmshaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wilhelmshaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31660,7 +31679,7 @@ "opengraph": null, "title": "Grüne Wilhelmshaven: Startseite" }, - "duration": 214, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -31708,7 +31727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -31748,9 +31767,9 @@ "resolved_hostname": "www.gruene-windeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-windeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31792,7 +31811,7 @@ "opengraph": null, "title": "Grüne Windeck: Home" }, - "duration": 206, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -31840,7 +31859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -31883,9 +31902,9 @@ "resolved_hostname": "www.gruene-wipperfuerth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wipperfuerth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -31930,7 +31949,7 @@ "opengraph": null, "title": "GRÜNE in WIPPERFÜRTH.: MIT Herz MIT...REDEN MIT...MACHEN !" }, - "duration": 205, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -31977,7 +31996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -32004,7 +32023,7 @@ "hostnames": { "gruene-wunstorf.com": { "ip_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable": true, "resolved_hostname": "gruene-wunstorf.com" @@ -32013,11 +32032,11 @@ "resolvable": false } }, - "icons": [ - "9cbe28444cbf8c43a48b3fe02cda449a.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s89c07ae93892a952/img/favicon.png?t=1314455677": "9cbe28444cbf8c43a48b3fe02cda449a.png" + }, "ipv4_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable_urls": [ { @@ -32055,7 +32074,7 @@ ], "title": "HOME - Grüne Wunstorf" }, - "duration": 347, + "duration": 306, "error": null, "responsive": { "document_width": { @@ -32103,7 +32122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 347 + "value": 306 }, "RESPONSIVE": { "score": 0, @@ -32203,7 +32222,7 @@ ], "title": "Homepage - Grüne Xhain" }, - "duration": 464, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -32251,7 +32270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 464 + "value": 589 }, "RESPONSIVE": { "score": 1, @@ -32291,9 +32310,9 @@ "resolved_hostname": "www.gruene-zweibruecken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-zweibruecken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32335,7 +32354,7 @@ "opengraph": null, "title": "Grüne Zweibrücken: Startseite" }, - "duration": 180, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -32383,7 +32402,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 180 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -32427,9 +32446,9 @@ "resolved_hostname": "www.grueneboerde.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://grueneboerde.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -32482,7 +32501,7 @@ ], "title": "GRÜNE in der Börde" }, - "duration": 262, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -32529,7 +32548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 125 }, "RESPONSIVE": { "score": 1, @@ -32569,9 +32588,9 @@ "resolved_hostname": "www.gruenedresden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenedresden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32613,7 +32632,7 @@ "opengraph": null, "title": "Kreisverband Dresden: Startseite" }, - "duration": 218, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -32661,7 +32680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -32701,9 +32720,9 @@ "resolved_hostname": "www.gruenekreiskh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekreiskh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32745,7 +32764,7 @@ "opengraph": null, "title": "KREISVERBAND BAD KREUZNACH: Startseite" }, - "duration": 200, + "duration": 458, "error": null, "responsive": { "document_width": { @@ -32793,7 +32812,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 458 }, "RESPONSIVE": { "score": 1, @@ -32833,9 +32852,9 @@ "resolved_hostname": "www.gruenekreisploen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekreisploen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -32877,7 +32896,7 @@ "opengraph": null, "title": "Kreisverband Plön: Home" }, - "duration": 190, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -32925,7 +32944,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -32965,9 +32984,9 @@ "resolved_hostname": "www.gruenemelle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenemelle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -33009,7 +33028,7 @@ "opengraph": null, "title": "Bündnis 90 / Die GRÜNEN Melle: Startseite" }, - "duration": 228, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -33057,7 +33076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -33173,9 +33192,9 @@ "resolved_hostname": "www.pullach-gruene.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://pullach-gruene.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.141.57" ], @@ -33237,7 +33256,7 @@ ], "title": "Die GRÜNEN in Pullach" }, - "duration": 93, + "duration": 448, "error": null, "responsive": { "document_width": { @@ -33283,9 +33302,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 93 + "value": 448 }, "RESPONSIVE": { "score": 1, @@ -33301,7 +33320,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -33328,9 +33347,9 @@ "resolvable": false } }, - "icons": [ - "d5aa0b364bcc575edc585a672998dcbb.jpg" - ], + "icons": { + "http://ugl-muenchhausen.de/wp-content/uploads/2016/01/cropped-cropped-Zwischenablage-32x32.jpg": "d5aa0b364bcc575edc585a672998dcbb.jpg" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -33369,7 +33388,7 @@ "opengraph": null, "title": "UGL | Unabhängige Grüne Liste Münchhausen" }, - "duration": 387, + "duration": 367, "error": null, "responsive": { "document_width": { @@ -33417,7 +33436,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 387 + "value": 367 }, "RESPONSIVE": { "score": 1, @@ -33465,9 +33484,9 @@ "resolved_hostname": "www.ukw-kelkheim.de" } }, - "icons": [ - "21ab4a872462964b3d3581eb7915ce26.png" - ], + "icons": { + "http://ukw-kelkheim.de/wp-content/uploads/2016/08/ukw_icon.png": "21ab4a872462964b3d3581eb7915ce26.png" + }, "ipv4_addresses": [ "217.160.0.34" ], @@ -33520,7 +33539,7 @@ ], "title": "Aktuelles - ukw - Unabhängige Kelkheimer Wählerinitiative" }, - "duration": 255, + "duration": 497, "error": null, "responsive": { "document_width": { @@ -33554,14 +33573,14 @@ ], "title": "Aktuelles - ukw - Unabhängige Kelkheimer Wählerinitiative" }, - "duration": 397, + "duration": 511, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1402, "1920x1080": 1920, - "320x480": 335, - "768x1024": 768 + "320x480": 734, + "768x1024": 1231 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -33602,7 +33621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 326 + "value": 504 }, "RESPONSIVE": { "score": 1, @@ -33642,9 +33661,9 @@ "resolved_hostname": "www.uns-gruener-trier.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://uns-gruener-trier.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -33686,7 +33705,7 @@ "opengraph": null, "title": "Grüne Trier: Startseite" }, - "duration": 203, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -33734,7 +33753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -33775,9 +33794,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -33824,7 +33843,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 257, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -33872,7 +33891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 280 }, "RESPONSIVE": { "score": 0, @@ -33958,7 +33977,7 @@ "opengraph": null, "title": "AGL Eberbach: Aktuelles" }, - "duration": 128, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -33981,7 +34000,7 @@ "opengraph": null, "title": "AGL Eberbach: Aktuelles" }, - "duration": 139, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -34032,7 +34051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 238 }, "RESPONSIVE": { "score": 0, @@ -34077,9 +34096,9 @@ "resolved_hostname": "www.al-gruene.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.roedermarkpartei.de/wp-content/themes/1508354895-2vH2jQ/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.179" ], @@ -34096,7 +34115,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34104,7 +34123,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.al-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34137,7 +34156,7 @@ ], "title": "Andere Liste/ Die Grünen" }, - "duration": 585, + "duration": 526, "error": null, "responsive": { "document_width": { @@ -34170,7 +34189,7 @@ ], "title": "Andere Liste/ Die Grünen" }, - "duration": 544, + "duration": 555, "error": null, "responsive": { "document_width": { @@ -34219,7 +34238,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 564 + "value": 540 }, "RESPONSIVE": { "score": 1, @@ -34334,9 +34353,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34353,7 +34372,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34361,7 +34380,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34395,7 +34414,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 440, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -34443,7 +34462,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 435 }, "RESPONSIVE": { "score": 1, @@ -34487,9 +34506,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34506,7 +34525,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34514,7 +34533,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34548,7 +34567,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 301, + "duration": 389, "error": null, "responsive": { "document_width": { @@ -34596,7 +34615,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -34640,9 +34659,9 @@ "resolved_hostname": "www.blog.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -34659,7 +34678,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34667,7 +34686,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.blog.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -34701,7 +34720,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 391, + "duration": 362, "error": null, "responsive": { "document_width": { @@ -34749,7 +34768,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 391 + "value": 362 }, "RESPONSIVE": { "score": 1, @@ -34789,9 +34808,9 @@ "resolved_hostname": "www.bruehlgruen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://bruehlgruen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -34833,7 +34852,7 @@ "opengraph": null, "title": "Die Brühler Grünen: Aktuelles" }, - "duration": 213, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -34881,7 +34900,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -34960,7 +34979,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Ortsverband Cuxhaven" }, - "duration": 245, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -34983,7 +35002,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Ortsverband Cuxhaven" }, - "duration": 360, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -35033,7 +35052,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 302 + "value": 306 }, "RESPONSIVE": { "score": 0, @@ -35074,9 +35093,10 @@ "resolved_hostname": "www.die-gruenen-bsb.de" } }, - "icons": [ - "8ec59ec3187a8d050bf99a8f1c71772c.ico" - ], + "icons": { + "http://die-gruenen-bsb.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico", + "http://www.die-gruenen-bsb.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico" + }, "ipv4_addresses": [ "217.160.0.252" ], @@ -35124,7 +35144,7 @@ "opengraph": null, "title": "Die Grünen SG Bersenbrück - Home" }, - "duration": 202, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -35147,7 +35167,7 @@ "opengraph": null, "title": "Die Grünen SG Bersenbrück - Home" }, - "duration": 223, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -35197,7 +35217,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 176 }, "RESPONSIVE": { "score": 1, @@ -35237,9 +35257,9 @@ "resolved_hostname": "www.die-gruenen-leverkusen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://die-gruenen-leverkusen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -35281,7 +35301,7 @@ "opengraph": null, "title": "Die GRÜNEN in Leverkusen: Home" }, - "duration": 210, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -35329,7 +35349,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -35370,9 +35390,10 @@ "resolved_hostname": "www.die-gruenen-waltrop.de" } }, - "icons": [ - "ebe1bd75307c54ac2d28034df5499370.ico" - ], + "icons": { + "http://die-gruenen-waltrop.de/favicon.ico": "ebe1bd75307c54ac2d28034df5499370.ico", + "http://www.die-gruenen-waltrop.de/favicon.ico": "ebe1bd75307c54ac2d28034df5499370.ico" + }, "ipv4_addresses": [ "128.127.71.133" ], @@ -35417,7 +35438,7 @@ "opengraph": null, "title": "Die Grünen in Waltrop - Bündnis 90 / Die Grünen OV Waltrop" }, - "duration": 46, + "duration": 49, "error": null, "responsive": { "document_width": { @@ -35440,7 +35461,7 @@ "opengraph": null, "title": "Die Grünen in Waltrop - Bündnis 90 / Die Grünen OV Waltrop" }, - "duration": 45, + "duration": 51, "error": null, "responsive": { "document_width": { @@ -35490,7 +35511,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 46 + "value": 50 }, "RESPONSIVE": { "score": 0, @@ -35531,9 +35552,9 @@ "resolved_hostname": "www.diegrueneninhagenatw.de" } }, - "icons": [ - "8ec59ec3187a8d050bf99a8f1c71772c.ico" - ], + "icons": { + "http://www.diegrueneninhagenatw.de/favicon.ico": "8ec59ec3187a8d050bf99a8f1c71772c.ico" + }, "ipv4_addresses": [ "46.30.213.20" ], @@ -35550,7 +35571,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35558,7 +35579,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.diegrueneninhagenatw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35581,7 +35602,7 @@ "opengraph": null, "title": "Die Grünen in Hagen a.T.W. - Home" }, - "duration": 852, + "duration": 473, "error": null, "responsive": { "document_width": { @@ -35604,7 +35625,7 @@ "opengraph": null, "title": "Die Grünen in Hagen a.T.W. - Home" }, - "duration": 480, + "duration": 479, "error": null, "responsive": { "document_width": { @@ -35654,7 +35675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 666 + "value": 476 }, "RESPONSIVE": { "score": 0, @@ -35711,7 +35732,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35719,7 +35740,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.eichsfeldgruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -35739,7 +35760,7 @@ "opengraph": null, "title": "" }, - "duration": 56, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -35762,7 +35783,7 @@ "opengraph": null, "title": "" }, - "duration": 77, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -35813,7 +35834,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -35904,7 +35925,7 @@ "opengraph": null, "title": "GAL Bamberg: Aktuell" }, - "duration": 189, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -35930,7 +35951,7 @@ "opengraph": null, "title": "GAL Bamberg: Aktuell" }, - "duration": 182, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -35980,7 +36001,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 203 }, "RESPONSIVE": { "score": 0, @@ -36065,7 +36086,7 @@ "opengraph": null, "title": "Grüne und Alternative Liste Uttenreuth (GAL)" }, - "duration": 62, + "duration": 90, "error": null, "responsive": { "document_width": { @@ -36088,7 +36109,7 @@ "opengraph": null, "title": "Grüne und Alternative Liste Uttenreuth (GAL)" }, - "duration": 63, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -36139,7 +36160,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 82 }, "RESPONSIVE": { "score": 0, @@ -36218,7 +36239,7 @@ "opengraph": null, "title": "Die Grünen Weinheim |" }, - "duration": 513, + "duration": 285, "error": null, "responsive": { "document_width": { @@ -36266,7 +36287,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 513 + "value": 285 }, "RESPONSIVE": { "score": 0, @@ -36308,9 +36329,9 @@ "resolved_hostname": "www.galb.de" } }, - "icons": [ - "b15c61968c780e09ed43bbe05688fc62.ico" - ], + "icons": { + "http://www.galb.de/favicon.ico": "b15c61968c780e09ed43bbe05688fc62.ico" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -36355,7 +36376,7 @@ "opengraph": null, "title": "GALB - Grün-alternative Liste Bischofsheim" }, - "duration": 65, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -36378,7 +36399,7 @@ "opengraph": null, "title": "GALB - Grün-alternative Liste Bischofsheim" }, - "duration": 63, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -36513,7 +36534,7 @@ "opengraph": null, "title": "Grüne Liste Gaiberg e.V. - Startseite" }, - "duration": 68, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -36536,7 +36557,7 @@ "opengraph": null, "title": "Grüne Liste Gaiberg e.V. - Startseite" }, - "duration": 63, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -36587,7 +36608,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 67 }, "RESPONSIVE": { "score": 0, @@ -36626,9 +36647,9 @@ "resolvable": false } }, - "icons": [ - "d30f85678cdff251d9cecea21d32060f.ico" - ], + "icons": { + "http://www.glb-im-web.de/favicon.ico": "d30f85678cdff251d9cecea21d32060f.ico" + }, "ipv4_addresses": [ "81.169.145.78" ], @@ -36657,7 +36678,7 @@ "opengraph": null, "title": "GLB - Grüne Liste Büttelborn" }, - "duration": 68, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -36706,7 +36727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -36792,7 +36813,7 @@ "opengraph": null, "title": "Grüne Liste Trebur" }, - "duration": 71, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -36866,7 +36887,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 80 }, "RESPONSIVE": { "score": 0, @@ -36906,9 +36927,9 @@ "resolved_hostname": "www.gruene-aachen.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-aachen.de/typo3conf/ext/gac/Resources/Public/Images/fav.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.117.82.81" ], @@ -36963,7 +36984,7 @@ ], "title": "Home - BÜNDNIS 90/DIE GRÜNEN OV Aachen" }, - "duration": 118, + "duration": 114, "error": null, "responsive": { "document_width": { @@ -37012,7 +37033,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 118 + "value": 114 }, "RESPONSIVE": { "score": 1, @@ -37051,9 +37072,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-aalen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -37082,7 +37103,7 @@ "opengraph": null, "title": "Grüne Ostwürttemberg: HOME" }, - "duration": 643, + "duration": 713, "error": null, "responsive": { "document_width": { @@ -37130,7 +37151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 643 + "value": 713 }, "RESPONSIVE": { "score": 0, @@ -37175,9 +37196,9 @@ "resolved_hostname": "www.gruene-adelebsen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-adelebsen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.252.18.61" ], @@ -37235,7 +37256,7 @@ ], "title": "Ortsverband Adelebsen" }, - "duration": 411, + "duration": 408, "error": null, "responsive": { "document_width": { @@ -37283,7 +37304,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 411 + "value": 408 }, "RESPONSIVE": { "score": 1, @@ -37319,8 +37340,8 @@ }, "www.gruene-ahaus.de": { "ip_addresses": [ - "81.88.42.154", - "81.88.32.178" + "81.88.32.178", + "81.88.42.154" ], "resolvable": true, "resolved_hostname": "www.gruene-ahaus.de" @@ -37371,7 +37392,7 @@ "opengraph": null, "title": "B90 Die Grnen in Ahaus" }, - "duration": 80, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -37394,7 +37415,7 @@ "opengraph": null, "title": "B90 Die Grnen in Ahaus" }, - "duration": 88, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -37445,7 +37466,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 84 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -37485,9 +37506,9 @@ "resolved_hostname": "www.gruene-ahlen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ahlen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -37529,7 +37550,7 @@ "opengraph": null, "title": "Ortsverband Ahlen: Aktuelles" }, - "duration": 214, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -37577,7 +37598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -37617,6 +37638,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -37645,7 +37667,7 @@ "opengraph": null, "title": "Grüne Kreis Alb-Donau: Startseite" }, - "duration": 333, + "duration": 531, "error": null, "responsive": { "document_width": { @@ -37668,7 +37690,7 @@ "opengraph": null, "title": "Grüne Kreis Alb-Donau: Startseite" }, - "duration": 407, + "duration": 395, "error": null, "responsive": { "document_width": { @@ -37702,9 +37724,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -37718,7 +37739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 370 + "value": 463 }, "RESPONSIVE": { "score": 0, @@ -37735,7 +37756,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -37762,9 +37783,9 @@ "resolved_hostname": "www.gruene-allach-untermenzing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-allach-untermenzing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -37812,7 +37833,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Allach/Untermenzing: Startseite Grüne Allach/Untermenzing" }, - "duration": 115, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -37858,9 +37879,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 115 + "value": 94 }, "RESPONSIVE": { "score": 0, @@ -37876,7 +37897,7 @@ "value": true } }, - "score": 6.5 + "score": 7.0 }, { "details": { @@ -37906,9 +37927,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.70" ], @@ -37925,7 +37947,7 @@ } ], "responsive": { - "min_width": 570, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -37943,6 +37965,7 @@ "icon": "http://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -37950,13 +37973,13 @@ ], "title": "Bündnis 90 / Die Grünen OV Alpen" }, - "duration": 351, + "duration": 387, "error": null, "responsive": { "document_width": { "1024x768": 1065, "1920x1080": 1920, - "320x480": 570, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -37976,6 +37999,7 @@ "icon": "https://gruene-alpen.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -37983,13 +38007,13 @@ ], "title": "Bündnis 90 / Die Grünen OV Alpen" }, - "duration": 415, + "duration": 404, "error": null, "responsive": { "document_width": { "1024x768": 1065, "1920x1080": 1920, - "320x480": 570, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -38031,12 +38055,12 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 396 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -38048,7 +38072,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -38076,9 +38100,9 @@ "resolved_hostname": "www.gruene-alsdorf.de" } }, - "icons": [ - "732bd7f50ca99981afb8252c153a7fb7.png" - ], + "icons": { + "http://gruene-region-aachen.de/alsdorf/wp/wp-content/uploads/2014/04/favicon.png": "732bd7f50ca99981afb8252c153a7fb7.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -38095,7 +38119,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -38103,7 +38127,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-alsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -38130,7 +38154,7 @@ "opengraph": null, "title": "Grüne Alsdorf" }, - "duration": 515, + "duration": 505, "error": null, "responsive": { "document_width": { @@ -38157,7 +38181,7 @@ "opengraph": null, "title": "Grüne Alsdorf" }, - "duration": 480, + "duration": 502, "error": null, "responsive": { "document_width": { @@ -38206,7 +38230,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 498 + "value": 504 }, "RESPONSIVE": { "score": 1, @@ -38246,9 +38270,9 @@ "resolved_hostname": "www.gruene-altenberge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-altenberge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38290,7 +38314,7 @@ "opengraph": null, "title": "Grüner OV Altenberge: Home" }, - "duration": 181, + "duration": 169, "error": null, "responsive": { "document_width": { @@ -38338,7 +38362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 169 }, "RESPONSIVE": { "score": 1, @@ -38378,9 +38402,9 @@ "resolved_hostname": "www.gruene-altona.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-altona.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38422,7 +38446,7 @@ "opengraph": null, "title": "GRÜNE Altona: Home" }, - "duration": 187, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -38470,7 +38494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 244 }, "RESPONSIVE": { "score": 1, @@ -38514,9 +38538,9 @@ "resolved_hostname": "www.gruene-amelinghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-amelinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.80.210.150" ], @@ -38574,7 +38598,7 @@ ], "title": "- Grüne Amelinghausen" }, - "duration": 380, + "duration": 310, "error": null, "responsive": { "document_width": { @@ -38622,7 +38646,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 380 + "value": 310 }, "RESPONSIVE": { "score": 1, @@ -38662,9 +38686,9 @@ "resolved_hostname": "www.gruene-ammerland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ammerland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -38706,7 +38730,7 @@ "opengraph": null, "title": "GRÜNE KV Ammerland: Home" }, - "duration": 215, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -38754,7 +38778,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -38797,9 +38821,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-anhalt-bitterfeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.74" ], @@ -38841,7 +38865,7 @@ ], "title": "Kreisverband Anhalt-Bitterfeld | BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 346, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -38886,9 +38910,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 346 + "value": 94 }, "RESPONSIVE": { "score": 1, @@ -38905,7 +38929,7 @@ "value": false } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -38916,7 +38940,7 @@ "hostnames": { "gruene-anroechte.de": { "ip_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable": true, "resolved_hostname": "gruene-anroechte.de" @@ -38926,7 +38950,7 @@ } }, "ipv4_addresses": [ - "52.210.189.158" + "52.17.84.106" ], "resolvable_urls": [ { @@ -38949,7 +38973,7 @@ "urlchecks": [ { "content": null, - "duration": 276, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -38998,7 +39022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -39039,9 +39063,9 @@ "resolved_hostname": "www.gruene-ansbach.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-ansbach.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -39083,7 +39107,7 @@ "opengraph": null, "title": "Die Grünen Ansbach: Die Grünen in Stadt und Landkreis Ansbach" }, - "duration": 142, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -39131,7 +39155,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 142 + "value": 162 }, "RESPONSIVE": { "score": 1, @@ -39175,9 +39199,9 @@ "resolved_hostname": "www.gruene-arnsberg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-arnsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "148.251.67.105" ], @@ -39237,7 +39261,7 @@ ], "title": "Grüne Arnsberg" }, - "duration": 584, + "duration": 761, "error": null, "responsive": { "document_width": { @@ -39285,7 +39309,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 584 + "value": 761 }, "RESPONSIVE": { "score": 1, @@ -39325,9 +39349,9 @@ "resolved_hostname": "www.gruene-artland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-artland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -39369,7 +39393,7 @@ "opengraph": null, "title": "Die Grünen im Artland: Startseite" }, - "duration": 161, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -39417,7 +39441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 161 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -39502,7 +39526,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 216, + "duration": 239, "error": null, "responsive": { "document_width": { @@ -39525,7 +39549,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 216, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -39576,7 +39600,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 222 }, "RESPONSIVE": { "score": 0, @@ -39616,9 +39640,9 @@ "resolved_hostname": "www.gruene-aurich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-aurich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -39660,7 +39684,7 @@ "opengraph": null, "title": "Kreisverband Aurich Norden: Startseite" }, - "duration": 307, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -39708,7 +39732,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 307 + "value": 257 }, "RESPONSIVE": { "score": 1, @@ -39793,7 +39817,7 @@ "opengraph": null, "title": null }, - "duration": 62, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -39816,7 +39840,7 @@ "opengraph": null, "title": null }, - "duration": 59, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -39867,7 +39891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -39948,7 +39972,7 @@ "urlchecks": [ { "content": null, - "duration": 178, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -39964,7 +39988,7 @@ }, { "content": null, - "duration": 170, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -40015,7 +40039,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 174 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -40057,9 +40081,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-bad-muenstereifel.de/blog/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.88" ], @@ -40094,7 +40118,7 @@ "opengraph": null, "title": "Startseite - Bündnis 90 DIE GRÜNEN Ortsverband Bad Münstereifel" }, - "duration": 134, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -40142,7 +40166,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 148 }, "RESPONSIVE": { "score": 0, @@ -40188,9 +40212,9 @@ "resolved_hostname": "www.gruene-bad-soden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grüne-bad-soden.de/gruene-bad-soden/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.132.30" ], @@ -40223,7 +40247,7 @@ } ], "responsive": { - "min_width": 404, + "min_width": 329, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -40249,13 +40273,13 @@ ], "title": "B90/Grüne Bad Soden" }, - "duration": 494, + "duration": 499, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 404, + "320x480": 329, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -40283,13 +40307,13 @@ ], "title": "B90/Grüne Bad Soden" }, - "duration": 485, + "duration": 502, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 404, + "320x480": 329, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -40332,7 +40356,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 490 + "value": 500 }, "RESPONSIVE": { "score": 1, @@ -40376,9 +40400,9 @@ "resolved_hostname": "www.gruene-badoeynhausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-badoeynhausen.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.108.41.20" ], @@ -40430,7 +40454,7 @@ ], "title": "Die Grünen Bad Oeynhausen" }, - "duration": 554, + "duration": 752, "error": null, "responsive": { "document_width": { @@ -40477,7 +40501,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 752 }, "RESPONSIVE": { "score": 1, @@ -40522,9 +40546,9 @@ "resolved_hostname": "www.gruene-badschoenborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-badschoenborn.de/gruenewelle/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.74.158.150" ], @@ -40577,7 +40601,7 @@ ], "title": "Grüne Liste Bad Schönborn" }, - "duration": 612, + "duration": 614, "error": null, "responsive": { "document_width": { @@ -40624,7 +40648,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 612 + "value": 614 }, "RESPONSIVE": { "score": 1, @@ -40664,9 +40688,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-badurach.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-badurach.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -40698,7 +40723,7 @@ "opengraph": null, "title": "GRÜNE BAD URACH/DETTINGEN/HÜLBEN/GRABENSTETTEN: Ortsverband Bad Urach" }, - "duration": 488, + "duration": 534, "error": null, "responsive": { "document_width": { @@ -40721,7 +40746,7 @@ "opengraph": null, "title": "GRÜNE BAD URACH/DETTINGEN/HÜLBEN/GRABENSTETTEN: Ortsverband Bad Urach" }, - "duration": 100, + "duration": 788, "error": null, "responsive": { "document_width": { @@ -40770,7 +40795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 661 }, "RESPONSIVE": { "score": 1, @@ -40815,9 +40840,9 @@ "resolved_hostname": "www.gruene-badvilbel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-badvilbel.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.173.102.23" ], @@ -40877,7 +40902,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Bad Vilbel - Willkommen bei den Grünen in Bad VilbelBündnis 90/DIE GRÜNEN Bad Vilbel" }, - "duration": 680, + "duration": 122, "error": null, "responsive": { "document_width": { @@ -40925,7 +40950,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 680 + "value": 122 }, "RESPONSIVE": { "score": 1, @@ -40970,9 +40995,10 @@ "resolved_hostname": "www.gruene-bammental.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-bammental.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-bammental.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -40999,7 +41025,7 @@ } ], "responsive": { - "min_width": 351, + "min_width": 322, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" ] @@ -41018,13 +41044,13 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 891, + "duration": 30, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 351, + "320x480": 322, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" @@ -41045,13 +41071,13 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 993, + "duration": 945, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 351, + "320x480": 322, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" @@ -41093,7 +41119,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 942 + "value": 488 }, "RESPONSIVE": { "score": 1, @@ -41137,9 +41163,9 @@ "resolved_hostname": "www.gruene-barnim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-barnim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -41197,7 +41223,7 @@ ], "title": "- Kreisverband Barnim, Brandenburg" }, - "duration": 741, + "duration": 974, "error": null, "responsive": { "document_width": { @@ -41245,7 +41271,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 741 + "value": 974 }, "RESPONSIVE": { "score": 1, @@ -41285,9 +41311,9 @@ "resolved_hostname": "www.gruene-bassum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bassum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -41329,7 +41355,7 @@ "opengraph": null, "title": "Grüne in Bassum: Startseite" }, - "duration": 219, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -41377,7 +41403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -41420,9 +41446,9 @@ "resolved_hostname": "www.gruene-bautzen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-bautzen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -41470,7 +41496,7 @@ "opengraph": null, "title": "Homepage - BÜNDNIS 90/DIE GRÜNEN Kreisverband Bautzen – Zwjazk 90/Zeleni Budyšin" }, - "duration": 239, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -41518,7 +41544,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 231 }, "RESPONSIVE": { "score": 0, @@ -41557,9 +41583,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bc.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -41588,7 +41614,7 @@ "opengraph": null, "title": "Grüne Kreisverband Biberach: Aktuell" }, - "duration": 613, + "duration": 741, "error": null, "responsive": { "document_width": { @@ -41636,7 +41662,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 613 + "value": 741 }, "RESPONSIVE": { "score": 0, @@ -41677,9 +41703,9 @@ "resolved_hostname": "www.gruene-beckum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-beckum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -41721,7 +41747,7 @@ "opengraph": null, "title": "Ehrlich.Gut.Grün für Beckum: Startseite" }, - "duration": 198, + "duration": 263, "error": null, "responsive": { "document_width": { @@ -41769,7 +41795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 263 }, "RESPONSIVE": { "score": 1, @@ -41839,7 +41865,7 @@ "opengraph": null, "title": "Herzlich willkommen bei den Gruenen in Bedburg-Hau" }, - "duration": 125, + "duration": 121, "error": null, "responsive": { "document_width": { @@ -41888,7 +41914,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 125 + "value": 121 }, "RESPONSIVE": { "score": 1, @@ -41959,7 +41985,7 @@ "opengraph": null, "title": "STRATO" }, - "duration": 81, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -42009,7 +42035,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 81 + "value": 69 }, "RESPONSIVE": { "score": 0, @@ -42053,9 +42079,9 @@ "resolved_hostname": "www.gruene-bergedorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergedorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42100,7 +42126,7 @@ "opengraph": null, "title": "Grüne Bergedorf: Home" }, - "duration": 191, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -42147,7 +42173,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -42187,9 +42213,9 @@ "resolved_hostname": "www.gruene-bergheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bergheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42231,7 +42257,7 @@ "opengraph": null, "title": "GRÜNE Bergheim: Startseite" }, - "duration": 171, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -42279,7 +42305,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 163 }, "RESPONSIVE": { "score": 1, @@ -42319,9 +42345,9 @@ "resolved_hostname": "www.gruene-bergischgladbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergischgladbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42363,7 +42389,7 @@ "opengraph": null, "title": "GRÜNE BERGISCH GLADBACH: Home" }, - "duration": 194, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -42411,7 +42437,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -42572,7 +42598,7 @@ ], "title": "GRÜNE Bielefeld" }, - "duration": 672, + "duration": 630, "error": null, "responsive": { "document_width": { @@ -42621,7 +42647,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 672 + "value": 630 }, "RESPONSIVE": { "score": 1, @@ -42666,9 +42692,10 @@ "resolved_hostname": "www.gruene-birkenau.de" } }, - "icons": [ - "eec3b00d19c99ce60fd19e6bc55abfb2.ico" - ], + "icons": { + "http://gruene-birkenau.de/templates/gruene13/favicon.ico": "eec3b00d19c99ce60fd19e6bc55abfb2.ico", + "http://www.gruene-birkenau.de/templates/gruene13/favicon.ico": "eec3b00d19c99ce60fd19e6bc55abfb2.ico" + }, "ipv4_addresses": [ "46.252.18.205" ], @@ -42720,7 +42747,7 @@ "opengraph": null, "title": "www.gruene-birkenau.de" }, - "duration": 310, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -42747,7 +42774,7 @@ "opengraph": null, "title": "www.gruene-birkenau.de" }, - "duration": 295, + "duration": 317, "error": null, "responsive": { "document_width": { @@ -42796,7 +42823,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 302 + "value": 308 }, "RESPONSIVE": { "score": 0, @@ -42836,9 +42863,9 @@ "resolved_hostname": "www.gruene-bitburg-pruem.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bitburg-pruem.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -42880,7 +42907,7 @@ "opengraph": null, "title": "Kreisverband Bitburg-Prüm: Startseite" }, - "duration": 231, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -42928,7 +42955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -43005,7 +43032,7 @@ "urlchecks": [ { "content": null, - "duration": 56, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -43021,7 +43048,7 @@ }, { "content": null, - "duration": 57, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -43037,7 +43064,7 @@ }, { "content": null, - "duration": 129, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -43053,7 +43080,7 @@ }, { "content": null, - "duration": 131, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -43101,9 +43128,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 93 + "value": 105 }, "RESPONSIVE": { "score": 1, @@ -43119,7 +43146,7 @@ "value": true } }, - "score": 7.0 + "score": 6.5 }, { "details": { @@ -43144,9 +43171,9 @@ "resolved_hostname": "www.gruene-blomberg.de" } }, - "icons": [ - "bdfb10eae0a5c3da60676ab1f02e0e0b.ico" - ], + "icons": { + "http://www.gruene-blomberg.de/favicon.ico": "bdfb10eae0a5c3da60676ab1f02e0e0b.ico" + }, "ipv4_addresses": [ "217.160.223.18" ], @@ -43191,7 +43218,7 @@ "opengraph": null, "title": "Blombergs GRÜNE Seiten - Das Internetangebot von Bündnis 90 / DIE GRÜNEN" }, - "duration": 63, + "duration": 128, "error": null, "responsive": { "document_width": { @@ -43214,7 +43241,7 @@ "opengraph": null, "title": "Blombergs GRÜNE Seiten - Das Internetangebot von Bündnis 90 / DIE GRÜNEN" }, - "duration": 69, + "duration": 83, "error": null, "responsive": { "document_width": { @@ -43262,9 +43289,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 66 + "value": 106 }, "RESPONSIVE": { "score": 0, @@ -43280,7 +43307,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -43304,9 +43331,9 @@ "resolved_hostname": "www.gruene-bochum.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bochum.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -43348,7 +43375,7 @@ "opengraph": null, "title": "GRÜNE IN BOCHUM: Startseite" }, - "duration": 210, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -43396,7 +43423,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -43456,7 +43483,7 @@ "urlchecks": [ { "content": null, - "duration": 76, + "duration": 89, "error": null, "responsive": { "document_width": { @@ -43506,7 +43533,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 76 + "value": 89 }, "RESPONSIVE": { "score": 0, @@ -43552,9 +43579,10 @@ "resolved_hostname": "www.gruene-bohmte.de" } }, - "icons": [ - "0deb279b67c6b805d11e27fc8df48f3a.ico" - ], + "icons": { + "http://gruene-bohmte.de/templates/bohmte/favicon.ico": "0deb279b67c6b805d11e27fc8df48f3a.ico", + "http://www.gruene-bohmte.de/templates/bohmte/favicon.ico": "0deb279b67c6b805d11e27fc8df48f3a.ico" + }, "ipv4_addresses": [ "178.254.50.123" ], @@ -43603,7 +43631,7 @@ "opengraph": null, "title": "Buendnis 90/Die Gruenen, OV Bohmte - Bündnis 90/Die Grünen" }, - "duration": 232, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -43630,7 +43658,7 @@ "opengraph": null, "title": "Buendnis 90/Die Gruenen, OV Bohmte - Bündnis 90/Die Grünen" }, - "duration": 282, + "duration": 256, "error": null, "responsive": { "document_width": { @@ -43679,7 +43707,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 294 }, "RESPONSIVE": { "score": 0, @@ -43719,9 +43747,9 @@ "resolved_hostname": "www.gruene-bottrop.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bottrop.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -43763,7 +43791,7 @@ "opengraph": null, "title": "GRÜNE IN BOTTROP: Startseite" }, - "duration": 194, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -43811,7 +43839,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -43854,9 +43882,9 @@ "resolvable": false } }, - "icons": [ - "d3067746e5ec12230b13fc7fedfbdaf1.ico" - ], + "icons": { + "http://www.gruene-brachttal.de/favicon.ico": "d3067746e5ec12230b13fc7fedfbdaf1.ico" + }, "ipv4_addresses": [ "81.169.145.75" ], @@ -43892,7 +43920,7 @@ "opengraph": null, "title": "Brachttal Grüne | Die Brachttal Grünen bitten zur Diskussion" }, - "duration": 273, + "duration": 283, "error": null, "responsive": { "document_width": { @@ -43940,7 +43968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 283 }, "RESPONSIVE": { "score": 0, @@ -43982,9 +44010,9 @@ "resolved_hostname": "www.gruene-bramsche.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-bramsche.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -44032,7 +44060,7 @@ ], "title": "Grüne Ortsverband Bramsche ::\tWir machen das klar." }, - "duration": 405, + "duration": 430, "error": null, "responsive": { "document_width": { @@ -44058,7 +44086,7 @@ ], "title": "Grüne Ortsverband Bramsche ::\tWir machen das klar." }, - "duration": 460, + "duration": 453, "error": null, "responsive": { "document_width": { @@ -44108,7 +44136,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 432 + "value": 442 }, "RESPONSIVE": { "score": 0, @@ -44148,9 +44176,9 @@ "resolved_hostname": "www.gruene-bremen-mitte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bremen-mitte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44192,7 +44220,7 @@ "opengraph": null, "title": "Grüne Mitte - Östliche Vorstadt: Startseite" }, - "duration": 220, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -44240,7 +44268,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -44280,9 +44308,9 @@ "resolved_hostname": "www.gruene-bremen-nord.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen-nord.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44324,7 +44352,7 @@ "opengraph": null, "title": "KV Grüne Bremen-Nord: Startseite" }, - "duration": 218, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -44372,7 +44400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -44412,9 +44440,9 @@ "resolved_hostname": "www.gruene-bremerhaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremerhaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -44456,7 +44484,7 @@ "opengraph": null, "title": "Kreisverband Bremerhaven: Home" }, - "duration": 195, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -44504,7 +44532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -44549,9 +44577,9 @@ "resolved_hostname": "www.gruene-brookmerland-hinte-suedbrookmerland.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruenerovbhsbl.alfahosting.org/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.134.8" ], @@ -44599,7 +44627,7 @@ "opengraph": null, "title": null }, - "duration": 69, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -44632,7 +44660,7 @@ ], "title": "Ortsverband" }, - "duration": 226, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -44751,7 +44779,7 @@ "opengraph": null, "title": "Bündnis90 / Die Grünen Ortsverband Bruchköbel" }, - "duration": 55, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -44801,7 +44829,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 55 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -44846,6 +44874,7 @@ "resolved_hostname": "www.gruene-brueggen.de" } }, + "icons": {}, "ipv4_addresses": [ "5.35.225.200" ], @@ -44904,7 +44933,7 @@ ], "title": "B'90/GRÜNE Brüggen" }, - "duration": 671, + "duration": 667, "error": null, "responsive": { "document_width": { @@ -44937,9 +44966,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -44952,7 +44980,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 671 + "value": 667 }, "RESPONSIVE": { "score": 1, @@ -44968,7 +44996,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -44992,9 +45020,9 @@ "resolved_hostname": "www.gruene-bueckeburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schaumburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45036,7 +45064,7 @@ "opengraph": null, "title": "Stadtverband Bückeburg: Stadtverband Bückeburg" }, - "duration": 212, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -45084,7 +45112,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -45128,9 +45156,10 @@ "resolved_hostname": "www.gruene-buende.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-buende.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-buende.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.48" ], @@ -45182,7 +45211,7 @@ ], "title": "Grünspecht" }, - "duration": 440, + "duration": 400, "error": null, "responsive": { "document_width": { @@ -45215,7 +45244,7 @@ ], "title": "Grünspecht" }, - "duration": 504, + "duration": 560, "error": null, "responsive": { "document_width": { @@ -45263,7 +45292,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 472 + "value": 480 }, "RESPONSIVE": { "score": 1, @@ -45306,9 +45335,9 @@ "resolved_hostname": "www.gruene-burgwedel.de" } }, - "icons": [ - "7b112a77ea87f04a01274c624274a369.ico" - ], + "icons": { + "http://www.gruene-burgwedel.de/wp-content/themes/blum-o-matic/favicon.ico": "7b112a77ea87f04a01274c624274a369.ico" + }, "ipv4_addresses": [ "80.237.133.239" ], @@ -45325,7 +45354,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -45333,7 +45362,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-burgwedel.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -45356,7 +45385,7 @@ "opengraph": null, "title": "Startseite - Die Grünen in Burgwedel" }, - "duration": 565, + "duration": 519, "error": null, "responsive": { "document_width": { @@ -45404,7 +45433,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 519 }, "RESPONSIVE": { "score": 0, @@ -45444,9 +45473,9 @@ "resolved_hostname": "www.gruene-buxtehude.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-buxtehude.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45488,7 +45517,7 @@ "opengraph": null, "title": "GRÜNE Buxtehude: Herzlich Willkommen beim Ortsverband Buxtehude-Apensen" }, - "duration": 278, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -45536,7 +45565,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -45580,9 +45609,9 @@ "resolved_hostname": "www.gruene-castrop-rauxel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-castrop-rauxel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.133.104.29" ], @@ -45640,7 +45669,7 @@ ], "title": "Stadtverband Castrop-Rauxel" }, - "duration": 585, + "duration": 552, "error": null, "responsive": { "document_width": { @@ -45688,7 +45717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 585 + "value": 552 }, "RESPONSIVE": { "score": 1, @@ -45728,9 +45757,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45772,7 +45801,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 219, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -45820,7 +45849,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -45860,9 +45889,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -45904,7 +45933,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 316, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -45952,7 +45981,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 316 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -45992,9 +46021,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46036,7 +46065,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 196, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -46084,7 +46113,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -46124,9 +46153,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46168,7 +46197,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 200, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -46216,7 +46245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -46256,9 +46285,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -46300,7 +46329,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 220, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -46348,7 +46377,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -46435,7 +46464,7 @@ "opengraph": null, "title": "Grüne Cochem Zell | Grün wirkt!" }, - "duration": 469, + "duration": 461, "error": null, "responsive": { "document_width": { @@ -46462,7 +46491,7 @@ "opengraph": null, "title": "Grüne Cochem Zell | Grün wirkt!" }, - "duration": 563, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -46511,7 +46540,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 516 + "value": 343 }, "RESPONSIVE": { "score": 0, @@ -46552,9 +46581,10 @@ "resolved_hostname": "www.gruene-coe.de" } }, - "icons": [ - "52582e72bd938205498521c6b509c49d.ico" - ], + "icons": { + "https://gruene-coe.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico", + "https://www.gruene-coe.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -46593,7 +46623,7 @@ "opengraph": null, "title": "Die Grünen KV Coesfeld - Startseite" }, - "duration": 257, + "duration": 242, "error": null, "responsive": { "document_width": { @@ -46616,7 +46646,7 @@ "opengraph": null, "title": "Die Grünen KV Coesfeld - Startseite" }, - "duration": 587, + "duration": 620, "error": null, "responsive": { "document_width": { @@ -46665,7 +46695,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 431 }, "RESPONSIVE": { "score": 0, @@ -46706,9 +46736,10 @@ "resolved_hostname": "www.gruene-coesfeld.de" } }, - "icons": [ - "52582e72bd938205498521c6b509c49d.ico" - ], + "icons": { + "https://gruene-coesfeld.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico", + "https://www.gruene-coesfeld.de/favicon.ico": "52582e72bd938205498521c6b509c49d.ico" + }, "ipv4_addresses": [ "5.175.14.21" ], @@ -46747,7 +46778,7 @@ "opengraph": null, "title": "Die Grünen OV Coesfeld - Startseite" }, - "duration": 284, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -46770,7 +46801,7 @@ "opengraph": null, "title": "Die Grünen OV Coesfeld - Startseite" }, - "duration": 401, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -46819,7 +46850,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 300 }, "RESPONSIVE": { "score": 0, @@ -46859,9 +46890,9 @@ "resolved_hostname": "www.gruene-cuxhaven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kv-cuxhaven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "80.67.16.8" ], @@ -46878,7 +46909,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -46886,7 +46917,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-cuxhaven.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -46909,7 +46940,7 @@ "opengraph": null, "title": "Kreisverband Cuxhaven: Home" }, - "duration": 257, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -46957,7 +46988,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -47035,7 +47066,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -47051,7 +47082,7 @@ }, { "content": null, - "duration": 62, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -47102,7 +47133,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -47183,7 +47214,7 @@ "opengraph": null, "title": "Grüne Darmstadt Startseite | gruene-darmstadt.de" }, - "duration": 131, + "duration": 124, "error": null, "responsive": { "document_width": { @@ -47232,7 +47263,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 131 + "value": 124 }, "RESPONSIVE": { "score": 1, @@ -47272,9 +47303,9 @@ "resolved_hostname": "www.gruene-datteln.de" } }, - "icons": [ - "9baf3023ef50148103c1f0996ed96874.ico" - ], + "icons": { + "https://www.gruene-datteln.de/favicon_d1_res.ico": "9baf3023ef50148103c1f0996ed96874.ico" + }, "ipv4_addresses": [ "217.160.0.61" ], @@ -47316,7 +47347,7 @@ "opengraph": null, "title": "Home" }, - "duration": 184, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -47364,7 +47395,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 177 }, "RESPONSIVE": { "score": 0, @@ -47409,9 +47440,9 @@ "resolved_hostname": "www.gruene-dessau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-dessau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.63.49.198" ], @@ -47470,7 +47501,7 @@ ], "title": "-" }, - "duration": 643, + "duration": 625, "error": null, "responsive": { "document_width": { @@ -47518,7 +47549,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 643 + "value": 625 }, "RESPONSIVE": { "score": 0, @@ -47558,9 +47589,9 @@ "resolved_hostname": "www.gruene-detmold.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-detmold.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47602,7 +47633,7 @@ "opengraph": null, "title": "Ortsverband Detmold: Start" }, - "duration": 210, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -47650,7 +47681,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -47690,9 +47721,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47734,7 +47765,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 204, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -47782,7 +47813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 206 }, "RESPONSIVE": { "score": 0, @@ -47822,9 +47853,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47866,7 +47897,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 203, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -47914,7 +47945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 212 }, "RESPONSIVE": { "score": 0, @@ -47954,9 +47985,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -47998,7 +48029,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 430, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -48046,7 +48077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 216 }, "RESPONSIVE": { "score": 0, @@ -48086,9 +48117,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48130,7 +48161,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 233, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -48178,7 +48209,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 193 }, "RESPONSIVE": { "score": 0, @@ -48218,9 +48249,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48262,7 +48293,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 276, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -48310,7 +48341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 199 }, "RESPONSIVE": { "score": 0, @@ -48350,9 +48381,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48394,7 +48425,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 238, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -48442,7 +48473,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 196 }, "RESPONSIVE": { "score": 0, @@ -48482,9 +48513,9 @@ "resolved_hostname": "www.gruene-diepholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-diepholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -48526,7 +48557,7 @@ "opengraph": null, "title": "Kreisverband Diepholz: Home" }, - "duration": 241, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -48574,7 +48605,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 210 }, "RESPONSIVE": { "score": 0, @@ -48618,9 +48649,9 @@ "resolved_hostname": "www.gruene-dillingen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dillingen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -48647,7 +48678,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -48666,13 +48697,13 @@ "opengraph": null, "title": "Die Grünen in Dillingen - BÜNDNIS 90/DIE GRÜNEN Dillingen/Saar" }, - "duration": 318, + "duration": 294, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -48713,7 +48744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 318 + "value": 294 }, "RESPONSIVE": { "score": 1, @@ -48798,7 +48829,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 78, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -48821,7 +48852,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 87, + "duration": 93, "error": null, "responsive": { "document_width": { @@ -48872,7 +48903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 82 + "value": 84 }, "RESPONSIVE": { "score": 0, @@ -48916,9 +48947,9 @@ "resolved_hostname": "www.gruene-dinslaken.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-dinslaken.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.196" ], @@ -48976,7 +49007,7 @@ ], "title": "Grüne Dinslaken - Homepage von Bündnis '90 / DIE GRÜNEN in DinslakenGrüne Dinslaken" }, - "duration": 970, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -49022,9 +49053,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 970 + "value": 87 }, "RESPONSIVE": { "score": 0, @@ -49040,7 +49071,7 @@ "value": true } }, - "score": 6.5 + "score": 7.0 }, { "details": { @@ -49065,9 +49096,9 @@ "resolved_hostname": "www.gruene-dissen.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-dissen.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -49115,7 +49146,7 @@ ], "title": "Grüne Ortsverband Dissen ::\tWir machen das klar." }, - "duration": 409, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -49141,7 +49172,7 @@ ], "title": "Grüne Ortsverband Dissen ::\tWir machen das klar." }, - "duration": 457, + "duration": 461, "error": null, "responsive": { "document_width": { @@ -49191,7 +49222,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 433 + "value": 525 }, "RESPONSIVE": { "score": 0, @@ -49231,9 +49262,9 @@ "resolved_hostname": "www.gruene-dithmarschen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-dithmarschen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -49275,7 +49306,7 @@ "opengraph": null, "title": "Kreisverband Dithmarschen: Startseite" }, - "duration": 193, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -49323,7 +49354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -49366,9 +49397,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-dormagen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -49410,7 +49441,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 915, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -49457,7 +49488,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 915 + "value": 175 }, "RESPONSIVE": { "score": 0, @@ -49498,9 +49529,9 @@ "resolved_hostname": "www.gruene-dorsten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dorsten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -49542,7 +49573,7 @@ "opengraph": null, "title": "DIE GRÜNEN IN DORSTEN: Startseite" }, - "duration": 231, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -49590,7 +49621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -49631,9 +49662,7 @@ "resolved_hostname": "www.gruene-dortmund.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "217.160.230.170" ], @@ -49681,7 +49710,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN - Die GRÜNEN in Dortmund - Kreisverband - Kreisverband Dortmund" }, - "duration": 213, + "duration": 599, "error": null, "responsive": { "document_width": { @@ -49704,7 +49733,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN - Die GRÜNEN in Dortmund - Kreisverband - Kreisverband Dortmund" }, - "duration": 157, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -49754,7 +49783,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 185 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -49795,9 +49824,9 @@ "resolved_hostname": "www.gruene-drensteinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "http://www.gruene-drensteinfurt.de/cms/images/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.132.181" ], @@ -49839,7 +49868,7 @@ "opengraph": null, "title": "GRÜNE Drensteinfurt" }, - "duration": 174, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -49862,7 +49891,7 @@ "opengraph": null, "title": "GRÜNE Drensteinfurt" }, - "duration": 213, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -49911,7 +49940,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -49996,7 +50025,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen in Nordsachsen" }, - "duration": 86, + "duration": 100, "error": null, "responsive": { "document_width": { @@ -50019,7 +50048,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen in Nordsachsen" }, - "duration": 68, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -50070,7 +50099,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 77 + "value": 86 }, "RESPONSIVE": { "score": 0, @@ -50114,9 +50143,9 @@ "resolved_hostname": "www.gruene-duesseldorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-duesseldorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.57.13" ], @@ -50175,7 +50204,7 @@ ], "title": "GRÜNE Düsseldorf" }, - "duration": 963, + "duration": 115, "error": null, "responsive": { "document_width": { @@ -50223,7 +50252,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 963 + "value": 115 }, "RESPONSIVE": { "score": 1, @@ -50263,9 +50292,9 @@ "resolved_hostname": "www.gruene-duew.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-duew.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -50307,7 +50336,7 @@ "opengraph": null, "title": "Grüner KV Bad Dürkheim: Startseite" }, - "duration": 197, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -50355,7 +50384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -50395,9 +50424,7 @@ "resolved_hostname": "www.gruene-echzell.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "89.107.186.22" ], @@ -50442,7 +50469,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Ortsverband Echzell | Kommunapolitik für Echzell ... ökologisch sozial interkulturell" }, - "duration": 62, + "duration": 72, "error": null, "responsive": { "document_width": { @@ -50491,7 +50518,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 72 }, "RESPONSIVE": { "score": 0, @@ -50530,9 +50557,9 @@ "resolvable": false } }, - "icons": [ - "1b890842ba700bd1869198e993f498ac.ico" - ], + "icons": { + "http://gruene-edermuende.de/images/favicon.ico": "1b890842ba700bd1869198e993f498ac.ico" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -50564,7 +50591,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Edermünde - News" }, - "duration": 137, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -50613,7 +50640,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 137 + "value": 143 }, "RESPONSIVE": { "score": 0, @@ -50656,6 +50683,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "81.169.145.69" ], @@ -50698,7 +50726,7 @@ ], "title": "Grüne Edewecht • BlickWechsel Infos über GRÜNE Politik in Edewecht" }, - "duration": 306, + "duration": 3, "error": null, "responsive": { "document_width": { @@ -50731,9 +50759,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -50745,9 +50772,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 306 + "value": 3 }, "RESPONSIVE": { "score": 0, @@ -50764,7 +50791,7 @@ "value": false } }, - "score": 4.5 + "score": 6.0 }, { "details": { @@ -50789,9 +50816,9 @@ "resolved_hostname": "www.gruene-egg-leo.de" } }, - "icons": [ - "93655d21a8137fea9cd27c022302258d.ico" - ], + "icons": { + "http://www.gruene-egg-leo.de/favicon.ico": "93655d21a8137fea9cd27c022302258d.ico" + }, "ipv4_addresses": [ "82.165.201.248" ], @@ -50808,7 +50835,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -50816,7 +50843,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-egg-leo.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -50836,7 +50863,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen — Ortsverband Eggenstein-Leopoldshafen" }, - "duration": 125, + "duration": 112, "error": null, "responsive": { "document_width": { @@ -50859,7 +50886,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen — Ortsverband Eggenstein-Leopoldshafen" }, - "duration": 108, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -50949,9 +50976,9 @@ "resolved_hostname": "www.gruene-eimsbuettel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eimsbuettel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -50993,7 +51020,7 @@ "opengraph": null, "title": "GRÜNE Eimsbüttel: Home" }, - "duration": 217, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -51041,7 +51068,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -51126,7 +51153,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Eitorf" }, - "duration": 61, + "duration": 48, "error": null, "responsive": { "document_width": { @@ -51149,7 +51176,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Eitorf" }, - "duration": 70, + "duration": 56, "error": null, "responsive": { "document_width": { @@ -51200,7 +51227,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 52 }, "RESPONSIVE": { "score": 0, @@ -51243,9 +51270,9 @@ "resolved_hostname": "www.gruene-elbe-weisseritz.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-elbe-weisseritz.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -51293,7 +51320,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Sächsische Schweiz - Osterzgebirge" }, - "duration": 238, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -51341,7 +51368,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 243 }, "RESPONSIVE": { "score": 0, @@ -51381,9 +51408,9 @@ "resolved_hostname": "www.gruene-els.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-els.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -51425,7 +51452,7 @@ "opengraph": null, "title": "Grüne Emsland Süd: Home" }, - "duration": 198, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -51473,7 +51500,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -51513,9 +51540,9 @@ "resolved_hostname": "www.gruene-els.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-els.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -51557,7 +51584,7 @@ "opengraph": null, "title": "Grüne Emsland Süd: Home" }, - "duration": 189, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -51605,7 +51632,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -51684,7 +51711,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Elsdorf: Gruene-Elsdorf" }, - "duration": 329, + "duration": 387, "error": null, "responsive": { "document_width": { @@ -51707,7 +51734,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Elsdorf: Gruene-Elsdorf" }, - "duration": 333, + "duration": 446, "error": null, "responsive": { "document_width": { @@ -51757,7 +51784,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 331 + "value": 416 }, "RESPONSIVE": { "score": 0, @@ -51801,9 +51828,9 @@ "resolved_hostname": "www.gruene-em.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-em.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.38.249.13" ], @@ -51856,7 +51883,7 @@ ], "title": "Grüne im Kreis Emmendingen" }, - "duration": 257, + "duration": 662, "error": null, "responsive": { "document_width": { @@ -51903,7 +51930,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 662 }, "RESPONSIVE": { "score": 1, @@ -51924,12 +51951,15 @@ { "details": { "canonical_urls": [ - "http://gruene-emden.de/" + "http://gruene-emden.de/", + "https://gruene-emden.de/" ], "cms": "wordpress", "feeds": [ "http://gruene-emden.de/comments/feed/", - "http://gruene-emden.de/feed/" + "http://gruene-emden.de/feed/", + "https://gruene-emden.de/comments/feed/", + "https://gruene-emden.de/feed/" ], "hostnames": { "gruene-emden.de": { @@ -51947,9 +51977,10 @@ "resolved_hostname": "www.gruene-emden.de" } }, - "icons": [ - "a4046cbaf002313241763cf17befce6e.jpg" - ], + "icons": { + "http://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg": "a4046cbaf002313241763cf17befce6e.jpg", + "https://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg": "a4046cbaf002313241763cf17befce6e.jpg" + }, "ipv4_addresses": [ "109.237.140.52" ], @@ -51965,17 +51996,14 @@ "url": "http://www.gruene-emden.de/" }, { - "error": { - "message": "HTTPSConnectionPool(host='gruene-emden.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-emden.de' doesn't match either of '*.alfahosting-server.de', 'alfahosting-server.de'\",),))", - "type": "" - }, + "error": null, "redirects_to": null, "url": "https://gruene-emden.de/" }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-emden.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-emden.de' doesn't match either of '*.alfahosting-server.de', 'alfahosting-server.de'\",),))", - "type": "" + "message": "('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))", + "type": "" }, "redirects_to": null, "url": "https://www.gruene-emden.de/" @@ -52008,7 +52036,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Emden - Mehr GRÜN für Emden" }, - "duration": 355, + "duration": 923, "error": null, "responsive": { "document_width": { @@ -52021,6 +52049,40 @@ }, "status_code": 200, "url": "http://gruene-emden.de/" + }, + { + "content": { + "canonical_link": "https://gruene-emden.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-emden.de/feed/", + "https://gruene-emden.de/comments/feed/" + ], + "generator": "WordPress 4.9.8", + "icon": "https://gruene-emden.de/wp-content/uploads/2018/05/favicon-150x150.jpg", + "opengraph": [ + "og:description", + "og:locale", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "BÜNDNIS 90/DIE GRÜNEN Emden - Mehr GRÜN für Emden" + }, + "duration": 651, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-emden.de/" } ] }, @@ -52033,8 +52095,9 @@ }, "result": { "CANONICAL_URL": { - "score": 1, - "value": true + "score": 0, + "type": "boolean", + "value": false }, "DNS_RESOLVABLE_IPV4": { "score": 1, @@ -52049,14 +52112,13 @@ "value": true }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 355 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -52072,7 +52134,7 @@ "value": true } }, - "score": 7.5 + "score": 8.5 }, { "details": { @@ -52096,9 +52158,9 @@ "resolved_hostname": "www.gruene-emsdetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-emsdetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52140,7 +52202,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Emsdetten: Home" }, - "duration": 212, + "duration": 193, "error": null, "responsive": { "document_width": { @@ -52188,7 +52250,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 193 }, "RESPONSIVE": { "score": 1, @@ -52228,9 +52290,9 @@ "resolved_hostname": "www.gruene-en.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-en.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52272,7 +52334,7 @@ "opengraph": null, "title": "Kreisverband Ennepe-Ruhr: Home" }, - "duration": 210, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -52320,7 +52382,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -52360,9 +52422,9 @@ "resolved_hostname": "www.gruene-engelskirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-engelskirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52404,7 +52466,7 @@ "opengraph": null, "title": "Grüne Engelskirchen: Startseite" }, - "duration": 230, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -52452,7 +52514,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -52496,9 +52558,9 @@ "resolved_hostname": "www.gruene-eppelborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -52531,7 +52593,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -52557,13 +52619,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 454, + "duration": 457, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -52605,7 +52667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 457 }, "RESPONSIVE": { "score": 1, @@ -52686,7 +52748,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 155, + "duration": 159, "error": null, "responsive": { "document_width": { @@ -52709,7 +52771,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 145, + "duration": 161, "error": null, "responsive": { "document_width": { @@ -52732,7 +52794,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 419, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -52755,7 +52817,7 @@ "opengraph": null, "title": "BÜNDNIS90 / DIE GRÜNEN in Erftstadt: Startseite" }, - "duration": 294, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -52805,7 +52867,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 253 + "value": 216 }, "RESPONSIVE": { "score": 0, @@ -52845,9 +52907,9 @@ "resolved_hostname": "www.gruene-erkrath.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erkrath.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -52889,7 +52951,7 @@ "opengraph": null, "title": "DIE GRÜNEN IN ERKRATH: Home" }, - "duration": 210, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -52937,7 +52999,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -52980,9 +53042,9 @@ "resolved_hostname": "www.gruene-erzgebirge.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-erzgebirge.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -53030,7 +53092,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN im Erzgebirge" }, - "duration": 221, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -53078,7 +53140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 234 }, "RESPONSIVE": { "score": 0, @@ -53118,9 +53180,9 @@ "resolved_hostname": "www.gruene-es.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-es.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -53162,7 +53224,7 @@ "opengraph": null, "title": "Kreisverband Esslingen: HOME" }, - "duration": 265, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -53210,7 +53272,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 265 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -53291,14 +53353,14 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 65, + "duration": 122, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 980, - "768x1024": 980 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": null }, @@ -53314,7 +53376,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 69, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -53337,7 +53399,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 155, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -53360,14 +53422,14 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Eschweiler" }, - "duration": 152, + "duration": 147, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 + "320x480": 980, + "768x1024": 980 }, "viewport_meta_tag": null }, @@ -53410,7 +53472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 110 + "value": 131 }, "RESPONSIVE": { "score": 0, @@ -53459,9 +53521,12 @@ "resolved_hostname": "www.gruene-esslingen.de" } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "http://gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "http://www.gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "https://gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "https://www.gruene-esslingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "134.119.234.65" ], @@ -53507,7 +53572,7 @@ "opengraph": null, "title": "Home" }, - "duration": 342, + "duration": 328, "error": null, "responsive": { "document_width": { @@ -53534,7 +53599,7 @@ "opengraph": null, "title": "Home" }, - "duration": 305, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -53561,7 +53626,7 @@ "opengraph": null, "title": "Home" }, - "duration": 445, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -53588,7 +53653,7 @@ "opengraph": null, "title": "Home" }, - "duration": 401, + "duration": 414, "error": null, "responsive": { "document_width": { @@ -53636,7 +53701,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 373 + "value": 400 }, "RESPONSIVE": { "score": 1, @@ -53680,9 +53745,9 @@ "resolved_hostname": "www.gruene-euskirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-euskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -53734,7 +53799,7 @@ ], "title": "Bündnis 90/Die Grünen KV Euskirchen" }, - "duration": 541, + "duration": 601, "error": null, "responsive": { "document_width": { @@ -53781,7 +53846,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 601 }, "RESPONSIVE": { "score": 1, @@ -53820,9 +53885,9 @@ "resolvable": false } }, - "icons": [ - "11ef6c0950e86d4aafd15be832deddd9.ico" - ], + "icons": { + "https://gruene-everswinkel.de/fileadmin/die-gruenen/images/favicon.ico": "11ef6c0950e86d4aafd15be832deddd9.ico" + }, "ipv4_addresses": [ "85.13.144.127" ], @@ -53854,7 +53919,7 @@ "opengraph": null, "title": "Die Grünen Everswinkel: Die Grünen aktuell" }, - "duration": 245, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -53902,7 +53967,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -53952,9 +54017,9 @@ "resolved_hostname": "www.gruene-fernwald.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-fernwald.de/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "217.160.0.75" ], @@ -53998,7 +54063,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Fernwald" }, - "duration": 733, + "duration": 847, "error": null, "responsive": { "document_width": { @@ -54026,7 +54091,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN | Fernwald" }, - "duration": 843, + "duration": 890, "error": null, "responsive": { "document_width": { @@ -54074,7 +54139,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 788 + "value": 868 }, "RESPONSIVE": { "score": 0, @@ -54115,6 +54180,7 @@ "resolved_hostname": "www.gruene-feuchtwangen.de" } }, + "icons": {}, "ipv4_addresses": [ "134.119.225.68" ], @@ -54155,11 +54221,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.1 CMS", - "icon": "http://www.wirfuerfeu-gruene.de/fileadmin/pics/favicon.ico", + "icon": "http://www.gruene-feuchtwangen.de/fileadmin/pics/favicon.ico", "opengraph": null, "title": "Startseite" }, - "duration": 234, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -54178,11 +54244,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.1 CMS", - "icon": "http://www.wirfuerfeu-gruene.de/fileadmin/pics/favicon.ico", + "icon": "http://www.gruene-feuchtwangen.de/fileadmin/pics/favicon.ico", "opengraph": null, "title": "Startseite" }, - "duration": 205, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -54216,9 +54282,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -54233,7 +54298,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 228 }, "RESPONSIVE": { "score": 0, @@ -54249,7 +54314,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -54273,9 +54338,9 @@ "resolved_hostname": "www.gruene-fichtelgebirge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-fichtelgebirge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -54317,7 +54382,7 @@ "opengraph": null, "title": "GRÜNE-FICHTELGEBIRGE : Home" }, - "duration": 188, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -54365,7 +54430,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -54404,9 +54469,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-filderstadt.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -54435,7 +54500,7 @@ "opengraph": null, "title": "Grüne Filderstadt: HOME" }, - "duration": 552, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -54483,7 +54548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 552 + "value": 540 }, "RESPONSIVE": { "score": 0, @@ -54524,9 +54589,9 @@ "resolved_hostname": "www.gruene-flensburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-flensburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -54568,7 +54633,7 @@ "opengraph": null, "title": "GRÜNE Flensburg: Home" }, - "duration": 236, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -54616,7 +54681,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -54697,7 +54762,7 @@ "opengraph": null, "title": "Home" }, - "duration": 801, + "duration": 750, "error": null, "responsive": { "document_width": { @@ -54746,7 +54811,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 801 + "value": 750 }, "RESPONSIVE": { "score": 1, @@ -54827,7 +54892,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 161, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -54850,7 +54915,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 189, + "duration": 159, "error": null, "responsive": { "document_width": { @@ -54873,7 +54938,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 271, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -54896,7 +54961,7 @@ "opengraph": null, "title": "BÜNDNIS90/DIE GRÜNEN FRECHEN: Grüne Frechen" }, - "duration": 315, + "duration": 331, "error": null, "responsive": { "document_width": { @@ -54946,7 +55011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 266 }, "RESPONSIVE": { "score": 0, @@ -55025,7 +55090,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 150, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -55048,7 +55113,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 138, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -55098,7 +55163,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 144 + "value": 156 }, "RESPONSIVE": { "score": 0, @@ -55171,7 +55236,7 @@ "opengraph": null, "title": "Das Neueste" }, - "duration": 221, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -55219,7 +55284,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 179 }, "RESPONSIVE": { "score": 0, @@ -55264,9 +55329,9 @@ "resolved_hostname": "www.gruene-freisen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -55299,7 +55364,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -55325,13 +55390,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 426, + "duration": 487, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -55373,7 +55438,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 426 + "value": 487 }, "RESPONSIVE": { "score": 1, @@ -55416,9 +55481,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-freudenberg-kzb.de/wp-content/themes/1508266415-zKE0fS/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.90" ], @@ -55456,6 +55521,7 @@ "icon": "http://xn--grne-freudenberg-kzb.de/wp-content/themes/1508266415-zKE0fS/favicon.png", "opengraph": [ "og:description", + "og:image", "og:locale", "og:site_name", "og:title", @@ -55464,7 +55530,7 @@ ], "title": "Stadtverband Freudenberg" }, - "duration": 213, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -55512,7 +55578,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -55556,9 +55622,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-freudenstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.159" ], @@ -55603,7 +55669,7 @@ ], "title": "Kreisverband Freudenstadt" }, - "duration": 546, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -55651,7 +55717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 546 + "value": 583 }, "RESPONSIVE": { "score": 1, @@ -55740,7 +55806,7 @@ ], "title": "Bündnis 90 / Die Grünen Friedberg (Hessen) – Kommunapolitik für Friedberg ökologisch sozial interkulturell" }, - "duration": 565, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -55789,7 +55855,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 152 }, "RESPONSIVE": { "score": 1, @@ -55836,9 +55902,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -55881,7 +55948,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 303, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -55915,7 +55982,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 385, + "duration": 373, "error": null, "responsive": { "document_width": { @@ -55963,7 +56030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 344 + "value": 373 }, "RESPONSIVE": { "score": 1, @@ -56010,9 +56077,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56055,7 +56123,182 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 283, + "duration": 300, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 370, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-fuerth-land.de/" + }, + { + "content": { + "canonical_link": "https://www.gruene-fuerth-land.de/", + "encoding": "utf-8", + "feeds": [ + "https://www.gruene-fuerth-land.de/feed/", + "https://www.gruene-fuerth-land.de/comments/feed/" + ], + "generator": null, + "icon": "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "KREISVERBAND FÜRTH-LAND" + }, + "duration": 396, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 370, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://www.gruene-fuerth-land.de/" + } + ] + }, + "input_url": "http://www.gruene-fuerth-land.de/category/ov-groshabersdorf/", + "meta": { + "city": "Großhabersdorf", + "district": "Fürth-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 0, + "type": "boolean", + "value": false + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 348 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 7.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-fuerth-land.de/", + "https://www.gruene-fuerth-land.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-fuerth-land.de/comments/feed/", + "http://www.gruene-fuerth-land.de/feed/", + "https://www.gruene-fuerth-land.de/comments/feed/", + "https://www.gruene-fuerth-land.de/feed/" + ], + "hostnames": { + "gruene-fuerth-land.de": { + "aliases": [ + "www.gruene-fuerth-land.de" + ], + "ip_addresses": [ + "81.169.145.82" + ], + "resolvable": true, + "resolved_hostname": "gruene-fuerth-land.de" + }, + "www.gruene-fuerth-land.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "81.169.145.82" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-fuerth-land.de/", + "url": "http://gruene-fuerth-land.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-fuerth-land.de/", + "url": "https://gruene-fuerth-land.de/" + } + ], + "responsive": { + "min_width": 370, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "http://www.gruene-fuerth-land.de/", + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-fuerth-land.de/feed/", + "http://www.gruene-fuerth-land.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "KREISVERBAND FÜRTH-LAND" + }, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -56105,180 +56348,6 @@ } ] }, - "input_url": "http://www.gruene-fuerth-land.de/category/ov-groshabersdorf/", - "meta": { - "city": "Großhabersdorf", - "district": "Fürth-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 0, - "type": "boolean", - "value": false - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 324 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 7.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-fuerth-land.de/", - "https://www.gruene-fuerth-land.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-fuerth-land.de/comments/feed/", - "http://www.gruene-fuerth-land.de/feed/", - "https://www.gruene-fuerth-land.de/comments/feed/", - "https://www.gruene-fuerth-land.de/feed/" - ], - "hostnames": { - "gruene-fuerth-land.de": { - "aliases": [ - "www.gruene-fuerth-land.de" - ], - "ip_addresses": [ - "81.169.145.82" - ], - "resolvable": true, - "resolved_hostname": "gruene-fuerth-land.de" - }, - "www.gruene-fuerth-land.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "81.169.145.82" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-fuerth-land.de/", - "url": "http://gruene-fuerth-land.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-fuerth-land.de/", - "url": "https://gruene-fuerth-land.de/" - } - ], - "responsive": { - "min_width": 370, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "http://www.gruene-fuerth-land.de/", - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-fuerth-land.de/feed/", - "http://www.gruene-fuerth-land.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "KREISVERBAND FÜRTH-LAND" - }, - "duration": 326, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 370, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-fuerth-land.de/" - }, - { - "content": { - "canonical_link": "https://www.gruene-fuerth-land.de/", - "encoding": "utf-8", - "feeds": [ - "https://www.gruene-fuerth-land.de/feed/", - "https://www.gruene-fuerth-land.de/comments/feed/" - ], - "generator": null, - "icon": "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "KREISVERBAND FÜRTH-LAND" - }, - "duration": 325, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 370, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://www.gruene-fuerth-land.de/" - } - ] - }, "input_url": "http://www.gruene-fuerth-land.de/category/ov-rosstal/", "meta": { "city": "Roßtal", @@ -56311,7 +56380,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 326 + "value": 328 }, "RESPONSIVE": { "score": 1, @@ -56358,9 +56427,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56403,7 +56473,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 347, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -56437,7 +56507,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 420, + "duration": 505, "error": null, "responsive": { "document_width": { @@ -56485,7 +56555,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 384 + "value": 388 }, "RESPONSIVE": { "score": 1, @@ -56532,9 +56602,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-fuerth-land.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -56577,7 +56648,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 315, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -56611,7 +56682,7 @@ ], "title": "KREISVERBAND FÜRTH-LAND" }, - "duration": 418, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -56659,7 +56730,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 366 + "value": 362 }, "RESPONSIVE": { "score": 1, @@ -56704,9 +56775,9 @@ "resolved_hostname": "www.gruene-fuerth.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-fuerth.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.47.73.227" ], @@ -56759,7 +56830,7 @@ ], "title": "Bündnis 90 / Die Grünen Fürth" }, - "duration": 371, + "duration": 289, "error": null, "responsive": { "document_width": { @@ -56806,7 +56877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 289 }, "RESPONSIVE": { "score": 0, @@ -56846,9 +56917,9 @@ "resolved_hostname": "www.gruene-fulda.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-fulda.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -56890,7 +56961,7 @@ "opengraph": null, "title": "Kreis FULDA: Home" }, - "duration": 199, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -56938,7 +57009,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -56981,9 +57052,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-gehrden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.163" ], @@ -57029,7 +57100,7 @@ ], "title": "Grüne Gehrden" }, - "duration": 457, + "duration": 484, "error": null, "responsive": { "document_width": { @@ -57077,7 +57148,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 457 + "value": 484 }, "RESPONSIVE": { "score": 1, @@ -57122,9 +57193,9 @@ "resolved_hostname": "www.gruene-geldern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-geldern.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.17" ], @@ -57183,7 +57254,7 @@ ], "title": "" }, - "duration": 678, + "duration": 598, "error": null, "responsive": { "document_width": { @@ -57231,7 +57302,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 678 + "value": 598 }, "RESPONSIVE": { "score": 1, @@ -57276,9 +57347,9 @@ "resolved_hostname": "www.gruene-gellersen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gellersen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.129.244" ], @@ -57331,11 +57402,11 @@ ], "title": "Grüne Gellersen" }, - "duration": 983, + "duration": 846, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1027, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -57378,7 +57449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 983 + "value": 846 }, "RESPONSIVE": { "score": 1, @@ -57424,9 +57495,10 @@ "resolved_hostname": "www.gruene-gelsenkirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-gelsenkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-gelsenkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.252.18.146" ], @@ -57453,7 +57525,7 @@ } ], "responsive": { - "min_width": 437, + "min_width": 410, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -57481,13 +57553,13 @@ ], "title": "GRÜNE Gelsenkirchen" }, - "duration": 13, + "duration": 197, "error": null, "responsive": { "document_width": { "1024x768": 1090, "1920x1080": 1920, - "320x480": 437, + "320x480": 410, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -57517,13 +57589,13 @@ ], "title": "GRÜNE Gelsenkirchen" }, - "duration": 178, + "duration": 625, "error": null, "responsive": { "document_width": { "1024x768": 1090, "1920x1080": 1920, - "320x480": 437, + "320x480": 410, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -57563,9 +57635,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 96 + "value": 411 }, "RESPONSIVE": { "score": 1, @@ -57581,7 +57653,7 @@ "value": true } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -57605,9 +57677,9 @@ "resolved_hostname": "www.gruene-georgsmarienhuette.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-georgsmarienhuette.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -57655,7 +57727,7 @@ ], "title": "Grüne Ortsverband Georgmarienhütte ::\tWir machen das klar." }, - "duration": 362, + "duration": 433, "error": null, "responsive": { "document_width": { @@ -57704,7 +57776,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 362 + "value": 433 }, "RESPONSIVE": { "score": 0, @@ -57743,9 +57815,9 @@ "resolvable": false } }, - "icons": [ - "5b8565f8cba452e6903b09c8e60530ec.png" - ], + "icons": { + "http://gruene-gescher.de/assets/images/sonnenblume-auf-transparent-hellesgelb-01-126x128-96.png": "5b8565f8cba452e6903b09c8e60530ec.png" + }, "ipv4_addresses": [ "81.169.145.94" ], @@ -57780,7 +57852,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Gescher | Willkommen" }, - "duration": 78, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -57829,7 +57901,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 64 }, "RESPONSIVE": { "score": 1, @@ -57874,9 +57946,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -57933,7 +58005,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 704, + "duration": 666, "error": null, "responsive": { "document_width": { @@ -57980,7 +58052,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 704 + "value": 666 }, "RESPONSIVE": { "score": 1, @@ -58022,9 +58094,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-gladbeck.de/cms/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.151" ], @@ -58059,7 +58131,7 @@ "opengraph": null, "title": "Startseite - Grüne Gladbeck" }, - "duration": 257, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -58107,7 +58179,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 238 }, "RESPONSIVE": { "score": 0, @@ -58194,7 +58266,7 @@ ], "title": "Bündnis 90/Die Grünen Glashütten" }, - "duration": 428, + "duration": 404, "error": null, "responsive": { "document_width": { @@ -58243,7 +58315,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 404 }, "RESPONSIVE": { "score": 1, @@ -58283,9 +58355,9 @@ "resolved_hostname": "www.gruene-gleichen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-gleichen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -58327,7 +58399,7 @@ "opengraph": null, "title": "Gemeindeverband Gleichen: Home" }, - "duration": 219, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -58375,7 +58447,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -58448,7 +58520,7 @@ "opengraph": null, "title": "Start - Grüne Goch" }, - "duration": 194, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -58498,7 +58570,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 214 }, "RESPONSIVE": { "score": 0, @@ -58560,7 +58632,7 @@ "urlchecks": [ { "content": null, - "duration": 234, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -58576,7 +58648,7 @@ }, { "content": null, - "duration": 304, + "duration": 748, "error": null, "responsive": { "document_width": { @@ -58626,7 +58698,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 269 + "value": 510 }, "RESPONSIVE": { "score": 0, @@ -58688,7 +58760,7 @@ "urlchecks": [ { "content": null, - "duration": 222, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -58704,7 +58776,7 @@ }, { "content": null, - "duration": 291, + "duration": 303, "error": null, "responsive": { "document_width": { @@ -58754,7 +58826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 256 + "value": 264 }, "RESPONSIVE": { "score": 0, @@ -58798,9 +58870,9 @@ "resolved_hostname": "www.gruene-goerlitz.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-goerlitz.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -58848,7 +58920,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Görlitz" }, - "duration": 257, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -58896,7 +58968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 257 + "value": 226 }, "RESPONSIVE": { "score": 0, @@ -58936,9 +59008,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -58980,7 +59052,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 188, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -59028,7 +59100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -59068,9 +59140,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59112,7 +59184,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 245, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -59160,7 +59232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 245 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -59200,9 +59272,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59244,7 +59316,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 200, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -59292,7 +59364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -59332,9 +59404,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59376,7 +59448,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 223, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -59424,7 +59496,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -59464,9 +59536,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59508,7 +59580,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 240, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -59556,7 +59628,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -59596,9 +59668,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59640,7 +59712,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 199, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -59688,7 +59760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -59728,9 +59800,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59772,7 +59844,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 209, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -59820,7 +59892,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -59860,9 +59932,9 @@ "resolved_hostname": "www.gruene-goettingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goettingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -59904,7 +59976,7 @@ "opengraph": null, "title": "GRÜNE Göttingen: Startseite" }, - "duration": 236, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -59952,7 +60024,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 236 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -59992,9 +60064,9 @@ "resolved_hostname": "www.gruene-goslar.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-goslar.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60036,7 +60108,7 @@ "opengraph": null, "title": "Kreisverband Goslar: Home" }, - "duration": 191, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -60084,7 +60156,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -60192,7 +60264,7 @@ "opengraph": null, "title": "B90/Grüne Gräfenberger Oberland" }, - "duration": 61, + "duration": 57, "error": null, "responsive": { "document_width": { @@ -60243,7 +60315,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -60284,9 +60356,10 @@ "resolved_hostname": "www.gruene-grafrath.de" } }, - "icons": [ - "79ded96df21306ec7044622d38902355.ico" - ], + "icons": { + "http://gruene-grafrath.de/favicon.ico": "79ded96df21306ec7044622d38902355.ico", + "http://www.gruene-grafrath.de/favicon.ico": "79ded96df21306ec7044622d38902355.ico" + }, "ipv4_addresses": [ "80.150.6.143" ], @@ -60331,7 +60404,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Grafrath/Kottgeisering" }, - "duration": 66, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -60354,7 +60427,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen OV Grafrath/Kottgeisering" }, - "duration": 61, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -60404,7 +60477,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 64 + "value": 66 }, "RESPONSIVE": { "score": 0, @@ -60444,9 +60517,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60488,7 +60561,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 224, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -60536,7 +60609,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -60576,9 +60649,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60620,7 +60693,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 181, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -60668,7 +60741,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -60708,9 +60781,9 @@ "resolved_hostname": "www.gruene-grafschaft.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grafschaft.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60752,7 +60825,7 @@ "opengraph": null, "title": "Grüne Grafschaft: Start" }, - "duration": 242, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -60800,7 +60873,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 242 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -60954,9 +61027,9 @@ "resolved_hostname": "www.gruene-greven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-greven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -60998,7 +61071,7 @@ "opengraph": null, "title": "GRÜNE GREVEN: Startseite" }, - "duration": 228, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -61046,7 +61119,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -61091,9 +61164,9 @@ "resolved_hostname": "www.gruene-griesheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://wordpress.gruene-griesheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.76" ], @@ -61110,7 +61183,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -61118,7 +61191,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-griesheim.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -61151,7 +61224,7 @@ ], "title": "Bündnis 90/Die Grünen Griesheim" }, - "duration": 870, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -61184,7 +61257,7 @@ ], "title": "Bündnis 90/Die Grünen Griesheim" }, - "duration": 800, + "duration": 702, "error": null, "responsive": { "document_width": { @@ -61233,7 +61306,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 835 + "value": 704 }, "RESPONSIVE": { "score": 1, @@ -61318,7 +61391,7 @@ "opengraph": null, "title": "Buendnis 90 Die Grünen - Ortsverband Guxhagen" }, - "duration": 66, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -61341,7 +61414,7 @@ "opengraph": null, "title": "Buendnis 90 Die Grünen - Ortsverband Guxhagen" }, - "duration": 60, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -61392,7 +61465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 63 + "value": 64 }, "RESPONSIVE": { "score": 0, @@ -61436,9 +61509,9 @@ "resolved_hostname": "www.gruene-gv.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-gv.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.131.236" ], @@ -61497,7 +61570,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN | Grevenbroich" }, - "duration": 524, + "duration": 586, "error": null, "responsive": { "document_width": { @@ -61545,7 +61618,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 586 }, "RESPONSIVE": { "score": 1, @@ -61590,9 +61663,10 @@ "resolved_hostname": "www.gruene-hagen-cux.de" } }, - "icons": [ - "0ab85f7ffac1aa671cfb2f15116fbc23.ico" - ], + "icons": { + "http://gruene-hagen-cux.de/templates/gruene_02/favicon.ico": "0ab85f7ffac1aa671cfb2f15116fbc23.ico", + "http://www.gruene-hagen-cux.de/templates/gruene_02/favicon.ico": "0ab85f7ffac1aa671cfb2f15116fbc23.ico" + }, "ipv4_addresses": [ "217.160.233.227" ], @@ -61644,7 +61718,7 @@ "opengraph": null, "title": "Home" }, - "duration": 439, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -61671,7 +61745,7 @@ "opengraph": null, "title": "Home" }, - "duration": 275, + "duration": 272, "error": null, "responsive": { "document_width": { @@ -61720,7 +61794,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 276 }, "RESPONSIVE": { "score": 0, @@ -61808,7 +61882,7 @@ "opengraph": null, "title": "Grüne Hagen" }, - "duration": 72, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -61831,7 +61905,7 @@ "opengraph": null, "title": "Grüne Hagen" }, - "duration": 84, + "duration": 88, "error": null, "responsive": { "document_width": { @@ -61882,7 +61956,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 78 + "value": 88 }, "RESPONSIVE": { "score": 1, @@ -61967,7 +62041,7 @@ "opengraph": null, "title": "Die Grünen - Hainburg" }, - "duration": 64, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -61990,7 +62064,7 @@ "opengraph": null, "title": "Die Grünen - Hainburg" }, - "duration": 71, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -62041,7 +62115,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 93 }, "RESPONSIVE": { "score": 0, @@ -62082,9 +62156,10 @@ "resolved_hostname": "www.gruene-haltern.de" } }, - "icons": [ - "a9b8fd90e34da5dc334d8c20c9d11c42.ico" - ], + "icons": { + "https://gruene-haltern.de/fileadmin/gruene.ico": "a9b8fd90e34da5dc334d8c20c9d11c42.ico", + "https://www.gruene-haltern.de/fileadmin/gruene.ico": "a9b8fd90e34da5dc334d8c20c9d11c42.ico" + }, "ipv4_addresses": [ "94.102.209.169" ], @@ -62123,7 +62198,7 @@ "opengraph": null, "title": "Grüne Haltern: Grüne Haltern: Aktuelles" }, - "duration": 728, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -62146,7 +62221,7 @@ "opengraph": null, "title": "Grüne Haltern: Grüne Haltern: Aktuelles" }, - "duration": 515, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -62195,7 +62270,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 622 + "value": 374 }, "RESPONSIVE": { "score": 0, @@ -62240,9 +62315,10 @@ "resolved_hostname": "www.gruene-halver.de" } }, - "icons": [ - "0ecdac24b862d6cb40828fa64c969386.ico" - ], + "icons": { + "http://gruene-halver.de/templates/greenfield/favicon.ico": "0ecdac24b862d6cb40828fa64c969386.ico", + "http://www.gruene-halver.de/templates/greenfield/favicon.ico": "0ecdac24b862d6cb40828fa64c969386.ico" + }, "ipv4_addresses": [ "217.160.231.175" ], @@ -62291,7 +62367,7 @@ "opengraph": null, "title": "Die Grünen Halver - Startseite" }, - "duration": 470, + "duration": 413, "error": null, "responsive": { "document_width": { @@ -62318,7 +62394,7 @@ "opengraph": null, "title": "Die Grünen Halver - Startseite" }, - "duration": 436, + "duration": 501, "error": null, "responsive": { "document_width": { @@ -62367,7 +62443,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 453 + "value": 457 }, "RESPONSIVE": { "score": 0, @@ -62411,9 +62487,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62460,7 +62536,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 264, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -62508,7 +62584,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -62553,9 +62629,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62602,7 +62678,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 250, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -62650,7 +62726,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 247 }, "RESPONSIVE": { "score": 0, @@ -62695,9 +62771,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hameln-pyrmont.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.167" ], @@ -62744,7 +62820,7 @@ ], "title": "- Startseite | Willkommen in Hameln-Pyrmont!" }, - "duration": 244, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -62792,7 +62868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 265 }, "RESPONSIVE": { "score": 0, @@ -62836,9 +62912,9 @@ "resolved_hostname": "www.gruene-hamm.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-hamm.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.198.176.136" ], @@ -62890,7 +62966,7 @@ ], "title": "Kreisverband Hamm/Westf." }, - "duration": 524, + "duration": 565, "error": null, "responsive": { "document_width": { @@ -62937,7 +63013,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 565 }, "RESPONSIVE": { "score": 1, @@ -62980,9 +63056,9 @@ "resolved_hostname": "www.gruene-hamminkeln.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-hamminkeln.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "91.233.85.52" ], @@ -63030,7 +63106,7 @@ "opengraph": null, "title": "Startseite - Bündnis 90/Die Grünen Ortsverband Hamminkeln" }, - "duration": 585, + "duration": 802, "error": null, "responsive": { "document_width": { @@ -63078,7 +63154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 585 + "value": 802 }, "RESPONSIVE": { "score": 0, @@ -63119,9 +63195,10 @@ "resolved_hostname": "www.gruene-hannover.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hannover.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-hannover.de/sites/gruene-hannover.de/files/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -63163,7 +63240,7 @@ "opengraph": null, "title": "Grüne Hannover | ." }, - "duration": 205, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -63186,7 +63263,7 @@ "opengraph": null, "title": "Grüne Hannover | ." }, - "duration": 217, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -63235,7 +63312,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -63279,9 +63356,9 @@ "resolved_hostname": "www.gruene-harburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-harburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.19" ], @@ -63308,7 +63385,7 @@ } ], "responsive": { - "min_width": 333, + "min_width": 510, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -63333,13 +63410,13 @@ ], "title": "Willkommen" }, - "duration": 770, + "duration": 829, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1291, "1920x1080": 1920, - "320x480": 333, + "320x480": 510, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -63380,12 +63457,12 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 829 }, "RESPONSIVE": { - "score": 1, + "score": 0, "type": "boolean", - "value": true + "value": false }, "SITE_REACHABLE": { "score": 1, @@ -63396,7 +63473,7 @@ "value": true } }, - "score": 9.5 + "score": 8.5 }, { "details": { @@ -63419,9 +63496,9 @@ "resolvable": false } }, - "icons": [ - "a167ee74a53751f5610fbb9467069b0a.ico" - ], + "icons": { + "http://www.gruene-hardt.de/fileadmin/images/favicon.ico": "a167ee74a53751f5610fbb9467069b0a.ico" + }, "ipv4_addresses": [ "87.118.72.18" ], @@ -63449,11 +63526,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 CMS 6.2", - "icon": "http://gruene-hardt.de/fileadmin/images/favicon.ico", + "icon": "http://www.gruene-hardt.de/fileadmin/images/favicon.ico", "opengraph": null, "title": "Grüne im Rhein-Neckar Kreis - Der Kreisverband Hardt" }, - "duration": 89, + "duration": 80, "error": null, "responsive": { "document_width": { @@ -63502,7 +63579,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 89 + "value": 80 }, "RESPONSIVE": { "score": 0, @@ -63543,9 +63620,9 @@ "resolved_hostname": "www.gruene-harpstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "80.67.16.8" ], @@ -63562,7 +63639,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -63570,7 +63647,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-harpstedt.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -63593,7 +63670,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: OV Harpstedt" }, - "duration": 213, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -63641,7 +63718,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 227 }, "RESPONSIVE": { "score": 1, @@ -63667,8 +63744,8 @@ ], "cms": null, "feeds": [ - "https://gruene-harsewinkel.de/news.php?session=3i1mjva4hcmd6gnct959jl8p64&rss=1", - "https://www.gruene-harsewinkel.de/news.php?session=iegbp06pscg0iedc3k65p7oat6&rss=1" + "https://gruene-harsewinkel.de/news.php?session=b6nhfe1qhh0olj6fau240kc895&rss=1", + "https://www.gruene-harsewinkel.de/news.php?session=64st9jju6ib2kro9drlu36l7k4&rss=1" ], "hostnames": { "gruene-harsewinkel.de": { @@ -63686,9 +63763,9 @@ "resolved_hostname": "www.gruene-harsewinkel.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "https://www.gruene-harsewinkel.de/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "31.47.250.66" ], @@ -63723,7 +63800,7 @@ "canonical_link": "http://gruene-harsewinkel.de/", "encoding": "utf-8", "feeds": [ - "https://gruene-harsewinkel.de/news.php?session=3i1mjva4hcmd6gnct959jl8p64&rss=1" + "https://gruene-harsewinkel.de/news.php?session=b6nhfe1qhh0olj6fau240kc895&rss=1" ], "generator": null, "icon": "https://www.gruene-harsewinkel.de/favicon.ico", @@ -63735,7 +63812,7 @@ ], "title": "Startseite – BÜNDNIS 90/DIE GRÜNEN Harsewinkel" }, - "duration": 215, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -63754,7 +63831,7 @@ "canonical_link": "http://www.gruene-harsewinkel.de/", "encoding": "utf-8", "feeds": [ - "https://www.gruene-harsewinkel.de/news.php?session=iegbp06pscg0iedc3k65p7oat6&rss=1" + "https://www.gruene-harsewinkel.de/news.php?session=64st9jju6ib2kro9drlu36l7k4&rss=1" ], "generator": null, "icon": "https://www.gruene-harsewinkel.de/favicon.ico", @@ -63766,7 +63843,7 @@ ], "title": "Startseite – BÜNDNIS 90/DIE GRÜNEN Harsewinkel" }, - "duration": 209, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -63814,7 +63891,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 240 }, "RESPONSIVE": { "score": 0, @@ -63854,9 +63931,9 @@ "resolved_hostname": "www.gruene-harz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-harz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -63898,7 +63975,7 @@ "opengraph": null, "title": "Grüne im Landkreis Harz: Willkommen" }, - "duration": 258, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -63946,7 +64023,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 237 }, "RESPONSIVE": { "score": 1, @@ -63991,9 +64068,9 @@ "resolved_hostname": "www.gruene-hattingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-hattingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.9" ], @@ -64046,7 +64123,7 @@ ], "title": "Grüne in Hattingen" }, - "duration": 975, + "duration": 824, "error": null, "responsive": { "document_width": { @@ -64093,7 +64170,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 975 + "value": 824 }, "RESPONSIVE": { "score": 1, @@ -64134,9 +64211,10 @@ "resolved_hostname": "www.gruene-havixbeck.de" } }, - "icons": [ - "18f1edbd361b70444fd7c7559c1754a0.ico" - ], + "icons": { + "http://gruene-havixbeck.de/templates/glassberry/img/fav.ico": "18f1edbd361b70444fd7c7559c1754a0.ico", + "http://www.gruene-havixbeck.de/templates/glassberry/img/fav.ico": "18f1edbd361b70444fd7c7559c1754a0.ico" + }, "ipv4_addresses": [ "217.160.10.58" ], @@ -64181,7 +64259,7 @@ "opengraph": null, "title": "ZUKUNFT IST GRÜN - BÜNDNIS 90 / DIE GRÜNEN IN HAVIXBECK & HOHENHOLTE - WILLKOMMEN" }, - "duration": 136, + "duration": 141, "error": null, "responsive": { "document_width": { @@ -64204,7 +64282,7 @@ "opengraph": null, "title": "ZUKUNFT IST GRÜN - BÜNDNIS 90 / DIE GRÜNEN IN HAVIXBECK & HOHENHOLTE - WILLKOMMEN" }, - "duration": 165, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -64254,7 +64332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -64294,9 +64372,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-heddesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-heddesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -64328,7 +64407,7 @@ "opengraph": null, "title": "Grüne Heddesheim: Start" }, - "duration": 612, + "duration": 553, "error": null, "responsive": { "document_width": { @@ -64351,7 +64430,7 @@ "opengraph": null, "title": "Grüne Heddesheim: Start" }, - "duration": 595, + "duration": 778, "error": null, "responsive": { "document_width": { @@ -64400,7 +64479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 666 }, "RESPONSIVE": { "score": 1, @@ -64441,9 +64520,9 @@ "resolved_hostname": "www.gruene-heidekreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-heidekreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -64485,7 +64564,7 @@ "opengraph": null, "title": "Kreisverband Heidekreis: Home" }, - "duration": 197, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -64533,7 +64612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -64577,9 +64656,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "https://www.gruene-heidelberg.de/wp-content/uploads/2017/08/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "188.40.159.225" ], @@ -64616,7 +64695,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Heidelberg" }, - "duration": 160, + "duration": 652, "error": null, "responsive": { "document_width": { @@ -64663,7 +64742,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 652 }, "RESPONSIVE": { "score": 1, @@ -64709,9 +64788,9 @@ "resolved_hostname": "www.gruene-heidenheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-heidenheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.175.14.19" ], @@ -64764,7 +64843,7 @@ ], "title": "Grüne Heidenheim" }, - "duration": 207, + "duration": 190, "error": null, "responsive": { "document_width": { @@ -64811,7 +64890,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 190 }, "RESPONSIVE": { "score": 1, @@ -64851,9 +64930,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-heiligenhaus.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.52" ], @@ -64896,7 +64975,7 @@ ], "title": "Grüne Heiligenhaus" }, - "duration": 605, + "duration": 564, "error": null, "responsive": { "document_width": { @@ -64943,7 +65022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 605 + "value": 564 }, "RESPONSIVE": { "score": 1, @@ -64984,9 +65063,9 @@ "resolved_hostname": "www.gruene-helmstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-helmstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -65028,7 +65107,7 @@ "opengraph": null, "title": "Grüne Helmstedt: Home" }, - "duration": 254, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -65076,7 +65155,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 254 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -65157,7 +65236,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 66, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -65180,7 +65259,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 60, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -65203,7 +65282,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 152, + "duration": 171, "error": null, "responsive": { "document_width": { @@ -65226,7 +65305,7 @@ "opengraph": null, "title": "News - Bündnis90/DIE GRÜNEN" }, - "duration": 152, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -65276,7 +65355,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 108 + "value": 114 }, "RESPONSIVE": { "score": 0, @@ -65317,9 +65396,10 @@ "resolved_hostname": "www.gruene-herne.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-herne.de/img/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "http://www.gruene-herne.de/img/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.3" ], @@ -65367,7 +65447,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Herne" }, - "duration": 821, + "duration": 958, "error": null, "responsive": { "document_width": { @@ -65390,7 +65470,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Herne" }, - "duration": 718, + "duration": 735, "error": null, "responsive": { "document_width": { @@ -65440,7 +65520,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 770 + "value": 846 }, "RESPONSIVE": { "score": 0, @@ -65483,9 +65563,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-herten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -65527,7 +65607,7 @@ ], "title": "Grüne Herten" }, - "duration": 627, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -65574,7 +65654,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 627 + "value": 340 }, "RESPONSIVE": { "score": 1, @@ -65619,9 +65699,9 @@ "resolved_hostname": "www.gruene-herzogenaurach.de" } }, - "icons": [ - "d1ef0e1179cfe888bbdc44a98dcd010f.png" - ], + "icons": { + "http://www.gruene-herzogenaurach.de/wp-content/uploads/2016/04/logo_gruene.png": "d1ef0e1179cfe888bbdc44a98dcd010f.png" + }, "ipv4_addresses": [ "37.17.224.22" ], @@ -65673,7 +65753,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Herzogenaurach" }, - "duration": 469, + "duration": 493, "error": null, "responsive": { "document_width": { @@ -65721,7 +65801,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -65766,9 +65846,9 @@ "resolved_hostname": "www.gruene-herzogenrath.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/herzogenrath/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -65785,7 +65865,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -65793,7 +65873,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-herzogenrath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -65827,7 +65907,7 @@ ], "title": "Grüne Herzogenrath" }, - "duration": 526, + "duration": 520, "error": null, "responsive": { "document_width": { @@ -65861,7 +65941,7 @@ ], "title": "Grüne Herzogenrath" }, - "duration": 508, + "duration": 516, "error": null, "responsive": { "document_width": { @@ -65910,7 +65990,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 518 }, "RESPONSIVE": { "score": 1, @@ -65957,9 +66037,9 @@ "resolved_hostname": "www.gruene-hessen.de" } }, - "icons": [ - "763a07a20f4c0be782bfc18673b39f04.ico" - ], + "icons": { + "http://www.gruene-hessen.de/favicon.ico": "763a07a20f4c0be782bfc18673b39f04.ico" + }, "ipv4_addresses": [ "217.160.0.237" ], @@ -66016,7 +66096,7 @@ ], "title": "Bündnis 90/Die Grünen in Hessen" }, - "duration": 697, + "duration": 640, "error": null, "responsive": { "document_width": { @@ -66063,7 +66143,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 697 + "value": 640 }, "RESPONSIVE": { "score": 1, @@ -66107,9 +66187,9 @@ "resolved_hostname": "www.gruene-heuchelheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-heuchelheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.240.85" ], @@ -66169,7 +66249,7 @@ ], "title": "Grüne Heuchelheim-Kinzenbach - Wir setzen uns seit mehr als 25 Jahren für Ökologie und Nachhaltigkeit ein.Grüne Heuchelheim-Kinzenbach" }, - "duration": 198, + "duration": 423, "error": null, "responsive": { "document_width": { @@ -66217,7 +66297,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 423 }, "RESPONSIVE": { "score": 1, @@ -66261,9 +66341,9 @@ "resolved_hostname": "www.gruene-hilden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hilden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.2" ], @@ -66325,7 +66405,7 @@ ], "title": "Die GRÜNEN Hilden" }, - "duration": 148, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -66373,7 +66453,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -66413,9 +66493,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66457,7 +66537,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 235, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -66505,7 +66585,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -66545,9 +66625,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66589,7 +66669,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 198, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -66637,7 +66717,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -66677,9 +66757,9 @@ "resolved_hostname": "www.gruene-hildesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hildesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -66721,7 +66801,7 @@ "opengraph": null, "title": "Kreisverband Hildesheim: Startseite" }, - "duration": 227, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -66769,7 +66849,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -66810,9 +66890,9 @@ "resolved_hostname": "www.gruene-hilter.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-hilter.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -66860,7 +66940,7 @@ ], "title": "Grüne Ortsverband Hilter ::\tWir machen das klar." }, - "duration": 400, + "duration": 403, "error": null, "responsive": { "document_width": { @@ -66886,7 +66966,7 @@ ], "title": "Grüne Ortsverband Hilter ::\tWir machen das klar." }, - "duration": 442, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -66936,7 +67016,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 421 + "value": 432 }, "RESPONSIVE": { "score": 0, @@ -66976,9 +67056,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-hirschberg.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-hirschberg.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -67010,7 +67091,7 @@ "opengraph": null, "title": "Grüne Liste Hirschberg: HOME" }, - "duration": 530, + "duration": 576, "error": null, "responsive": { "document_width": { @@ -67033,7 +67114,7 @@ "opengraph": null, "title": "Grüne Liste Hirschberg: HOME" }, - "duration": 834, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -67082,7 +67163,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 682 + "value": 369 }, "RESPONSIVE": { "score": 1, @@ -67123,9 +67204,9 @@ "resolved_hostname": "www.gruene-hoerstel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoerstel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67167,7 +67248,7 @@ "opengraph": null, "title": "Ortsverband Hörstel: Online-Plattform „Hier hilft nur Grün“" }, - "duration": 211, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -67215,7 +67296,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 172 }, "RESPONSIVE": { "score": 1, @@ -67255,9 +67336,9 @@ "resolved_hostname": "www.gruene-hohenlohe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hohenlohe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67299,7 +67380,7 @@ "opengraph": null, "title": "GRÜNE Hohenlohe: Startseite" }, - "duration": 201, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -67347,7 +67428,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -67387,9 +67468,9 @@ "resolved_hostname": "www.gruene-holzminden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-holzminden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -67416,7 +67497,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 324, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -67431,13 +67512,13 @@ "opengraph": null, "title": "Kreisverband Holzminden: Home" }, - "duration": 225, + "duration": 210, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 324, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -67479,7 +67560,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -67546,7 +67627,7 @@ "opengraph": null, "title": "Baustelle die Grünen in Holzwickede" }, - "duration": 139, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -67595,7 +67676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 126 }, "RESPONSIVE": { "score": 0, @@ -67635,9 +67716,9 @@ "resolvable": false } }, - "icons": [ - "1f615d5bf91b5eb2187c8d85fb801c9a.ico" - ], + "icons": { + "http://gruene-homberg.de/favicon.ico": "1f615d5bf91b5eb2187c8d85fb801c9a.ico" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -67669,7 +67750,7 @@ "opengraph": null, "title": "Bündnis 90/DIE GRÜNEN in Homberg (Efze)" }, - "duration": 81, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -67718,7 +67799,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 81 + "value": 75 }, "RESPONSIVE": { "score": 0, @@ -67835,9 +67916,10 @@ "resolved_hostname": "www.gruene-horstmar.de" } }, - "icons": [ - "0dc13b50e03ca27f58f87b00671a1e68.ico" - ], + "icons": { + "http://gruene-horstmar.de/templates/GrueneHorstmar/images/favicon1.ico": "0dc13b50e03ca27f58f87b00671a1e68.ico", + "http://www.gruene-horstmar.de/templates/GrueneHorstmar/images/favicon1.ico": "0dc13b50e03ca27f58f87b00671a1e68.ico" + }, "ipv4_addresses": [ "85.13.147.36" ], @@ -67886,7 +67968,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Horstmar" }, - "duration": 198, + "duration": 335, "error": null, "responsive": { "document_width": { @@ -67913,7 +67995,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen in Horstmar" }, - "duration": 790, + "duration": 589, "error": null, "responsive": { "document_width": { @@ -67962,7 +68044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 494 + "value": 462 }, "RESPONSIVE": { "score": 0, @@ -68002,9 +68084,9 @@ "resolved_hostname": "www.gruene-hoya.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-hoya.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68046,7 +68128,7 @@ "opengraph": null, "title": "Grüne Hoya: Home" }, - "duration": 194, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -68094,7 +68176,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 198 }, "RESPONSIVE": { "score": 0, @@ -68139,9 +68221,10 @@ "resolved_hostname": "www.gruene-hs.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://gruene-hs.de/templates/lessallrounder/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "http://www.gruene-hs.de/templates/lessallrounder/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "217.160.233.142" ], @@ -68193,7 +68276,7 @@ "opengraph": null, "title": "Home" }, - "duration": 326, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -68220,7 +68303,7 @@ "opengraph": null, "title": "Home" }, - "duration": 76, + "duration": 268, "error": null, "responsive": { "document_width": { @@ -68269,7 +68352,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -68313,9 +68396,9 @@ "resolved_hostname": "www.gruene-hsk.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-hsk.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.133.13" ], @@ -68332,7 +68415,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -68340,7 +68423,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-hsk.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -68374,7 +68457,7 @@ ], "title": "grüne Politik im Hochsauerlandkreis › Grüne Hochsauerlandkreis" }, - "duration": 773, + "duration": 703, "error": null, "responsive": { "document_width": { @@ -68422,7 +68505,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 773 + "value": 703 }, "RESPONSIVE": { "score": 0, @@ -68515,7 +68598,7 @@ "opengraph": null, "title": "Die Grünen – Ortsverband Hückelhoven" }, - "duration": 189, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -68564,7 +68647,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 192 }, "RESPONSIVE": { "score": 0, @@ -68604,9 +68687,9 @@ "resolved_hostname": "www.gruene-huellhorst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-huellhorst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68648,7 +68731,7 @@ "opengraph": null, "title": "Grüner Ortsverband Hüllhorst: Aktuelles" }, - "duration": 205, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -68696,7 +68779,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -68740,9 +68823,9 @@ "resolved_hostname": "www.gruene-huenxe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-huenxe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.233.85.52" ], @@ -68800,7 +68883,7 @@ ], "title": "DIE GRÜNEN IN HÜNXE" }, - "duration": 441, + "duration": 597, "error": null, "responsive": { "document_width": { @@ -68848,7 +68931,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 441 + "value": 597 }, "RESPONSIVE": { "score": 1, @@ -68888,9 +68971,9 @@ "resolved_hostname": "www.gruene-huerth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-huerth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -68932,7 +69015,7 @@ "opengraph": null, "title": "Die GRÜNEN HÜRTH: Startseite" }, - "duration": 200, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -68980,7 +69063,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -69020,9 +69103,9 @@ "resolved_hostname": "www.gruene-ibbenbueren.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ibbenbueren.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -69064,7 +69147,7 @@ "opengraph": null, "title": "Ortsverband Ibbenbüren: Startseite" }, - "duration": 202, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -69112,7 +69195,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -69197,7 +69280,7 @@ "opengraph": null, "title": "Grüne Igensdorf" }, - "duration": 105, + "duration": 110, "error": null, "responsive": { "document_width": { @@ -69220,7 +69303,7 @@ "opengraph": null, "title": "Grüne Igensdorf" }, - "duration": 100, + "duration": 106, "error": null, "responsive": { "document_width": { @@ -69271,7 +69354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 102 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -69311,9 +69394,9 @@ "resolved_hostname": "www.gruene-ilmkreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ilmkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -69355,7 +69438,7 @@ "opengraph": null, "title": "Kreisverband Ilmkreis: Home" }, - "duration": 171, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -69403,7 +69486,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -69447,9 +69530,9 @@ "resolved_hostname": "www.gruene-in-halle.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-in-halle.de/inhalte/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.112" ], @@ -69507,7 +69590,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 980, + "duration": 33, "error": null, "responsive": { "document_width": { @@ -69553,9 +69636,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 980 + "value": 33 }, "RESPONSIVE": { "score": 1, @@ -69571,7 +69654,7 @@ "value": true } }, - "score": 7.5 + "score": 8.0 }, { "details": { @@ -69599,9 +69682,9 @@ "resolved_hostname": "www.gruene-jesteburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-jesteburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "83.138.86.177" ], @@ -69659,7 +69742,7 @@ ], "title": "Grüner Ortsverband Samtgemeinde Jesteburg" }, - "duration": 430, + "duration": 417, "error": null, "responsive": { "document_width": { @@ -69707,7 +69790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 417 }, "RESPONSIVE": { "score": 1, @@ -69748,9 +69831,9 @@ "resolved_hostname": "www.gruene-juechen.de" } }, - "icons": [ - "1b9ca126dff5ed42e5ad7e572c0cd2c3.ico" - ], + "icons": { + "http://www.gruene-juechen.de/images/favicon.ico": "1b9ca126dff5ed42e5ad7e572c0cd2c3.ico" + }, "ipv4_addresses": [ "217.160.223.185" ], @@ -69795,7 +69878,7 @@ "opengraph": null, "title": "Wilkommen bei den Grünen in Jüchen" }, - "duration": 127, + "duration": 139, "error": null, "responsive": { "document_width": { @@ -69818,7 +69901,7 @@ "opengraph": null, "title": "Wilkommen bei den Grünen in Jüchen" }, - "duration": 127, + "duration": 143, "error": null, "responsive": { "document_width": { @@ -69868,7 +69951,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 127 + "value": 141 }, "RESPONSIVE": { "score": 0, @@ -69912,9 +69995,9 @@ "resolved_hostname": "www.gruene-kaarst.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenekaarst.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.94.254.77" ], @@ -69973,7 +70056,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Kaarst" }, - "duration": 126, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -70021,7 +70104,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 126 + "value": 734 }, "RESPONSIVE": { "score": 1, @@ -70061,9 +70144,9 @@ "resolved_hostname": "www.gruene-kamp-lintfort.de" } }, - "icons": [ - "ca2bb9889f5870b0b31006f9f09a23df.ico" - ], + "icons": { + "https://cdn.website-start.de/favicon.ico": "ca2bb9889f5870b0b31006f9f09a23df.ico" + }, "ipv4_addresses": [ "217.160.0.171" ], @@ -70108,7 +70191,7 @@ ], "title": "Grüne Kamp-Lintfort - STARTSEITE" }, - "duration": 309, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -70156,7 +70239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 296 }, "RESPONSIVE": { "score": 0, @@ -70199,9 +70282,9 @@ "resolved_hostname": "www.gruene-karlsruhe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenekarlsruhe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.72" ], @@ -70260,7 +70343,7 @@ ], "title": "Grüne KarlsruheGrüne Karlsruhe" }, - "duration": 792, + "duration": 840, "error": null, "responsive": { "document_width": { @@ -70307,7 +70390,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 792 + "value": 840 }, "RESPONSIVE": { "score": 0, @@ -70385,7 +70468,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -70452,7 +70535,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 61 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -70492,9 +70575,9 @@ "resolved_hostname": "www.gruene-kempen.de" } }, - "icons": [ - "d4f23c6cab0cbf1587305c18d9551a83.png" - ], + "icons": { + "https://www.gruene-kempen.de/assets/images/favicon-128x128.png": "d4f23c6cab0cbf1587305c18d9551a83.png" + }, "ipv4_addresses": [ "94.130.133.62" ], @@ -70536,7 +70619,7 @@ "opengraph": null, "title": "Bündnis 90 - Die Grünen Ortverband Kempen - aktuelle Lokalpolitik aus Kempen, Kreis Viersen und NRW Nordrhein Westfalen" }, - "duration": 135, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -70584,7 +70667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 135 + "value": 168 }, "RESPONSIVE": { "score": 1, @@ -70628,9 +70711,9 @@ "resolved_hostname": "www.gruene-kerpen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruenekerpen.de/wp-content/themes/Urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.62.223" ], @@ -70688,7 +70771,7 @@ ], "title": "Stadtverband Kerpen" }, - "duration": 487, + "duration": 489, "error": null, "responsive": { "document_width": { @@ -70735,7 +70818,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 487 + "value": 489 }, "RESPONSIVE": { "score": 1, @@ -70778,9 +70861,9 @@ "resolved_hostname": "www.gruene-kiel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kiel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -70825,7 +70908,7 @@ "opengraph": null, "title": "Kieler Grüne: Home" }, - "duration": 195, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -70872,7 +70955,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -70912,9 +70995,9 @@ "resolved_hostname": "www.gruene-kirchheim-teck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kirchheim-teck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -70956,7 +71039,7 @@ "opengraph": null, "title": "GRÜNE Kirchheim-Teck: Home/ Aktuelles" }, - "duration": 201, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -71004,7 +71087,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -71089,7 +71172,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Ortsverband Kirkel" }, - "duration": 84, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -71112,7 +71195,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen - Ortsverband Kirkel" }, - "duration": 63, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -71163,7 +71246,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 74 + "value": 68 }, "RESPONSIVE": { "score": 0, @@ -71208,9 +71291,9 @@ "resolved_hostname": "www.gruene-koenigswinter.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-koenigswinter.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.53" ], @@ -71269,7 +71352,7 @@ ], "title": "Grüne Königswinter" }, - "duration": 315, + "duration": 722, "error": null, "responsive": { "document_width": { @@ -71317,7 +71400,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 315 + "value": 722 }, "RESPONSIVE": { "score": 1, @@ -71387,7 +71470,7 @@ "opengraph": null, "title": null }, - "duration": 75, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -71437,7 +71520,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 75 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -71483,9 +71566,10 @@ "resolved_hostname": "www.gruene-kraichtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-kraichtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-kraichtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.126" ], @@ -71538,7 +71622,7 @@ ], "title": "Grüne Kraichtal" }, - "duration": 866, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -71572,7 +71656,7 @@ ], "title": "Grüne Kraichtal" }, - "duration": 510, + "duration": 886, "error": null, "responsive": { "document_width": { @@ -71620,7 +71704,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 688 + "value": 622 }, "RESPONSIVE": { "score": 1, @@ -71659,9 +71743,9 @@ "resolvable": false } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://gruene-krefeld.de/fileadmin/templates/main/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "81.169.145.158" ], @@ -71693,7 +71777,7 @@ "opengraph": null, "title": "Grüne Krefeld: Start" }, - "duration": 177, + "duration": 123, "error": null, "responsive": { "document_width": { @@ -71742,7 +71826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 177 + "value": 123 }, "RESPONSIVE": { "score": 0, @@ -71783,9 +71867,9 @@ "resolved_hostname": "www.gruene-kreis-harburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreis-harburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -71827,7 +71911,7 @@ "opengraph": null, "title": "Landkreis Harburg: Herzlich willkommen im Kreisverband Harburg-Land" }, - "duration": 200, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -71875,7 +71959,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -71915,9 +71999,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -71959,7 +72043,7 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 203, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -72007,7 +72091,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -72052,9 +72136,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -72108,7 +72192,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 413, + "duration": 424, "error": null, "responsive": { "document_width": { @@ -72155,7 +72239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 413 + "value": 424 }, "RESPONSIVE": { "score": 1, @@ -72199,9 +72283,9 @@ "resolved_hostname": "www.gruene-kreis-mettmann.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-mettmann.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.228" ], @@ -72253,11 +72337,11 @@ ], "title": "Die GRÜNEN im Kreis Mettmann" }, - "duration": 583, + "duration": 713, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1041, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -72300,7 +72384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 583 + "value": 713 }, "RESPONSIVE": { "score": 1, @@ -72340,9 +72424,9 @@ "resolved_hostname": "www.gruene-kreis-steinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreis-steinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72384,7 +72468,7 @@ "opengraph": null, "title": "Kreisverband Steinfurt: News" }, - "duration": 440, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -72432,7 +72516,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -72476,6 +72560,7 @@ "resolved_hostname": "www.gruene-kreis-unna.de" } }, + "icons": {}, "ipv4_addresses": [ "192.162.85.187" ], @@ -72537,7 +72622,7 @@ ], "title": "B90 / Die Grünen Kreisverband Unna" }, - "duration": 370, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -72570,9 +72655,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -72586,7 +72670,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 370 + "value": 312 }, "RESPONSIVE": { "score": 1, @@ -72602,7 +72686,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -72743,9 +72827,9 @@ "resolved_hostname": "www.gruene-kreis-wesel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-wesel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72877,9 +72961,9 @@ "resolved_hostname": "www.gruene-kreisrheinberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -72921,7 +73005,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Berg: Home" }, - "duration": 201, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -72969,7 +73053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -73009,9 +73093,9 @@ "resolved_hostname": "www.gruene-kuerten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73053,7 +73137,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Berg: Die Grünen - Kürten" }, - "duration": 211, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -73101,7 +73185,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -73141,9 +73225,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73185,7 +73269,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 204, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -73233,7 +73317,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -73273,9 +73357,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73317,7 +73401,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 200, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -73365,7 +73449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -73405,9 +73489,9 @@ "resolved_hostname": "www.gruene-kv-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73449,7 +73533,7 @@ "opengraph": null, "title": "Kreisverband Rotenburg: Home" }, - "duration": 196, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -73497,7 +73581,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -73537,9 +73621,9 @@ "resolved_hostname": "www.gruene-kv-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73581,7 +73665,7 @@ "opengraph": null, "title": "Kreisverband Stade: Aktuelle Informationen aus dem Kreisverband Stade - Bündnis90/Die Grünen" }, - "duration": 202, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -73629,7 +73713,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -73673,9 +73757,7 @@ "resolved_hostname": "www.gruene-kvwuppertal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "217.160.0.32" ], @@ -73728,7 +73810,7 @@ ], "title": "Willkommen - KV WuppertalKV Wuppertal" }, - "duration": 771, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -73773,9 +73855,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 771 + "value": 60 }, "RESPONSIVE": { "score": 1, @@ -73791,7 +73873,7 @@ "value": true } }, - "score": 9.5 + "score": 10.0 }, { "details": { @@ -73815,9 +73897,9 @@ "resolved_hostname": "www.gruene-kyffhaeuserkreis.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kyffhaeuserkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73859,7 +73941,7 @@ "opengraph": null, "title": "GRÜNE Kyffhäuserkreis #gruenekyf: Startseite" }, - "duration": 182, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -73907,7 +73989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 182 + "value": 187 }, "RESPONSIVE": { "score": 1, @@ -73947,9 +74029,9 @@ "resolved_hostname": "www.gruene-ladbergen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ladbergen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -73991,7 +74073,7 @@ "opengraph": null, "title": "Ortsverband Ladbergen: News" }, - "duration": 199, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -74039,7 +74121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -74080,9 +74162,9 @@ "resolved_hostname": "www.gruene-lage.de" } }, - "icons": [ - "042f0bf5868511974bfd22dcf2278fd8.ico" - ], + "icons": { + "http://gruene-lage.de/favicon.ico": "042f0bf5868511974bfd22dcf2278fd8.ico" + }, "ipv4_addresses": [ "185.21.102.75" ], @@ -74127,7 +74209,7 @@ "opengraph": null, "title": "Die Grünen Lage" }, - "duration": 63, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -74150,7 +74232,7 @@ "opengraph": null, "title": "Die Grünen Lage" }, - "duration": 71, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -74200,7 +74282,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 65 }, "RESPONSIVE": { "score": 0, @@ -74244,9 +74326,9 @@ "resolved_hostname": "www.gruene-lahntal.de" } }, - "icons": [ - "2e6ca33657d64802e2814814fe81a7b4.png" - ], + "icons": { + "http://www.gruene-lahntal.de/wp-content/themes/urwahl3000/favicon.png": "2e6ca33657d64802e2814814fe81a7b4.png" + }, "ipv4_addresses": [ "80.237.132.43" ], @@ -74263,7 +74345,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -74271,7 +74353,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-lahntal.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -74304,7 +74386,7 @@ ], "title": "" }, - "duration": 874, + "duration": 797, "error": null, "responsive": { "document_width": { @@ -74352,7 +74434,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 874 + "value": 797 }, "RESPONSIVE": { "score": 1, @@ -74395,9 +74477,9 @@ "resolved_hostname": "www.gruene-lambsheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lambsheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -74442,7 +74524,7 @@ "opengraph": null, "title": "Ortsverband Lambsheim: Startseite" }, - "duration": 210, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -74489,7 +74571,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -74529,9 +74611,9 @@ "resolved_hostname": "www.gruene-landau.de" } }, - "icons": [ - "df2da2390ae9bfe9fd19e654cfb0544d.ico" - ], + "icons": { + "https://www.gruene-landau.de/favicon.ico": "df2da2390ae9bfe9fd19e654cfb0544d.ico" + }, "ipv4_addresses": [ "37.202.7.173" ], @@ -74573,7 +74655,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Startseite" }, - "duration": 756, + "duration": 627, "error": null, "responsive": { "document_width": { @@ -74621,7 +74703,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 756 + "value": 627 }, "RESPONSIVE": { "score": 1, @@ -74665,9 +74747,9 @@ "resolved_hostname": "www.gruene-landkreis-kassel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-landkreis-kassel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.122.8" ], @@ -74726,7 +74808,7 @@ ], "title": "gruene-landkreis-kassel.de" }, - "duration": 601, + "duration": 493, "error": null, "responsive": { "document_width": { @@ -74774,7 +74856,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 601 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -74817,9 +74899,9 @@ "resolved_hostname": "www.gruene-landkreis-leipzig.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-landkreis-leipzig.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -74867,7 +74949,7 @@ "opengraph": null, "title": "Startseite - Kreisverband Landkreis Leipzig" }, - "duration": 267, + "duration": 269, "error": null, "responsive": { "document_width": { @@ -74915,7 +74997,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 267 + "value": 269 }, "RESPONSIVE": { "score": 0, @@ -74955,9 +75037,9 @@ "resolved_hostname": "www.gruene-landkreis-rostock.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-landkreis-rostock.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -74999,7 +75081,7 @@ "opengraph": null, "title": "Landkreis Rostock: Startseite" }, - "duration": 219, + "duration": 294, "error": null, "responsive": { "document_width": { @@ -75047,7 +75129,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 294 }, "RESPONSIVE": { "score": 1, @@ -75088,9 +75170,10 @@ "resolved_hostname": "www.gruene-landsberg.de" } }, - "icons": [ - "b2efc9598cd118ce6d8afc88734c05f5.ico" - ], + "icons": { + "http://gruene-landsberg.de/favicon.ico": "b2efc9598cd118ce6d8afc88734c05f5.ico", + "http://www.gruene-landsberg.de/favicon.ico": "b2efc9598cd118ce6d8afc88734c05f5.ico" + }, "ipv4_addresses": [ "80.237.132.89" ], @@ -75107,7 +75190,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75115,7 +75198,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-landsberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75135,7 +75218,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Landsberg am Lech" }, - "duration": 274, + "duration": 457, "error": null, "responsive": { "document_width": { @@ -75158,7 +75241,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Landsberg am Lech" }, - "duration": 341, + "duration": 687, "error": null, "responsive": { "document_width": { @@ -75208,7 +75291,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 572 }, "RESPONSIVE": { "score": 0, @@ -75252,9 +75335,9 @@ "resolved_hostname": "www.gruene-langenfeld.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-langenfeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.198" ], @@ -75307,7 +75390,7 @@ ], "title": "StartseiteGRÜNE LANGENFELD" }, - "duration": 591, + "duration": 165, "error": null, "responsive": { "document_width": { @@ -75354,7 +75437,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 591 + "value": 165 }, "RESPONSIVE": { "score": 1, @@ -75394,9 +75477,9 @@ "resolved_hostname": "www.gruene-langenhagen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-langenhagen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75438,7 +75521,7 @@ "opengraph": null, "title": "Grüne Langenhagen: Home" }, - "duration": 204, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -75486,7 +75569,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -75556,7 +75639,7 @@ "opengraph": null, "title": "http://gruene-langenzenn.de/" }, - "duration": 53, + "duration": 97, "error": null, "responsive": { "document_width": { @@ -75606,7 +75689,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 53 + "value": 97 }, "RESPONSIVE": { "score": 0, @@ -75647,9 +75730,9 @@ "resolved_hostname": "www.gruene-lehrte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lehrte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75691,7 +75774,7 @@ "opengraph": null, "title": "Grüne Lehrte: Home" }, - "duration": 200, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -75739,7 +75822,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 229 }, "RESPONSIVE": { "score": 1, @@ -75779,9 +75862,9 @@ "resolved_hostname": "www.gruene-lengerich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lengerich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -75823,7 +75906,7 @@ "opengraph": null, "title": "Grüne Lengerich: Startseite" }, - "duration": 191, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -75871,7 +75954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -75915,9 +75998,9 @@ "resolved_hostname": "www.gruene-li-rhm.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-li-rhm.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.213.78" ], @@ -75934,7 +76017,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75942,7 +76025,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-li-rhm.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -75977,7 +76060,7 @@ ], "title": "Aktuelles > Gruene Lichtenau/Rheinmünster" }, - "duration": 440, + "duration": 496, "error": null, "responsive": { "document_width": { @@ -76025,7 +76108,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 496 }, "RESPONSIVE": { "score": 0, @@ -76110,7 +76193,7 @@ "opengraph": null, "title": "Willkommen :: Bündnis 90 / Die Grünen Linnich" }, - "duration": 71, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -76133,7 +76216,7 @@ "opengraph": null, "title": "Willkommen :: Bündnis 90 / Die Grünen Linnich" }, - "duration": 70, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -76184,7 +76267,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 70 + "value": 71 }, "RESPONSIVE": { "score": 0, @@ -76228,9 +76311,9 @@ "resolved_hostname": "www.gruene-lippstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.die-gruenen-lippstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.187" ], @@ -76290,7 +76373,7 @@ ], "title": "Ortsverband Lippstadt" }, - "duration": 167, + "duration": 460, "error": null, "responsive": { "document_width": { @@ -76337,7 +76420,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 460 }, "RESPONSIVE": { "score": 1, @@ -76378,9 +76461,10 @@ "resolved_hostname": "www.gruene-liste-riedstadt.de" } }, - "icons": [ - "fd00dcf5b9a53b1e7d49d11b71e2a634.ico" - ], + "icons": { + "http://www.gruene-liste-riedstadt.de/favicon.ico": "fd00dcf5b9a53b1e7d49d11b71e2a634.ico", + "https://www.gruene-liste-riedstadt.de/favicon.ico": "fd00dcf5b9a53b1e7d49d11b71e2a634.ico" + }, "ipv4_addresses": [ "5.11.55.242" ], @@ -76419,7 +76503,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Riedstadt" }, - "duration": 296, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -76442,7 +76526,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Riedstadt" }, - "duration": 350, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -76491,7 +76575,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 323 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -76538,9 +76622,10 @@ "resolved_hostname": "www.gruene-loerrach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-loerrach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-loerrach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.57" ], @@ -76593,7 +76678,7 @@ ], "title": "Bündnis 90 / DIE GRÜNEN Lörrach" }, - "duration": 476, + "duration": 489, "error": null, "responsive": { "document_width": { @@ -76627,7 +76712,7 @@ ], "title": "Bündnis 90 / DIE GRÜNEN Lörrach" }, - "duration": 546, + "duration": 612, "error": null, "responsive": { "document_width": { @@ -76675,7 +76760,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 511 + "value": 550 }, "RESPONSIVE": { "score": 1, @@ -76722,9 +76807,10 @@ "resolved_hostname": "www.gruene-lohmar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-lohmar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-lohmar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.40.2.14" ], @@ -76777,7 +76863,7 @@ ], "title": "GRÜNE Lohmar" }, - "duration": 466, + "duration": 398, "error": null, "responsive": { "document_width": { @@ -76811,7 +76897,7 @@ ], "title": "GRÜNE Lohmar" }, - "duration": 511, + "duration": 500, "error": null, "responsive": { "document_width": { @@ -76859,7 +76945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 488 + "value": 449 }, "RESPONSIVE": { "score": 1, @@ -76958,7 +77044,7 @@ ], "title": "Ihr seid grün - wir sind grüner! - Bündnis 90 / die Grünen - LotteBündnis 90 / die Grünen – Lotte | Ihr seid grün – wir sind grüner!" }, - "duration": 294, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -77007,7 +77093,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 231 }, "RESPONSIVE": { "score": 0, @@ -77051,9 +77137,9 @@ "resolved_hostname": "www.gruene-loxstedt-schiffdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-loxstedt-schiffdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.40.85.68" ], @@ -77111,7 +77197,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 372, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -77159,7 +77245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 363 }, "RESPONSIVE": { "score": 1, @@ -77203,9 +77289,9 @@ "resolved_hostname": "www.gruene-lsa.de" } }, - "icons": [ - "71552f9c7124091304e29d797a89192d.png" - ], + "icons": { + "https://www.gruene-lsa.de/wordpress/wp-content/uploads/2016/11/cropped-GRÜNE-Profilbild-klein-300x300.png": "71552f9c7124091304e29d797a89192d.png" + }, "ipv4_addresses": [ "134.119.94.142" ], @@ -77256,7 +77342,7 @@ ], "title": "GRÜNE LSA – Zukunft ist, was wir draus machen." }, - "duration": 926, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -77303,7 +77389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 926 + "value": 878 }, "RESPONSIVE": { "score": 1, @@ -77346,9 +77432,9 @@ "resolved_hostname": "www.gruene-lu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77393,7 +77479,7 @@ "opengraph": null, "title": "B90/GRÜNE Ludwigshafen: Home" }, - "duration": 187, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -77440,7 +77526,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -77480,9 +77566,9 @@ "resolved_hostname": "www.gruene-ludwigslust-parchim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ludwigslust-parchim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77524,7 +77610,7 @@ "opengraph": null, "title": "Grüne Ludwigslust-Parchim: Startseite" }, - "duration": 206, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -77572,7 +77658,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -77612,9 +77698,9 @@ "resolved_hostname": "www.gruene-luebbecke.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luebbecke.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77656,7 +77742,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lübbecke: Home" }, - "duration": 227, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -77704,7 +77790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -77744,9 +77830,9 @@ "resolved_hostname": "www.gruene-luebeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-luebeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -77788,7 +77874,7 @@ "opengraph": null, "title": "GRÜNE LÜBECK: Home" }, - "duration": 200, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -77836,7 +77922,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -77893,7 +77979,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -77901,7 +77987,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-luechow-dannenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -77909,7 +77995,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 335, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -77924,7 +78010,7 @@ "opengraph": null, "title": null }, - "duration": 96, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -77947,16 +78033,16 @@ "opengraph": null, "title": null }, - "duration": 97, + "duration": 96, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 335, "768x1024": 768 }, - "viewport_meta_tag": null + "viewport_meta_tag": "width=device-width, initial-scale=1.0" }, "status_code": 200, "url": "http://www.gruene-luechow-dannenberg.de/" @@ -77998,7 +78084,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 96 + "value": 95 }, "RESPONSIVE": { "score": 1, @@ -78067,39 +78153,99 @@ } ], "responsive": { - "min_width": 2000 + "min_width": 320 }, "urlchecks": [ { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 65, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "http://gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 64, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "http://www.gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 152, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "https://gruene-luehe.de/" }, { - "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "content": { + "canonical_link": null, + "encoding": "iso-8859-1", + "generator": null, + "icon": null, + "opengraph": null, + "title": "index.html" + }, + "duration": 156, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 200, "url": "https://www.gruene-luehe.de/" } ] @@ -78132,14 +78278,13 @@ "value": false }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": null + "value": 109 }, "RESPONSIVE": { "score": 0, @@ -78155,7 +78300,7 @@ "value": true } }, - "score": 3.0 + "score": 5.5 }, { "details": { @@ -78179,9 +78324,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78223,7 +78368,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 202, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -78271,7 +78416,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -78311,9 +78456,9 @@ "resolved_hostname": "www.gruene-luenen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luenen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78355,7 +78500,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lünen: Startseite" }, - "duration": 210, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -78403,7 +78548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 244 }, "RESPONSIVE": { "score": 1, @@ -78443,9 +78588,9 @@ "resolved_hostname": "www.gruene-mainz-bingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-mainz-bingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -78487,7 +78632,7 @@ "opengraph": null, "title": "Kreisverband Mainz-Bingen: Home" }, - "duration": 224, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -78535,7 +78680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -78620,7 +78765,7 @@ "opengraph": null, "title": "Überblick - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Malsch" }, - "duration": 65, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -78643,7 +78788,7 @@ "opengraph": null, "title": "Überblick - BÜNDNIS 90/DIE GRÜNEN – Ortsverband Malsch" }, - "duration": 67, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -78694,7 +78839,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 63 }, "RESPONSIVE": { "score": 0, @@ -78738,9 +78883,9 @@ "resolved_hostname": "www.gruene-mandelbachtal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mandelbachtal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -78786,7 +78931,7 @@ "opengraph": null, "title": "Ortsverband Mandelbachtal - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 306, + "duration": 292, "error": null, "responsive": { "document_width": { @@ -78833,7 +78978,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 292 }, "RESPONSIVE": { "score": 1, @@ -78879,9 +79024,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mannheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-mannheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "195.225.106.141" ], @@ -78956,7 +79102,7 @@ ], "title": "" }, - "duration": 488, + "duration": 478, "error": null, "responsive": { "document_width": { @@ -79004,7 +79150,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -79075,7 +79221,7 @@ "opengraph": null, "title": "Home" }, - "duration": 59, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -79125,7 +79271,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 69 }, "RESPONSIVE": { "score": 0, @@ -79165,9 +79311,9 @@ "resolvable": false } }, - "icons": [ - "7e6c4a5e862318819087f280178d22f8.ico" - ], + "icons": { + "http://www.gruene-marsberg.de/favicon.ico": "7e6c4a5e862318819087f280178d22f8.ico" + }, "ipv4_addresses": [ "81.169.145.156" ], @@ -79199,7 +79345,7 @@ "opengraph": null, "title": "Die Grünen Marsberg" }, - "duration": 67, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -79248,7 +79394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 58 }, "RESPONSIVE": { "score": 0, @@ -79296,9 +79442,10 @@ "resolved_hostname": "www.gruene-mechernich.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mechernich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-mechernich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -79350,7 +79497,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Mechernich" }, - "duration": 318, + "duration": 383, "error": null, "responsive": { "document_width": { @@ -79383,7 +79530,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Mechernich" }, - "duration": 712, + "duration": 469, "error": null, "responsive": { "document_width": { @@ -79431,7 +79578,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 515 + "value": 426 }, "RESPONSIVE": { "score": 1, @@ -79474,9 +79621,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-meerbusch.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.113.46.162" ], @@ -79519,7 +79666,7 @@ ], "title": "Bündnis 90 / Die Grünen - Ortsverband - MeerbuschBündnis 90 / Die Grünen" }, - "duration": 357, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -79566,7 +79713,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 323 }, "RESPONSIVE": { "score": 1, @@ -79660,7 +79807,7 @@ "opengraph": null, "title": "Grün wächst" }, - "duration": 143, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -79687,7 +79834,7 @@ "opengraph": null, "title": "Grün wächst" }, - "duration": 156, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -79737,7 +79884,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 162 }, "RESPONSIVE": { "score": 0, @@ -79780,9 +79927,9 @@ "resolved_hostname": "www.gruene-meissen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-meissen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -79830,7 +79977,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Meißen" }, - "duration": 229, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -79878,7 +80025,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -79921,9 +80068,9 @@ "resolved_hostname": "www.gruene-menden.de" } }, - "icons": [ - "f4442c28398da7eef7012f50cf3a337c.ico" - ], + "icons": { + "http://www.gruene-menden.de/fileadmin/templates/favicon.ico": "f4442c28398da7eef7012f50cf3a337c.ico" + }, "ipv4_addresses": [ "85.13.131.86" ], @@ -79982,7 +80129,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Menden" }, - "duration": 134, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -80030,7 +80177,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 160 }, "RESPONSIVE": { "score": 0, @@ -80077,7 +80224,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-merzenich.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-merzenich.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -80097,7 +80244,7 @@ "opengraph": null, "title": "Informationsseite - DENIC eG" }, - "duration": 111, + "duration": 118, "error": null, "responsive": null, "status_code": 200, @@ -80138,7 +80285,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 111 + "value": 118 }, "RESPONSIVE": { "score": 0, @@ -80183,9 +80330,9 @@ "resolved_hostname": "www.gruene-merzig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-merzig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -80231,7 +80378,7 @@ "opengraph": null, "title": "Stadtverband Merzig - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 287, + "duration": 298, "error": null, "responsive": { "document_width": { @@ -80278,7 +80425,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 287 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -80366,7 +80513,7 @@ "opengraph": null, "title": "Die Grünen in Meschede" }, - "duration": 76, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -80389,7 +80536,7 @@ "opengraph": null, "title": "Die Grünen in Meschede" }, - "duration": 45, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -80440,7 +80587,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 60 + "value": 76 }, "RESPONSIVE": { "score": 1, @@ -80480,9 +80627,9 @@ "resolved_hostname": "www.gruene-mettmann.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mettmann.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -80524,7 +80671,7 @@ "opengraph": null, "title": "Ortsverband Mettmann: Home" }, - "duration": 223, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -80572,7 +80719,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -80612,6 +80759,7 @@ "resolved_hostname": "www.gruene-mg.de" } }, + "icons": {}, "ipv4_addresses": [ "78.47.15.197" ], @@ -80656,7 +80804,7 @@ "opengraph": null, "title": "Hier und jetzt in MG..." }, - "duration": 69, + "duration": 71, "error": null, "responsive": { "document_width": { @@ -80689,9 +80837,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -80706,7 +80853,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 69 + "value": 71 }, "RESPONSIVE": { "score": 0, @@ -80722,7 +80869,7 @@ "value": true } }, - "score": 5.0 + "score": 6.0 }, { "details": { @@ -80750,9 +80897,9 @@ "resolved_hostname": "www.gruene-mh.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-mh.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.194.229.119" ], @@ -80806,7 +80953,7 @@ ], "title": "gruene-mh.de" }, - "duration": 485, + "duration": 604, "error": null, "responsive": { "document_width": { @@ -80853,7 +81000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 485 + "value": 604 }, "RESPONSIVE": { "score": 1, @@ -80900,9 +81047,10 @@ "resolved_hostname": "www.gruene-michelstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-michelstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-michelstadt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -80955,7 +81103,7 @@ ], "title": "GRÜNE MICHELSTADT" }, - "duration": 850, + "duration": 819, "error": null, "responsive": { "document_width": { @@ -80989,7 +81137,7 @@ ], "title": "GRÜNE MICHELSTADT" }, - "duration": 306, + "duration": 935, "error": null, "responsive": { "document_width": { @@ -81037,7 +81185,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 578 + "value": 877 }, "RESPONSIVE": { "score": 1, @@ -81080,7 +81228,7 @@ "resolvable_urls": [ { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81088,7 +81236,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81096,7 +81244,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81104,7 +81252,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", + "message": "HTTPConnectionPool(host='gr%c3%bcne-milk.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',))", "type": "" }, "redirects_to": null, @@ -81232,7 +81380,7 @@ "opengraph": null, "title": "Kreisverband Miltenberg | Bündnis 90 / Die Grünen" }, - "duration": 267, + "duration": 323, "error": null, "responsive": { "document_width": { @@ -81281,7 +81429,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 267 + "value": 323 }, "RESPONSIVE": { "score": 1, @@ -81352,7 +81500,7 @@ "opengraph": null, "title": "Start | Die Grünen Minden" }, - "duration": 80, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -81402,7 +81550,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 80 + "value": 77 }, "RESPONSIVE": { "score": 0, @@ -81446,9 +81594,7 @@ "resolved_hostname": "www.gruene-mitte.com" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "188.94.25.86" ], @@ -81510,7 +81656,7 @@ ], "title": "Willkommen bei den GRÜNEN in Hamburg-Mitte - GRÜNE Hamburg-Mitte" }, - "duration": 323, + "duration": 326, "error": null, "responsive": { "document_width": { @@ -81557,7 +81703,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 323 + "value": 326 }, "RESPONSIVE": { "score": 1, @@ -81600,9 +81746,9 @@ "resolved_hostname": "www.gruene-mittelsachsen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-mittelsachsen.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -81650,7 +81796,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN in Mittelsachsen" }, - "duration": 239, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -81698,7 +81844,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 249 }, "RESPONSIVE": { "score": 0, @@ -81742,9 +81888,9 @@ "resolved_hostname": "www.gruene-mk.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-mk.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.130.118" ], @@ -81796,7 +81942,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN KREISVERBAND MARK" }, - "duration": 731, + "duration": 586, "error": null, "responsive": { "document_width": { @@ -81843,7 +81989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 731 + "value": 586 }, "RESPONSIVE": { "score": 1, @@ -81887,9 +82033,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -81942,7 +82088,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 907, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -81989,7 +82135,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 907 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -82029,9 +82175,9 @@ "resolved_hostname": "www.gruene-moehnesee.de" } }, - "icons": [ - "2c77da304308884f973dc578f33f22f3.ico" - ], + "icons": { + "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico": "2c77da304308884f973dc578f33f22f3.ico" + }, "ipv4_addresses": [ "217.160.231.212" ], @@ -82081,7 +82227,7 @@ ], "title": "Grüne-Möhnesee - Startseite | Facebook" }, - "duration": 75, + "duration": 618, "error": null, "responsive": { "document_width": { @@ -82127,9 +82273,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 75 + "value": 618 }, "RESPONSIVE": { "score": 0, @@ -82145,7 +82291,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -82169,6 +82315,7 @@ "resolved_hostname": "www.gruene-moers.de" } }, + "icons": {}, "ipv4_addresses": [ "62.75.146.61" ], @@ -82213,7 +82360,7 @@ "opengraph": null, "title": "Start: Bündnis 90/Die Grünen Moers" }, - "duration": 515, + "duration": 664, "error": null, "responsive": { "document_width": { @@ -82246,9 +82393,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -82263,7 +82409,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 515 + "value": 664 }, "RESPONSIVE": { "score": 0, @@ -82279,7 +82425,7 @@ "value": true } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -82303,9 +82449,9 @@ "resolved_hostname": "www.gruene-moormerland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -82347,7 +82493,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Startseite" }, - "duration": 195, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -82395,7 +82541,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -82483,7 +82629,7 @@ "opengraph": null, "title": null }, - "duration": 83, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -82506,7 +82652,7 @@ "opengraph": null, "title": null }, - "duration": 120, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -82555,9 +82701,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 102 + "value": 93 }, "RESPONSIVE": { "score": 1, @@ -82573,7 +82719,7 @@ "value": true } }, - "score": 4.5 + "score": 5.0 }, { "details": { @@ -82600,9 +82746,9 @@ "resolved_hostname": "www.gruene-muenchen-au-haidhausen.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-au-haidhausen.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82650,7 +82796,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Au/Haidhausen: Startseite Grüne Au/Haidhausen" }, - "duration": 98, + "duration": 53, "error": null, "responsive": { "document_width": { @@ -82698,7 +82844,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 98 + "value": 53 }, "RESPONSIVE": { "score": 0, @@ -82741,9 +82887,9 @@ "resolved_hostname": "www.gruene-muenchen-giesing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-giesing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82791,7 +82937,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Giesing/Harlaching: Startseite Grüne Giesing-Harlaching" }, - "duration": 85, + "duration": 91, "error": null, "responsive": { "document_width": { @@ -82839,7 +82985,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 91 }, "RESPONSIVE": { "score": 0, @@ -82882,9 +83028,9 @@ "resolved_hostname": "www.gruene-muenchen-nord.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-nord.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -82932,7 +83078,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Nord: Startseite Grüne OV Nord" }, - "duration": 57, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -82978,9 +83124,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 57 + "value": 103 }, "RESPONSIVE": { "score": 0, @@ -82996,7 +83142,7 @@ "value": true } }, - "score": 7.0 + "score": 6.5 }, { "details": { @@ -83023,9 +83169,9 @@ "resolved_hostname": "www.gruene-muenchen-pasing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-muenchen-pasing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -83073,7 +83219,7 @@ "opengraph": null, "title": "Grüne München - Ortsverband Pasing/Aubing: Startseite Grüne Pasing Aubing" }, - "duration": 52, + "duration": 54, "error": null, "responsive": { "document_width": { @@ -83096,6 +83242,711 @@ "level": "DE:ORTSVERBAND", "state": "Bayern" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 54 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-perlach.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-perlach.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-perlach.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-perlach.de" + }, + "www.gruene-muenchen-perlach.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-perlach.de" + } + }, + "icons": { + "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-perlach.de/", + "url": "http://gruene-muenchen-perlach.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-perlach.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-perlach.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-perlach.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-perlach.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Ramersdorf/Perlach: Startseite Grüne Ramersdorf-Perlach" + }, + "duration": 87, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-perlach.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-perlach.de/", + "meta": { + "city": "Ramersdorf-Perlach", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 87 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-sendling.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-sendling.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-sendling.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-sendling.de" + }, + "www.gruene-muenchen-sendling.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-sendling.de" + } + }, + "icons": { + "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-sendling.de/", + "url": "http://gruene-muenchen-sendling.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-sendling.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-sendling.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-sendling.de/" + } + ], + "responsive": { + "min_width": 1083 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-sendling.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Sendling: Startseite Grüne OV Sendling" + }, + "duration": 86, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1125, + "1920x1080": 1920, + "320x480": 1083, + "768x1024": 1083 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-sendling.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-sendling.de", + "meta": { + "city": "Sendling", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 86 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-stoff.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-stoff.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-stoff.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-stoff.de" + }, + "www.gruene-muenchen-stoff.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-stoff.de" + } + }, + "icons": { + "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-stoff.de/", + "url": "http://gruene-muenchen-stoff.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-stoff.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-stoff.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-stoff.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-stoff.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband STOFF: Startseite Grüne STOFF Solln-Thalkirchen-Obersendling-Forstenried-Fürstenried" + }, + "duration": 94, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-stoff.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-stoff.de/", + "meta": { + "city": "STOFF", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 94 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-westend.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-westend.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-westend.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-westend.de" + }, + "www.gruene-muenchen-westend.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-westend.de" + } + }, + "icons": { + "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-westend.de/", + "url": "http://gruene-muenchen-westend.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-westend.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-westend.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-westend.de/" + } + ], + "responsive": { + "min_width": 940 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-westend.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München: Die Grünen im Westend und Laim" + }, + "duration": 89, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 940, + "768x1024": 940 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-westend.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-westend.de", + "meta": { + "city": "Westend/Laim", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 1, + "type": "number", + "value": 89 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.0 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-muenchen-zentral.de/" + ], + "cms": "typo3", + "feeds": [ + "http://www.gruene-muenchen-zentral.de/rss.xml" + ], + "hostnames": { + "gruene-muenchen-zentral.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "gruene-muenchen-zentral.de" + }, + "www.gruene-muenchen-zentral.de": { + "ip_addresses": [ + "134.119.225.163" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-muenchen-zentral.de" + } + }, + "icons": { + "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, + "ipv4_addresses": [ + "134.119.225.163" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-muenchen-zentral.de/", + "url": "http://gruene-muenchen-zentral.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "http://www.gruene-muenchen-zentral.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-muenchen-zentral.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-muenchen-zentral.de/" + } + ], + "responsive": { + "min_width": 1083 + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-muenchen-zentral.de/rss.xml" + ], + "generator": "TYPO3 CMS", + "icon": "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico", + "opengraph": null, + "title": "Grüne München - Ortsverband Zentral: Startseite Grüne OV Zentral" + }, + "duration": 52, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1125, + "1920x1080": 1920, + "320x480": 1083, + "768x1024": 1083 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "http://www.gruene-muenchen-zentral.de/" + } + ] + }, + "input_url": "http://www.gruene-muenchen-zentral.de", + "meta": { + "city": "Zentral", + "district": "München", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -83139,711 +83990,6 @@ }, "score": 7.0 }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-perlach.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-perlach.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-perlach.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-perlach.de" - }, - "www.gruene-muenchen-perlach.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-perlach.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-perlach.de/", - "url": "http://gruene-muenchen-perlach.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-perlach.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-perlach.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-perlach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-perlach.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-perlach.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-perlach.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Ramersdorf/Perlach: Startseite Grüne Ramersdorf-Perlach" - }, - "duration": 48, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-perlach.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-perlach.de/", - "meta": { - "city": "Ramersdorf-Perlach", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 48 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-sendling.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-sendling.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-sendling.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-sendling.de" - }, - "www.gruene-muenchen-sendling.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-sendling.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-sendling.de/", - "url": "http://gruene-muenchen-sendling.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-sendling.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-sendling.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-sendling.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-sendling.de/" - } - ], - "responsive": { - "min_width": 1083 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-sendling.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-sendling.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Sendling: Startseite Grüne OV Sendling" - }, - "duration": 84, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1125, - "1920x1080": 1920, - "320x480": 1083, - "768x1024": 1083 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-sendling.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-sendling.de", - "meta": { - "city": "Sendling", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 84 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-stoff.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-stoff.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-stoff.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-stoff.de" - }, - "www.gruene-muenchen-stoff.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-stoff.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-stoff.de/", - "url": "http://gruene-muenchen-stoff.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-stoff.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-stoff.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-stoff.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-stoff.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-stoff.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-stoff.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband STOFF: Startseite Grüne STOFF Solln-Thalkirchen-Obersendling-Forstenried-Fürstenried" - }, - "duration": 65, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-stoff.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-stoff.de/", - "meta": { - "city": "STOFF", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 65 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-westend.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-westend.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-westend.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-westend.de" - }, - "www.gruene-muenchen-westend.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-westend.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-westend.de/", - "url": "http://gruene-muenchen-westend.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-westend.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-westend.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-westend.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-westend.de/" - } - ], - "responsive": { - "min_width": 940 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-westend.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-westend.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München: Die Grünen im Westend und Laim" - }, - "duration": 48, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 940, - "768x1024": 940 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-westend.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-westend.de", - "meta": { - "city": "Westend/Laim", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 48 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 7.0 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-muenchen-zentral.de/" - ], - "cms": "typo3", - "feeds": [ - "http://www.gruene-muenchen-zentral.de/rss.xml" - ], - "hostnames": { - "gruene-muenchen-zentral.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "gruene-muenchen-zentral.de" - }, - "www.gruene-muenchen-zentral.de": { - "ip_addresses": [ - "134.119.225.163" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-muenchen-zentral.de" - } - }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], - "ipv4_addresses": [ - "134.119.225.163" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-muenchen-zentral.de/", - "url": "http://gruene-muenchen-zentral.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "http://www.gruene-muenchen-zentral.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-muenchen-zentral.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-muenchen-zentral.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-muenchen-zentral.de/" - } - ], - "responsive": { - "min_width": 1083 - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-muenchen-zentral.de/rss.xml" - ], - "generator": "TYPO3 CMS", - "icon": "http://www.gruene-muenchen-zentral.de/fileadmin/layout/favicon.ico", - "opengraph": null, - "title": "Grüne München - Ortsverband Zentral: Startseite Grüne OV Zentral" - }, - "duration": 106, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1125, - "1920x1080": 1920, - "320x480": 1083, - "768x1024": 1083 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "http://www.gruene-muenchen-zentral.de/" - } - ] - }, - "input_url": "http://www.gruene-muenchen-zentral.de", - "meta": { - "city": "Zentral", - "district": "München", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 106 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -83870,9 +84016,9 @@ "resolved_hostname": "www.gruene-mutterstadt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-mutterstadt.de/Wordpress/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.4.195.1" ], @@ -83930,7 +84076,7 @@ ], "title": "GRÜNE in Mutterstadt" }, - "duration": 292, + "duration": 345, "error": null, "responsive": { "document_width": { @@ -83978,7 +84124,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 292 + "value": 345 }, "RESPONSIVE": { "score": 1, @@ -84019,9 +84165,9 @@ "resolved_hostname": "www.gruene-mw.de" } }, - "icons": [ - "360d1d2987fcd886dbfb83f4cf2ae833.ico" - ], + "icons": { + "http://www.gruene-mw.de/bilder/icon.ico": "360d1d2987fcd886dbfb83f4cf2ae833.ico" + }, "ipv4_addresses": [ "213.188.99.90" ], @@ -84038,7 +84184,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -84046,7 +84192,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-mw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -84062,7 +84208,7 @@ "urlchecks": [ { "content": null, - "duration": 62, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -84085,7 +84231,7 @@ "opengraph": null, "title": "B90/Die Grünen - Mörfelden-Walldorf |" }, - "duration": 237, + "duration": 511, "error": null, "responsive": { "document_width": { @@ -84135,7 +84281,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 418 }, "RESPONSIVE": { "score": 1, @@ -84175,9 +84321,9 @@ "resolved_hostname": "www.gruene-myk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-myk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -84219,7 +84365,7 @@ "opengraph": null, "title": "KV Mayen-Koblenz: HOME" }, - "duration": 195, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -84267,7 +84413,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -84307,9 +84453,9 @@ "resolved_hostname": "www.gruene-nettetal.de" } }, - "icons": [ - "cc8af562ad5ee310b2be91d824f630fe.ico" - ], + "icons": { + "http://gruene-nettetal.de/wordpress/wp-content/themes/greenpubl/images/favicon.ico": "cc8af562ad5ee310b2be91d824f630fe.ico" + }, "ipv4_addresses": [ "185.21.101.208" ], @@ -84357,7 +84503,7 @@ "opengraph": null, "title": "Grüne Nettetal" }, - "duration": 175, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -84406,7 +84552,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 175 + "value": 179 }, "RESPONSIVE": { "score": 0, @@ -84446,9 +84592,9 @@ "resolved_hostname": "www.gruene-neuenkirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neuenkirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -84490,7 +84636,7 @@ "opengraph": null, "title": "Ortsverband Neuenkirchen (Krs. Steinfurt): Aktuelles" }, - "duration": 218, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -84538,7 +84684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -84578,9 +84724,9 @@ "resolved_hostname": "www.gruene-neukoelln.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "http://www.gruene-neukoelln.de/typo3conf/ext/theme_uk/Resources/Public/img/project/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "188.94.248.197" ], @@ -84635,7 +84781,7 @@ ], "title": "Grüne Neukölln - Homepage" }, - "duration": 612, + "duration": 563, "error": null, "responsive": { "document_width": { @@ -84684,7 +84830,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 612 + "value": 563 }, "RESPONSIVE": { "score": 1, @@ -84725,9 +84871,10 @@ "resolved_hostname": "www.gruene-neunkirchen-siegerland.de" } }, - "icons": [ - "e44c542cc6ee3633aff95141ace057b2.ico" - ], + "icons": { + "http://gruene-neunkirchen-siegerland.de/favicon.ico": "e44c542cc6ee3633aff95141ace057b2.ico", + "http://www.gruene-neunkirchen-siegerland.de/favicon.ico": "e44c542cc6ee3633aff95141ace057b2.ico" + }, "ipv4_addresses": [ "217.160.122.189" ], @@ -84772,7 +84919,7 @@ "opengraph": null, "title": "Grüne Neunkirchen" }, - "duration": 145, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -84795,7 +84942,7 @@ "opengraph": null, "title": "Grüne Neunkirchen" }, - "duration": 122, + "duration": 146, "error": null, "responsive": { "document_width": { @@ -84845,7 +84992,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 134 + "value": 162 }, "RESPONSIVE": { "score": 0, @@ -84889,9 +85036,9 @@ "resolved_hostname": "www.gruene-neusob.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-neusob.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.58" ], @@ -84949,7 +85096,7 @@ ], "title": "Bündnis 90/Die Grünen ND-SOB" }, - "duration": 721, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -84997,7 +85144,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 721 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -85041,9 +85188,9 @@ "resolved_hostname": "www.gruene-neuss.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-neuss.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.93" ], @@ -85096,7 +85243,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Neuss" }, - "duration": 724, + "duration": 782, "error": null, "responsive": { "document_width": { @@ -85143,7 +85290,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 724 + "value": 782 }, "RESPONSIVE": { "score": 1, @@ -85228,7 +85375,7 @@ "opengraph": null, "title": "Die Netzmacher (greenweb)" }, - "duration": 60, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -85251,7 +85398,7 @@ "opengraph": null, "title": "Die Netzmacher (greenweb)" }, - "duration": 65, + "duration": 58, "error": null, "responsive": { "document_width": { @@ -85302,7 +85449,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 62 + "value": 60 }, "RESPONSIVE": { "score": 0, @@ -85344,9 +85491,9 @@ "resolvable": false } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://blog.gruene-neuwulmstorf.de/wp-content/themes/gruene/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "81.169.145.150" ], @@ -85381,7 +85528,7 @@ "opengraph": null, "title": "Startseite - Grüne Neu Wulmstorf" }, - "duration": 383, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -85429,7 +85576,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 383 + "value": 401 }, "RESPONSIVE": { "score": 0, @@ -85470,9 +85617,9 @@ "resolved_hostname": "www.gruene-nf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-nf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -85514,7 +85661,7 @@ "opengraph": null, "title": "GRÜNE Nordfriesland: Home" }, - "duration": 198, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -85562,7 +85709,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -85601,9 +85748,9 @@ "resolvable": false } }, - "icons": [ - "ba4eedeb55dde701757c424ff3ff3dec.ico" - ], + "icons": { + "http://www.gruene-niederdorfelden.de/fileadmin/template/gruene1/favicon.ico": "ba4eedeb55dde701757c424ff3ff3dec.ico" + }, "ipv4_addresses": [ "213.187.84.247" ], @@ -85635,7 +85782,7 @@ "opengraph": null, "title": "Bündnis90/Die Grünen Ortsverband Niederdorfelden : gruene-niederdorfelden.de" }, - "duration": 282, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -85684,7 +85831,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 282 + "value": 279 }, "RESPONSIVE": { "score": 0, @@ -85729,9 +85876,9 @@ "resolved_hostname": "www.gruene-niederrhein-wupper.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-niederrhein-wupper.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -85789,7 +85936,7 @@ ], "title": "Bezirksverband NrW von Bündnis 90/Die Grünen › Grüne Niederrhein-Wupper" }, - "duration": 65, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -85837,7 +85984,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 65 + "value": 61 }, "RESPONSIVE": { "score": 1, @@ -85877,9 +86024,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -85921,7 +86068,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 193, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -85969,7 +86116,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -86009,9 +86156,9 @@ "resolved_hostname": "www.gruene-nienburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nienburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86053,7 +86200,7 @@ "opengraph": null, "title": "Kreisverband Nienburg: Herzlich Willkommen" }, - "duration": 226, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -86101,7 +86248,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 226 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -86193,7 +86340,7 @@ "opengraph": null, "title": "gruene-niestetal.de - Wir konzentrieren uns auf Inhalte !" }, - "duration": 221, + "duration": 548, "error": null, "responsive": { "document_width": { @@ -86242,7 +86389,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 548 }, "RESPONSIVE": { "score": 0, @@ -86320,7 +86467,7 @@ "urlchecks": [ { "content": null, - "duration": 114, + "duration": 142, "error": null, "responsive": { "document_width": { @@ -86336,7 +86483,7 @@ }, { "content": null, - "duration": 110, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -86387,7 +86534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 112 + "value": 131 }, "RESPONSIVE": { "score": 0, @@ -86481,7 +86628,7 @@ ], "title": "Aktuell - BÜNDNIS 90/DIE GRÜNEN Kreisverband Neckar-Odenwald" }, - "duration": 857, + "duration": 905, "error": null, "responsive": { "document_width": { @@ -86529,7 +86676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 857 + "value": 905 }, "RESPONSIVE": { "score": 0, @@ -86569,9 +86716,9 @@ "resolved_hostname": "www.gruene-nord.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nord.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86613,7 +86760,7 @@ "opengraph": null, "title": "GRÜNE Nord: Home" }, - "duration": 191, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -86661,7 +86808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -86731,7 +86878,7 @@ "opengraph": null, "title": "Home" }, - "duration": 54, + "duration": 57, "error": null, "responsive": { "document_width": { @@ -86781,7 +86928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 54 + "value": 57 }, "RESPONSIVE": { "score": 0, @@ -86822,9 +86969,9 @@ "resolved_hostname": "www.gruene-nordhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-nordhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86866,7 +87013,7 @@ "opengraph": null, "title": "Kreisverband Nordhausen: Startseite" }, - "duration": 162, + "duration": 188, "error": null, "responsive": { "document_width": { @@ -86914,7 +87061,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 188 }, "RESPONSIVE": { "score": 1, @@ -86954,9 +87101,9 @@ "resolved_hostname": "www.gruene-nordwalde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nordwalde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -86998,7 +87145,7 @@ "opengraph": null, "title": "OV Nordwalde: Startseite" }, - "duration": 182, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -87046,7 +87193,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 182 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -87086,9 +87233,9 @@ "resolved_hostname": "www.gruene-nordwestmecklenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nordwestmecklenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87130,7 +87277,7 @@ "opengraph": null, "title": "Nordwestmecklenburg Wismar: Startseite" }, - "duration": 209, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -87178,7 +87325,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -87218,9 +87365,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87262,7 +87409,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 181, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -87310,7 +87457,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 181 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -87350,9 +87497,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87394,7 +87541,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 184, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -87442,7 +87589,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -87482,9 +87629,9 @@ "resolved_hostname": "www.gruene-northeim-einbeck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-northeim-einbeck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -87526,7 +87673,7 @@ "opengraph": null, "title": "KV Northeim-Einbeck: Home" }, - "duration": 172, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -87574,7 +87721,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -87620,9 +87767,9 @@ "resolved_hostname": "www.gruene-nrue.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-nrue.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.223.103" ], @@ -87682,7 +87829,7 @@ ], "title": "Bündnis 90 / Die Grünen" }, - "duration": 514, + "duration": 535, "error": null, "responsive": { "document_width": { @@ -87730,7 +87877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 535 }, "RESPONSIVE": { "score": 1, @@ -87774,9 +87921,9 @@ "resolved_hostname": "www.gruene-nrw.de" } }, - "icons": [ - "2b4be9b11156199e96acb71392cc14ce.png" - ], + "icons": { + "https://gruene-nrw.de/site/themes/josephknowsbest/favicon.png": "2b4be9b11156199e96acb71392cc14ce.png" + }, "ipv4_addresses": [ "134.119.2.86" ], @@ -87828,7 +87975,7 @@ ], "title": "Grüne NRW - Gemeinsam NRW gestalten." }, - "duration": 157, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -87875,7 +88022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -87960,7 +88107,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 115, + "duration": 274, "error": null, "responsive": { "document_width": { @@ -87983,7 +88130,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 101, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -88034,7 +88181,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 108 + "value": 195 }, "RESPONSIVE": { "score": 0, @@ -88074,9 +88221,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88118,7 +88265,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 242, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -88166,7 +88313,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 242 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -88251,7 +88398,7 @@ "opengraph": null, "title": "Home - DIE GRÜNEN Nußloch" }, - "duration": 224, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -88274,7 +88421,7 @@ "opengraph": null, "title": "Home - DIE GRÜNEN Nußloch" }, - "duration": 255, + "duration": 244, "error": null, "responsive": { "document_width": { @@ -88325,7 +88472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 240 + "value": 233 }, "RESPONSIVE": { "score": 0, @@ -88365,9 +88512,9 @@ "resolved_hostname": "www.gruene-nv.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-nv.de/fileadmin/images/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "62.75.146.61" ], @@ -88412,7 +88559,7 @@ "opengraph": null, "title": "Aktuelles: Grüne Neukirchen-Vluyn" }, - "duration": 209, + "duration": 320, "error": null, "responsive": { "document_width": { @@ -88461,7 +88608,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 320 }, "RESPONSIVE": { "score": 0, @@ -88518,16 +88665,16 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-oberasbach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:720)'),))", - "type": "" + "message": "('Connection aborted.', OSError(0, 'Error'))", + "type": "" }, "redirects_to": null, "url": "https://gruene-oberasbach.de/" }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-oberasbach.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:720)'),))", - "type": "" + "message": "('Connection aborted.', OSError(0, 'Error'))", + "type": "" }, "redirects_to": null, "url": "https://www.gruene-oberasbach.de/" @@ -88539,7 +88686,7 @@ "urlchecks": [ { "content": null, - "duration": 81, + "duration": 78, "error": null, "responsive": { "document_width": { @@ -88555,7 +88702,7 @@ }, { "content": null, - "duration": 72, + "duration": 77, "error": null, "responsive": { "document_width": { @@ -88606,7 +88753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 76 + "value": 78 }, "RESPONSIVE": { "score": 0, @@ -88646,9 +88793,9 @@ "resolved_hostname": "www.gruene-oberberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88690,7 +88837,7 @@ "opengraph": null, "title": "Kreisverband Oberberg : Startseite" }, - "duration": 213, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -88738,7 +88885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 220 }, "RESPONSIVE": { "score": 0, @@ -88782,9 +88929,9 @@ "resolved_hostname": "www.gruene-oberes-wiesental.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oberes-wiesental.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.234.60" ], @@ -88842,7 +88989,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortsverband Oberes Wiesental" }, - "duration": 400, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -88890,7 +89037,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 513 }, "RESPONSIVE": { "score": 0, @@ -88930,9 +89077,9 @@ "resolved_hostname": "www.gruene-oberhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -88974,7 +89121,7 @@ "opengraph": null, "title": "GRÜNE Oberhausen: Home" }, - "duration": 212, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -89022,7 +89169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -89107,7 +89254,7 @@ "opengraph": null, "title": "Obermichelbach - Bündnis 90 / Die Grünen" }, - "duration": 70, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -89130,7 +89277,7 @@ "opengraph": null, "title": "Obermichelbach - Bündnis 90 / Die Grünen" }, - "duration": 71, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -89180,7 +89327,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 70 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -89220,9 +89367,9 @@ "resolved_hostname": "www.gruene-odenthal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-odenthal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -89264,7 +89411,7 @@ "opengraph": null, "title": "GRÜNE - Odenthal: Home" }, - "duration": 206, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -89312,7 +89459,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -89359,9 +89506,10 @@ "resolved_hostname": "www.gruene-odenwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-odenwald.de/testgebiet/wp_green/wp-content/themes/urwahl3000b/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-odenwald.de/testgebiet/wp_green/wp-content/themes/urwahl3000b/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.133.130" ], @@ -89413,7 +89561,7 @@ ], "title": "Grüne Odenwald" }, - "duration": 357, + "duration": 382, "error": null, "responsive": { "document_width": { @@ -89446,7 +89594,7 @@ ], "title": "Grüne Odenwald" }, - "duration": 499, + "duration": 498, "error": null, "responsive": { "document_width": { @@ -89494,7 +89642,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 440 }, "RESPONSIVE": { "score": 1, @@ -89537,9 +89685,9 @@ "resolved_hostname": "www.gruene-oe.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-oe.de/wordpress/wp-content/themes/blum-o-matic_v1-0-3/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "178.254.62.52" ], @@ -89594,7 +89742,7 @@ ], "title": "Startseite - Neuigkeiten - Bündnis 90/Die Grünen Oer-Erkenschwick - Bündnis 90/Die Grünen Oer-Erkenschwick" }, - "duration": 713, + "duration": 838, "error": null, "responsive": { "document_width": { @@ -89642,7 +89790,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 838 }, "RESPONSIVE": { "score": 0, @@ -89685,9 +89833,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oelde.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -89732,7 +89880,7 @@ ], "title": "Grüne Oelde" }, - "duration": 347, + "duration": 601, "error": null, "responsive": { "document_width": { @@ -89780,7 +89928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 347 + "value": 601 }, "RESPONSIVE": { "score": 1, @@ -89825,9 +89973,9 @@ "resolved_hostname": "www.gruene-oerlinghausen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-oerlinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.215" ], @@ -89886,7 +90034,7 @@ ], "title": "Grüne Oerlinghausen" }, - "duration": 739, + "duration": 645, "error": null, "responsive": { "document_width": { @@ -89934,7 +90082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 739 + "value": 645 }, "RESPONSIVE": { "score": 1, @@ -89978,9 +90126,9 @@ "resolved_hostname": "www.gruene-offenburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-offenburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.43" ], @@ -89997,7 +90145,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -90005,7 +90153,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-offenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -90013,7 +90161,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 332, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -90038,13 +90186,13 @@ ], "title": "Bündnis 90 / Die Grünen – Offenburg" }, - "duration": 518, + "duration": 521, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1113, "1920x1080": 1920, - "320x480": 320, + "320x480": 332, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -90086,7 +90234,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 518 + "value": 521 }, "RESPONSIVE": { "score": 1, @@ -90126,9 +90274,9 @@ "resolved_hostname": "www.gruene-oh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90170,7 +90318,7 @@ "opengraph": null, "title": "Kreisverband Ostholstein: Aktuelles" }, - "duration": 207, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -90218,7 +90366,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -90258,9 +90406,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90302,7 +90450,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 211, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -90350,7 +90498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -90390,9 +90538,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90434,7 +90582,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 193, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -90482,7 +90630,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -90522,9 +90670,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90654,9 +90802,9 @@ "resolved_hostname": "www.gruene-oldenburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oldenburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -90698,7 +90846,7 @@ "opengraph": null, "title": "Grüne Oldenburg Land: Home/Aktuelles" }, - "duration": 229, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -90721,6 +90869,811 @@ "level": "DE:ORTSVERBAND", "state": "Niedersachsen" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-oldenburg.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-oldenburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-oldenburg.de" + }, + "www.gruene-oldenburg.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-oldenburg.de" + } + }, + "icons": { + "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "http://gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "http://www.gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "https://gruene-oldenburg.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-oldenburg.de/home/", + "url": "https://www.gruene-oldenburg.de/" + } + ], + "responsive": { + "min_width": 322, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Stadtverband Oldenburg: Home" + }, + "duration": 224, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 322, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-oldenburg.de/home/" + } + ] + }, + "input_url": "http://www.gruene-oldenburg.de/home/", + "meta": { + "city": null, + "district": "Oldenburg-Stadt", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 224 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-olhi.de/" + ], + "cms": null, + "hostnames": { + "gruene-olhi.de": { + "ip_addresses": [ + "52.210.189.158" + ], + "resolvable": true, + "resolved_hostname": "gruene-olhi.de" + }, + "www.gruene-olhi.de": { + "resolvable": false + } + }, + "icons": {}, + "ipv4_addresses": [ + "52.210.189.158" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-olhi.de/", + "url": "http://gruene-olhi.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-olhi.de/", + "url": "https://gruene-olhi.de/" + } + ], + "responsive": { + "min_width": 320 + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://www.gruene-olhi.de/", + "encoding": "utf-8", + "generator": null, + "icon": "data:image/png;base64,iVBORw0KGgo=", + "opengraph": [ + "og:description", + "og:image", + "og:image:height", + "og:image:secure_url", + "og:image:width", + "og:locale", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Herzlich Willkommen bei www.gruene-olhi.de - gruene-olhis Webseite!" + }, + "duration": 433, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 900 + }, + "viewport_meta_tag": null + }, + "status_code": 200, + "url": "https://www.gruene-olhi.de/" + } + ] + }, + "input_url": "http://www.gruene-olhi.de/", + "meta": { + "city": "Himmelpforten/ Oldendorf", + "district": "Stade", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 433 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-olpe.de/start/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-olpe.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-olpe.de" + }, + "www.gruene-olpe.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-olpe.de" + } + }, + "icons": { + "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "http://gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "http://www.gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "https://gruene-olpe.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-olpe.de/start/", + "url": "https://www.gruene-olpe.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverband Olpe: Start" + }, + "duration": 264, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-olpe.de/start/" + } + ] + }, + "input_url": "http://www.gruene-olpe.de/", + "meta": { + "city": null, + "district": "Olpe", + "level": "DE:KREISVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 264 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-olsberg.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-olsberg.de/comments/feed/", + "http://www.gruene-olsberg.de/feed/" + ], + "hostnames": { + "gruene-olsberg.de": { + "aliases": [ + "www.gruene-olsberg.de" + ], + "ip_addresses": [ + "213.131.233.85" + ], + "resolvable": true, + "resolved_hostname": "gruene-olsberg.de" + }, + "www.gruene-olsberg.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "213.131.233.85" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-olsberg.de/", + "url": "http://gruene-olsberg.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-olsberg.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-olsberg.de' doesn't match either of 'gruene-dormagen.de', 'www.gruene-dormagen.de'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-olsberg.de/" + } + ], + "responsive": { + "min_width": 369, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "http://www.gruene-olsberg.de/", + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-olsberg.de/feed/", + "http://www.gruene-olsberg.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Grüne Olsberg" + }, + "duration": 431, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1054, + "1920x1080": 1920, + "320x480": 369, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-olsberg.de/" + } + ] + }, + "input_url": "http://www.gruene-olsberg.de/", + "meta": { + "city": "Olsberg", + "district": "Hochsauerland", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 431 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-os-landkreis.de/startseite/" + ], + "cms": "typo3", + "hostnames": { + "gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "gruene-os-land.de" + }, + "www.gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-os-land.de" + } + }, + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "85.13.139.107" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://gruene-os-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://www.gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-os-land.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne OS Land: Startseite" + }, + "duration": 179, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-os-landkreis.de/startseite/" + } + ] + }, + "input_url": "http://www.gruene-os-land.de/", + "meta": { + "city": null, + "district": "Osnabrück-Land", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 179 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-os-landkreis.de/startseite/" + ], + "cms": "typo3", + "hostnames": { + "gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "gruene-os-land.de" + }, + "www.gruene-os-land.de": { + "ip_addresses": [ + "85.13.139.107" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-os-land.de" + } + }, + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "85.13.139.107" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://gruene-os-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-os-landkreis.de/startseite/", + "url": "http://www.gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-os-land.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", + "type": "" + }, + "redirects_to": null, + "url": "https://www.gruene-os-land.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne OS Land: Startseite" + }, + "duration": 229, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-os-landkreis.de/startseite/" + } + ] + }, + "input_url": "http://www.gruene-os-land.de/start/ortsverbaende/bad-rothenfelde/", + "meta": { + "city": "Bad Rothenfelde", + "district": "Osnabrück-Land", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -90764,535 +91717,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-oldenburg.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-oldenburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-oldenburg.de" - }, - "www.gruene-oldenburg.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-oldenburg.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "http://gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "http://www.gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "https://gruene-oldenburg.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-oldenburg.de/home/", - "url": "https://www.gruene-oldenburg.de/" - } - ], - "responsive": { - "min_width": 322, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-oldenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Stadtverband Oldenburg: Home" - }, - "duration": 215, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 322, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-oldenburg.de/home/" - } - ] - }, - "input_url": "http://www.gruene-oldenburg.de/home/", - "meta": { - "city": null, - "district": "Oldenburg-Stadt", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 215 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-olhi.de/" - ], - "cms": null, - "hostnames": { - "gruene-olhi.de": { - "ip_addresses": [ - "52.17.84.106" - ], - "resolvable": true, - "resolved_hostname": "gruene-olhi.de" - }, - "www.gruene-olhi.de": { - "resolvable": false - } - }, - "ipv4_addresses": [ - "52.17.84.106" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-olhi.de/", - "url": "http://gruene-olhi.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-olhi.de/", - "url": "https://gruene-olhi.de/" - } - ], - "responsive": { - "min_width": 320 - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://www.gruene-olhi.de/", - "encoding": "utf-8", - "generator": null, - "icon": "data:image/png;base64,iVBORw0KGgo=", - "opengraph": [ - "og:description", - "og:image", - "og:image:height", - "og:image:secure_url", - "og:image:width", - "og:locale", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Herzlich Willkommen bei www.gruene-olhi.de - gruene-olhis Webseite!" - }, - "duration": 313, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 900 - }, - "viewport_meta_tag": null - }, - "status_code": 200, - "url": "https://www.gruene-olhi.de/" - } - ] - }, - "input_url": "http://www.gruene-olhi.de/", - "meta": { - "city": "Himmelpforten/ Oldendorf", - "district": "Stade", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 0, - "type": "boolean", - "value": false - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 313 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 5.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-olpe.de/start/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-olpe.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-olpe.de" - }, - "www.gruene-olpe.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-olpe.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "http://gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "http://www.gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "https://gruene-olpe.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-olpe.de/start/", - "url": "https://www.gruene-olpe.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-olpe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverband Olpe: Start" - }, - "duration": 210, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-olpe.de/start/" - } - ] - }, - "input_url": "http://www.gruene-olpe.de/", - "meta": { - "city": null, - "district": "Olpe", - "level": "DE:KREISVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 210 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-olsberg.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-olsberg.de/comments/feed/", - "http://www.gruene-olsberg.de/feed/" - ], - "hostnames": { - "gruene-olsberg.de": { - "aliases": [ - "www.gruene-olsberg.de" - ], - "ip_addresses": [ - "213.131.233.85" - ], - "resolvable": true, - "resolved_hostname": "gruene-olsberg.de" - }, - "www.gruene-olsberg.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "213.131.233.85" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-olsberg.de/", - "url": "http://gruene-olsberg.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-olsberg.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-olsberg.de' doesn't match either of 'gruene-dormagen.de', 'www.gruene-dormagen.de'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-olsberg.de/" - } - ], - "responsive": { - "min_width": 369, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "http://www.gruene-olsberg.de/", - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-olsberg.de/feed/", - "http://www.gruene-olsberg.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-olsberg.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:image", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Grüne Olsberg" - }, - "duration": 441, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1054, - "1920x1080": 1920, - "320x480": 369, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-olsberg.de/" - } - ] - }, - "input_url": "http://www.gruene-olsberg.de/", - "meta": { - "city": "Olsberg", - "district": "Hochsauerland", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 441 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -91315,9 +91739,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91365,283 +91789,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 209, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-os-landkreis.de/startseite/" - } - ] - }, - "input_url": "http://www.gruene-os-land.de/", - "meta": { - "city": null, - "district": "Osnabrück-Land", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 209 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-os-landkreis.de/startseite/" - ], - "cms": "typo3", - "hostnames": { - "gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "gruene-os-land.de" - }, - "www.gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-os-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "85.13.139.107" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://gruene-os-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://www.gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-os-land.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne OS Land: Startseite" - }, - "duration": 190, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-os-landkreis.de/startseite/" - } - ] - }, - "input_url": "http://www.gruene-os-land.de/start/ortsverbaende/bad-rothenfelde/", - "meta": { - "city": "Bad Rothenfelde", - "district": "Osnabrück-Land", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 190 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-os-landkreis.de/startseite/" - ], - "cms": "typo3", - "hostnames": { - "gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "gruene-os-land.de" - }, - "www.gruene-os-land.de": { - "ip_addresses": [ - "85.13.139.107" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-os-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "85.13.139.107" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://gruene-os-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-os-landkreis.de/startseite/", - "url": "http://www.gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-os-land.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='www.gruene-os-land.de', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError(\"hostname 'www.gruene-os-land.de' doesn't match either of '*.kasserver.com', 'kasserver.com'\",),))", - "type": "" - }, - "redirects_to": null, - "url": "https://www.gruene-os-land.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne OS Land: Startseite" - }, - "duration": 208, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -91689,7 +91837,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -91729,9 +91877,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91779,7 +91927,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -91827,7 +91975,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -91867,9 +92015,9 @@ "resolved_hostname": "www.gruene-os-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-os-landkreis.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -91917,7 +92065,7 @@ "opengraph": null, "title": "Grüne OS Land: Startseite" }, - "duration": 190, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -91965,7 +92113,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -92005,9 +92153,9 @@ "resolved_hostname": "www.gruene-ostbevern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ostbevern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92049,7 +92197,7 @@ "opengraph": null, "title": "Ortsverband Ostbevern: Home" }, - "duration": 213, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -92097,7 +92245,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -92175,7 +92323,7 @@ "urlchecks": [ { "content": null, - "duration": 167, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -92191,7 +92339,7 @@ }, { "content": null, - "duration": 177, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -92242,7 +92390,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 182 }, "RESPONSIVE": { "score": 0, @@ -92282,9 +92430,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92326,7 +92474,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 187, + "duration": 818, "error": null, "responsive": { "document_width": { @@ -92374,7 +92522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 818 }, "RESPONSIVE": { "score": 1, @@ -92414,9 +92562,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92458,7 +92606,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 224, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -92506,7 +92654,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -92546,9 +92694,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92590,7 +92738,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 205, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -92638,7 +92786,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -92678,9 +92826,9 @@ "resolved_hostname": "www.gruene-osterholz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-osterholz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -92722,7 +92870,7 @@ "opengraph": null, "title": "LK Osterholz wird grün!: Home" }, - "duration": 215, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -92770,7 +92918,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -92810,9 +92958,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-ostfildern.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-ostfildern.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -92844,7 +92993,7 @@ "opengraph": null, "title": "Grüne Ortsverband Ostfildern: HOME" }, - "duration": 527, + "duration": 525, "error": null, "responsive": { "document_width": { @@ -92867,7 +93016,7 @@ "opengraph": null, "title": "Grüne Ortsverband Ostfildern: HOME" }, - "duration": 979, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -92916,7 +93065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 753 + "value": 702 }, "RESPONSIVE": { "score": 1, @@ -92978,7 +93127,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -92986,7 +93135,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-ottersberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -93014,7 +93163,7 @@ "opengraph": null, "title": "" }, - "duration": 371, + "duration": 333, "error": null, "responsive": { "document_width": { @@ -93063,7 +93212,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 333 }, "RESPONSIVE": { "score": 1, @@ -93148,7 +93297,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN · Ortsverband Aurich" }, - "duration": 260, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -93171,7 +93320,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN · Ortsverband Aurich" }, - "duration": 143, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -93222,7 +93371,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 253 }, "RESPONSIVE": { "score": 0, @@ -93262,9 +93411,9 @@ "resolved_hostname": "www.gruene-ov-stade.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ov-stade.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -93306,7 +93455,7 @@ "opengraph": null, "title": "Ortsverband Stade: Aktuelles" }, - "duration": 219, + "duration": 252, "error": null, "responsive": { "document_width": { @@ -93329,6 +93478,1069 @@ "level": "DE:ORTSVERBAND", "state": "Niedersachsen" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 252 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-overath.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-overath.de" + }, + "www.gruene-overath.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-overath.de" + } + }, + "icons": { + "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "http://gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "http://www.gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "https://gruene-overath.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", + "url": "https://www.gruene-overath.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Die Grünen - Overath: Die Grünen - Overath" + }, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" + } + ] + }, + "input_url": "http://www.gruene-overath.de", + "meta": { + "city": "Overath", + "district": "Rhein-Berg", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-owl.de/aktuell-aus-owl/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-owl.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-owl.de" + }, + "www.gruene-owl.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-owl.de" + } + }, + "icons": { + "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "http://gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "http://www.gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "https://gruene-owl.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", + "url": "https://www.gruene-owl.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Die GRÜNEN OWL: Aktuell aus OWL" + }, + "duration": 234, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-owl.de/aktuell-aus-owl/" + } + ] + }, + "input_url": "http://www.gruene-owl.de/", + "meta": { + "city": null, + "district": null, + "level": "DE:BEZIRKSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 234 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://www.gruene-oyten.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://www.gruene-oyten.de/comments/feed/", + "http://www.gruene-oyten.de/feed/" + ], + "hostnames": { + "gruene-oyten.de": { + "aliases": [ + "www.gruene-oyten.de" + ], + "ip_addresses": [ + "81.169.145.78" + ], + "resolvable": true, + "resolved_hostname": "gruene-oyten.de" + }, + "www.gruene-oyten.de": { + "resolvable": false + } + }, + "icons": { + "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "81.169.145.78" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "http://www.gruene-oyten.de/", + "url": "http://gruene-oyten.de/" + }, + { + "error": { + "message": "HTTPSConnectionPool(host='gruene-oyten.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:720)'),))", + "type": "" + }, + "redirects_to": null, + "url": "https://gruene-oyten.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://www.gruene-oyten.de/feed/", + "http://www.gruene-oyten.de/comments/feed/" + ], + "generator": null, + "icon": "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Bündnis 90 Die Grünen" + }, + "duration": 134, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1026, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://www.gruene-oyten.de/" + } + ] + }, + "input_url": "http://www.gruene-oyten.de/", + "meta": { + "city": "Oyten", + "district": "Verden", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 134 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 6.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 213, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/", + "meta": { + "city": null, + "district": "Peine", + "level": "DE:KREISVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 213 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/edemissen/", + "meta": { + "city": "Edemissen", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 234, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/fuhsetal-ilsede-und-lengede/", + "meta": { + "city": "Fuhsetal", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 234 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 217, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/hohenhameln/", + "meta": { + "city": "Hohenhameln", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 217 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruene-peine.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-peine.de" + }, + "www.gruene-peine.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-peine.de" + } + }, + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "http://www.gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://gruene-peine.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruene-peine.de/home/", + "url": "https://www.gruene-peine.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "...im Landkreis Peine: Home" + }, + "duration": 219, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruene-peine.de/home/" + } + ] + }, + "input_url": "http://www.gruene-peine.de/peine/", + "meta": { + "city": "Peine", + "district": "Peine", + "level": "DE:ORTSVERBAND", + "state": "Niedersachsen" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -93372,409 +94584,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-overath.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-overath.de" - }, - "www.gruene-overath.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-overath.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "http://gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "http://www.gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "https://gruene-overath.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/", - "url": "https://www.gruene-overath.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-kreisrheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Die Grünen - Overath: Die Grünen - Overath" - }, - "duration": 217, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-kreisrheinberg.de/die-gruenen-overath/" - } - ] - }, - "input_url": "http://www.gruene-overath.de", - "meta": { - "city": "Overath", - "district": "Rhein-Berg", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 217 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-owl.de/aktuell-aus-owl/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-owl.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-owl.de" - }, - "www.gruene-owl.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-owl.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "http://gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "http://www.gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "https://gruene-owl.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-owl.de/aktuell-aus-owl/", - "url": "https://www.gruene-owl.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-owl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Die GRÜNEN OWL: Aktuell aus OWL" - }, - "duration": 217, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-owl.de/aktuell-aus-owl/" - } - ] - }, - "input_url": "http://www.gruene-owl.de/", - "meta": { - "city": null, - "district": null, - "level": "DE:BEZIRKSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 217 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "http://www.gruene-oyten.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "http://www.gruene-oyten.de/comments/feed/", - "http://www.gruene-oyten.de/feed/" - ], - "hostnames": { - "gruene-oyten.de": { - "aliases": [ - "www.gruene-oyten.de" - ], - "ip_addresses": [ - "81.169.145.78" - ], - "resolvable": true, - "resolved_hostname": "gruene-oyten.de" - }, - "www.gruene-oyten.de": { - "resolvable": false - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "81.169.145.78" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "http://www.gruene-oyten.de/", - "url": "http://gruene-oyten.de/" - }, - { - "error": { - "message": "HTTPSConnectionPool(host='gruene-oyten.de', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:720)'),))", - "type": "" - }, - "redirects_to": null, - "url": "https://gruene-oyten.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "http://www.gruene-oyten.de/feed/", - "http://www.gruene-oyten.de/comments/feed/" - ], - "generator": null, - "icon": "http://www.gruene-oyten.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Bündnis 90 Die Grünen" - }, - "duration": 123, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1026, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "http://www.gruene-oyten.de/" - } - ] - }, - "input_url": "http://www.gruene-oyten.de/", - "meta": { - "city": "Oyten", - "district": "Verden", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 123 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 0, - "type": "boolean", - "value": false - } - }, - "score": 6.5 - }, { "details": { "canonical_urls": [ @@ -93797,9 +94606,9 @@ "resolved_hostname": "www.gruene-peine.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -93841,667 +94650,7 @@ "opengraph": null, "title": "...im Landkreis Peine: Home" }, - "duration": 185, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/", - "meta": { - "city": null, - "district": "Peine", - "level": "DE:KREISVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 185 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 187, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/edemissen/", - "meta": { - "city": "Edemissen", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 187 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 197, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/fuhsetal-ilsede-und-lengede/", - "meta": { - "city": "Fuhsetal", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 197 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 190, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/hohenhameln/", - "meta": { - "city": "Hohenhameln", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 190 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 198, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruene-peine.de/home/" - } - ] - }, - "input_url": "http://www.gruene-peine.de/peine/", - "meta": { - "city": "Peine", - "district": "Peine", - "level": "DE:ORTSVERBAND", - "state": "Niedersachsen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 198 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruene-peine.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-peine.de" - }, - "www.gruene-peine.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-peine.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "http://www.gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://gruene-peine.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruene-peine.de/home/", - "url": "https://www.gruene-peine.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://www.gruene-peine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "...im Landkreis Peine: Home" - }, - "duration": 189, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -94549,7 +94698,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -94593,9 +94742,9 @@ "resolved_hostname": "www.gruene-perl.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-perl.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -94641,7 +94790,7 @@ "opengraph": null, "title": "Ortsverband Perl - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 278, + "duration": 327, "error": null, "responsive": { "document_width": { @@ -94688,7 +94837,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 327 }, "RESPONSIVE": { "score": 1, @@ -94732,9 +94881,9 @@ "resolved_hostname": "www.gruene-petershagen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-petershagen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "88.99.210.26" ], @@ -94792,7 +94941,7 @@ ], "title": "Grüne Petershagen" }, - "duration": 159, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -94840,7 +94989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 159 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -94880,9 +95029,9 @@ "resolved_hostname": "www.gruene-pi.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-pi.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -94924,7 +95073,7 @@ "opengraph": null, "title": "Kreisverband Pinneberg: Home" }, - "duration": 200, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -94972,7 +95121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -95043,7 +95192,7 @@ "urlchecks": [ { "content": null, - "duration": 509, + "duration": 572, "error": null, "responsive": { "document_width": { @@ -95092,7 +95241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 509 + "value": 572 }, "RESPONSIVE": { "score": 0, @@ -95136,9 +95285,7 @@ "resolved_hostname": "www.gruene-pulheim.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "78.46.86.77" ], @@ -95190,7 +95337,7 @@ ], "title": "B90/Die Grünen Pulheim" }, - "duration": 744, + "duration": 634, "error": null, "responsive": { "document_width": { @@ -95237,7 +95384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 744 + "value": 634 }, "RESPONSIVE": { "score": 1, @@ -95322,7 +95469,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen, Stadtverband Rahden" }, - "duration": 72, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -95345,7 +95492,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen, Stadtverband Rahden" }, - "duration": 61, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -95396,7 +95543,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 68 }, "RESPONSIVE": { "score": 0, @@ -95436,9 +95583,9 @@ "resolved_hostname": "www.gruene-rastede.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rastede.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -95480,7 +95627,7 @@ "opengraph": null, "title": "Ortsverband Rastede: Home" }, - "duration": 197, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -95528,7 +95675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -95572,9 +95719,9 @@ "resolved_hostname": "www.gruene-ratingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ratingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.227.247.148" ], @@ -95632,7 +95779,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN RATINGEN" }, - "duration": 711, + "duration": 673, "error": null, "responsive": { "document_width": { @@ -95680,7 +95827,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 711 + "value": 673 }, "RESPONSIVE": { "score": 0, @@ -95719,9 +95866,9 @@ "resolvable": false } }, - "icons": [ - "0967129c188cec05434bcef22632e797.ico" - ], + "icons": { + "http://www.gruene-raunheim.de/favicon.ico?version=20180817100229": "0967129c188cec05434bcef22632e797.ico" + }, "ipv4_addresses": [ "62.113.220.110" ], @@ -95758,7 +95905,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - Raunheim" }, - "duration": 114, + "duration": 108, "error": null, "responsive": { "document_width": { @@ -95807,7 +95954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 114 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -95847,9 +95994,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-rv.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -95881,7 +96028,7 @@ "opengraph": null, "title": "GRÜNE RAVENSBURG: START" }, - "duration": 393, + "duration": 459, "error": null, "responsive": { "document_width": { @@ -95930,7 +96077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 393 + "value": 459 }, "RESPONSIVE": { "score": 1, @@ -96048,9 +96195,10 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-recklinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-recklinghausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -96096,7 +96244,7 @@ ], "title": "Grüne Recklinghausen - Ortsverband RecklinghausenGrüne Recklinghausen" }, - "duration": 395, + "duration": 415, "error": null, "responsive": { "document_width": { @@ -96134,7 +96282,7 @@ ], "title": "Grüne Recklinghausen - Ortsverband RecklinghausenGrüne Recklinghausen" }, - "duration": 531, + "duration": 456, "error": null, "responsive": { "document_width": { @@ -96182,7 +96330,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 463 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -96227,9 +96375,9 @@ "resolved_hostname": "www.gruene-regensburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-regensburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.160.71.66" ], @@ -96288,7 +96436,7 @@ ], "title": "Aktuelles | Grüne Stadtverband Regensburg" }, - "duration": 309, + "duration": 371, "error": null, "responsive": { "document_width": { @@ -96336,7 +96484,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 371 }, "RESPONSIVE": { "score": 1, @@ -96381,9 +96529,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -96400,7 +96548,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96408,7 +96556,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96442,7 +96590,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 531, + "duration": 537, "error": null, "responsive": { "document_width": { @@ -96490,7 +96638,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 531 + "value": 537 }, "RESPONSIVE": { "score": 1, @@ -96535,9 +96683,9 @@ "resolved_hostname": "www.gruene-region-aachen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-region-aachen.de/kreisverband/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -96554,7 +96702,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96562,7 +96710,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-region-aachen.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -96596,7 +96744,7 @@ ], "title": "Die Grünen in der Städteregion Aachen" }, - "duration": 521, + "duration": 524, "error": null, "responsive": { "document_width": { @@ -96644,7 +96792,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 521 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -96685,9 +96833,10 @@ "resolved_hostname": "www.gruene-rehburg-loccum.de" } }, - "icons": [ - "aa4dd4b2b0e19aa2614b95745682b984.jpg" - ], + "icons": { + "https://gruene-rehburg-loccum.de/fiveicon.jpg": "aa4dd4b2b0e19aa2614b95745682b984.jpg", + "https://www.gruene-rehburg-loccum.de/fiveicon.jpg": "aa4dd4b2b0e19aa2614b95745682b984.jpg" + }, "ipv4_addresses": [ "217.160.0.143" ], @@ -96726,7 +96875,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN in Rehburg-Loccum" }, - "duration": 149, + "duration": 171, "error": null, "responsive": { "document_width": { @@ -96749,7 +96898,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN in Rehburg-Loccum" }, - "duration": 144, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -96798,7 +96947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 146 + "value": 174 }, "RESPONSIVE": { "score": 0, @@ -96879,7 +97028,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 83, + "duration": 85, "error": null, "responsive": { "document_width": { @@ -96902,7 +97051,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 79, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -96925,7 +97074,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 175, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -96948,7 +97097,7 @@ "opengraph": null, "title": "gruene-reichelsheim.de" }, - "duration": 179, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -96998,7 +97147,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 129 + "value": 133 }, "RESPONSIVE": { "score": 0, @@ -97043,9 +97192,10 @@ "resolved_hostname": "www.gruene-reinheim.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "http://gruene-reinheim.de/templates/gruene/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "http://www.gruene-reinheim.de/templates/gruene/favicon.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "217.160.223.1" ], @@ -97094,7 +97244,7 @@ "opengraph": null, "title": "Grüne Reinheim - Willkommen bei den Grünen Reinheim!" }, - "duration": 238, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -97121,7 +97271,7 @@ "opengraph": null, "title": "Grüne Reinheim - Willkommen bei den Grünen Reinheim!" }, - "duration": 230, + "duration": 455, "error": null, "responsive": { "document_width": { @@ -97170,7 +97320,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 338 }, "RESPONSIVE": { "score": 0, @@ -97249,7 +97399,7 @@ "opengraph": null, "title": "GRÜNE REK: Grüne im Rhein-Erft-Kreis" }, - "duration": 404, + "duration": 415, "error": null, "responsive": { "document_width": { @@ -97272,7 +97422,7 @@ "opengraph": null, "title": "GRÜNE REK: Grüne im Rhein-Erft-Kreis" }, - "duration": 458, + "duration": 477, "error": null, "responsive": { "document_width": { @@ -97322,7 +97472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 431 + "value": 446 }, "RESPONSIVE": { "score": 0, @@ -97383,7 +97533,7 @@ "urlchecks": [ { "content": null, - "duration": 53, + "duration": 68, "error": null, "responsive": { "document_width": { @@ -97399,7 +97549,7 @@ }, { "content": null, - "duration": 128, + "duration": 144, "error": null, "responsive": { "document_width": { @@ -97447,9 +97597,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 90 + "value": 106 }, "RESPONSIVE": { "score": 0, @@ -97466,7 +97616,7 @@ "value": false } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -97490,9 +97640,9 @@ "resolved_hostname": "www.gruene-remscheid.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-remscheid.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97534,7 +97684,7 @@ "opengraph": null, "title": "GRÜNE Remscheid: Startseite" }, - "duration": 227, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -97582,7 +97732,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -97623,9 +97773,10 @@ "resolved_hostname": "www.gruene-renningen.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://gruene-renningen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "http://www.gruene-renningen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "134.119.234.23" ], @@ -97670,7 +97821,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Renningen" }, - "duration": 110, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -97693,7 +97844,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Renningen" }, - "duration": 122, + "duration": 157, "error": null, "responsive": { "document_width": { @@ -97743,7 +97894,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 116 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -97783,9 +97934,9 @@ "resolved_hostname": "www.gruene-rhein-lahn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rhein-lahn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97827,7 +97978,7 @@ "opengraph": null, "title": "Kreisverband Rhein-Lahn: Home" }, - "duration": 211, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -97875,7 +98026,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -97915,9 +98066,9 @@ "resolved_hostname": "www.gruene-rheinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rheinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -97959,7 +98110,7 @@ "opengraph": null, "title": "Grüner Ortsverband Rheinbach: Was uns bewegt" }, - "duration": 262, + "duration": 621, "error": null, "responsive": { "document_width": { @@ -98007,7 +98158,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 621 }, "RESPONSIVE": { "score": 1, @@ -98050,9 +98201,9 @@ "resolved_hostname": "www.gruene-rheinberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheinberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98097,7 +98248,7 @@ "opengraph": null, "title": "Die Grünen in Rheinberg: Startseite" }, - "duration": 229, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -98144,7 +98295,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -98184,9 +98335,9 @@ "resolved_hostname": "www.gruene-rheine.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheine.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98228,7 +98379,7 @@ "opengraph": null, "title": "ORTSVERBAND RHEINE: AKTUELLES" }, - "duration": 241, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -98276,7 +98427,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -98320,9 +98471,9 @@ "resolved_hostname": "www.gruene-rheurdt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rheurdt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -98381,7 +98532,7 @@ ], "title": "Grüne Rheurdt" }, - "duration": 871, + "duration": 771, "error": null, "responsive": { "document_width": { @@ -98429,7 +98580,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 871 + "value": 771 }, "RESPONSIVE": { "score": 1, @@ -98476,9 +98627,10 @@ "resolved_hostname": "www.gruene-rkn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rkn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-rkn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.93" ], @@ -98530,7 +98682,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 79, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -98563,7 +98715,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 157, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -98611,7 +98763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 118 + "value": 144 }, "RESPONSIVE": { "score": 1, @@ -98651,9 +98803,9 @@ "resolved_hostname": "www.gruene-roethenbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98695,7 +98847,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: OV Röthenbach/Pegnitz" }, - "duration": 189, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -98743,7 +98895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -98783,9 +98935,9 @@ "resolved_hostname": "www.gruene-ronnenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ronnenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -98827,7 +98979,7 @@ "opengraph": null, "title": "Grüne Ronnenberg: Home" }, - "duration": 191, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -98875,7 +99027,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -98919,9 +99071,9 @@ "resolved_hostname": "www.gruene-rosdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-rosdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "93.90.176.171" ], @@ -98979,7 +99131,7 @@ ], "title": "Ortsverband Rosdorf" }, - "duration": 409, + "duration": 330, "error": null, "responsive": { "document_width": { @@ -99027,7 +99179,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 409 + "value": 330 }, "RESPONSIVE": { "score": 1, @@ -99072,9 +99224,10 @@ "resolved_hostname": "www.gruene-rosengarten.de" } }, - "icons": [ - "bfa850393d45e44a8086f3669d884d17.ico" - ], + "icons": { + "http://gruene-rosengarten.de/favicon.ico": "bfa850393d45e44a8086f3669d884d17.ico", + "http://www.gruene-rosengarten.de/favicon.ico": "bfa850393d45e44a8086f3669d884d17.ico" + }, "ipv4_addresses": [ "87.106.158.138" ], @@ -99091,7 +99244,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99099,7 +99252,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-rosengarten.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99126,7 +99279,7 @@ "opengraph": null, "title": "Home" }, - "duration": 480, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -99153,7 +99306,7 @@ "opengraph": null, "title": "Home" }, - "duration": 400, + "duration": 284, "error": null, "responsive": { "document_width": { @@ -99202,7 +99355,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 440 + "value": 276 }, "RESPONSIVE": { "score": 1, @@ -99242,9 +99395,9 @@ "resolved_hostname": "www.gruene-rostock.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rostock.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -99286,7 +99439,7 @@ "opengraph": null, "title": "Grüne KV Rostock: Startseite" }, - "duration": 190, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -99334,7 +99487,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -99378,9 +99531,9 @@ "resolved_hostname": "www.gruene-rotenburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.rotenburger-gruene.de/wp-content/themes/1508319867-iO23Vb/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.218.252.63" ], @@ -99439,7 +99592,7 @@ ], "title": "Bündnis 90 / die Grünen in Rotenburg an der WümmeDie Grünen in Rotenburg" }, - "duration": 14, + "duration": 873, "error": null, "responsive": { "document_width": { @@ -99484,9 +99637,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 14 + "value": 873 }, "RESPONSIVE": { "score": 1, @@ -99502,7 +99655,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -99529,7 +99682,7 @@ "resolvable_urls": [ { "error": { - "message": "HTTPConnectionPool(host='gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPConnectionPool(host='gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99537,7 +99690,7 @@ }, { "error": { - "message": "HTTPConnectionPool(host='www.gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPConnectionPool(host='www.gruene-rothenburg.de', port=80): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99545,7 +99698,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99553,7 +99706,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-rothenburg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -99640,9 +99793,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-rottweil.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-rottweil.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -99674,7 +99828,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rottweil: KV Rottweil" }, - "duration": 493, + "duration": 414, "error": null, "responsive": { "document_width": { @@ -99697,7 +99851,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rottweil: KV Rottweil" }, - "duration": 554, + "duration": 553, "error": null, "responsive": { "document_width": { @@ -99746,7 +99900,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 484 }, "RESPONSIVE": { "score": 1, @@ -99791,9 +99945,9 @@ "resolved_hostname": "www.gruene-ruhr.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-ruhr.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -99851,7 +100005,7 @@ ], "title": "Bezirksverband Ruhrgebiet von BÜNDNIS 90/DIE GRÜNEN NRW › Die Grünen Ruhr" }, - "duration": 59, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -99899,7 +100053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 59 + "value": 62 }, "RESPONSIVE": { "score": 1, @@ -99986,7 +100140,7 @@ "opengraph": null, "title": "Anmelden ‹ Grüne Saalekreis — WordPress" }, - "duration": 291, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -100036,7 +100190,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 291 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -100081,9 +100235,10 @@ "resolved_hostname": "www.gruene-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.56" ], @@ -100110,7 +100265,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -100136,13 +100291,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 398, + "duration": 420, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -100170,13 +100325,13 @@ ], "title": "DIE GRÜNEN SAAR - SAAR.LAND.ZUKUNFT" }, - "duration": 462, + "duration": 522, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -100218,7 +100373,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -100288,7 +100443,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen, Ortsverband Sachsenheim" }, - "duration": 55, + "duration": 74, "error": null, "responsive": { "document_width": { @@ -100338,7 +100493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 55 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -100381,9 +100536,9 @@ "resolvable": false } }, - "icons": [ - "f5d6e284c9ac6d8c7613ef1eba7cee49.ico" - ], + "icons": { + "https://gruene-saerbeck.de/templates/tk_minimalist/favicon.ico": "f5d6e284c9ac6d8c7613ef1eba7cee49.ico" + }, "ipv4_addresses": [ "81.169.145.93" ], @@ -100416,7 +100571,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - OV Saerbeck" }, - "duration": 293, + "duration": 146, "error": null, "responsive": { "document_width": { @@ -100463,7 +100618,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 293 + "value": 146 }, "RESPONSIVE": { "score": 0, @@ -100504,9 +100659,9 @@ "resolved_hostname": "www.gruene-salzhausen-hanstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-salzhausen-hanstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -100548,7 +100703,7 @@ "opengraph": null, "title": "Grüne Salzhausen-Hanstedt: Home" }, - "duration": 233, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -100596,7 +100751,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 233 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -100638,9 +100793,9 @@ "resolvable": false } }, - "icons": [ - "4f4203fe1c43523919b3905a8b3e63a9.ico" - ], + "icons": { + "http://www.gruene-sassenberg.de/fileadmin/templates/img/favicon.ico": "4f4203fe1c43523919b3905a8b3e63a9.ico" + }, "ipv4_addresses": [ "87.119.201.168" ], @@ -100675,7 +100830,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 85, + "duration": 99, "error": null, "responsive": { "document_width": { @@ -100723,7 +100878,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 99 }, "RESPONSIVE": { "score": 0, @@ -100764,9 +100919,9 @@ "resolved_hostname": "www.gruene-schaumburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schaumburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -100808,7 +100963,7 @@ "opengraph": null, "title": "Grüne Schaumburg: Aktuelles" }, - "duration": 190, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -100856,7 +101011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -100944,7 +101099,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Ortsverband Schermbeck" }, - "duration": 65, + "duration": 75, "error": null, "responsive": { "document_width": { @@ -101018,7 +101173,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 67 + "value": 72 }, "RESPONSIVE": { "score": 1, @@ -101063,9 +101218,10 @@ "resolved_hostname": "www.gruene-schoeppingen.de" } }, - "icons": [ - "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico" - ], + "icons": { + "http://gruene-schoeppingen.de/favicon.ico": "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico", + "http://www.gruene-schoeppingen.de/favicon.ico": "1ce0c63f8bd1e5d3376ec0ae95a41c08.ico" + }, "ipv4_addresses": [ "212.83.36.41" ], @@ -101114,7 +101270,7 @@ "opengraph": null, "title": "Willkommen bei BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 204, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -101141,7 +101297,7 @@ "opengraph": null, "title": "Willkommen bei BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 199, + "duration": 370, "error": null, "responsive": { "document_width": { @@ -101190,7 +101346,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 386 }, "RESPONSIVE": { "score": 0, @@ -101234,9 +101390,9 @@ "resolved_hostname": "www.gruene-schopfheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-schopfheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.57" ], @@ -101294,7 +101450,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN" }, - "duration": 404, + "duration": 421, "error": null, "responsive": { "document_width": { @@ -101342,7 +101498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 404 + "value": 421 }, "RESPONSIVE": { "score": 1, @@ -101382,9 +101538,9 @@ "resolved_hostname": "www.gruene-schuettorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schuettorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -101426,7 +101582,7 @@ "opengraph": null, "title": "Grüne Schüttorf: Home" }, - "duration": 157, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -101474,7 +101630,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -101515,9 +101671,10 @@ "resolved_hostname": "www.gruene-schurwald.de" } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "http://gruene-schurwald.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico", + "http://www.gruene-schurwald.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "80.67.28.149" ], @@ -101565,7 +101722,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen Schurwald!" }, - "duration": 423, + "duration": 339, "error": null, "responsive": { "document_width": { @@ -101588,7 +101745,7 @@ "opengraph": null, "title": "Willkommen bei den Grünen Schurwald!" }, - "duration": 347, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -101638,7 +101795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 385 + "value": 340 }, "RESPONSIVE": { "score": 1, @@ -101681,9 +101838,9 @@ "resolved_hostname": "www.gruene-schwabing.de" } }, - "icons": [ - "f76891dfa7e8a000d51411c771bdd271.ico" - ], + "icons": { + "http://www.gruene-schwabing.de/fileadmin/layout/favicon.ico": "f76891dfa7e8a000d51411c771bdd271.ico" + }, "ipv4_addresses": [ "134.119.225.163" ], @@ -101820,9 +101977,9 @@ "resolved_hostname": "www.gruene-schwaebisch-gmuend.de" } }, - "icons": [ - "dc897b554b4adb29245db4db1a550bd6.ico" - ], + "icons": { + "http://www.gruene-schwaebisch-gmuend.de/favicon.ico": "dc897b554b4adb29245db4db1a550bd6.ico" + }, "ipv4_addresses": [ "212.87.154.3" ], @@ -101867,7 +102024,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Kreisverband Schwäbisch Gmünd" }, - "duration": 540, + "duration": 518, "error": null, "responsive": { "document_width": { @@ -101890,7 +102047,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Kreisverband Schwäbisch Gmünd" }, - "duration": 69, + "duration": 550, "error": null, "responsive": { "document_width": { @@ -101940,7 +102097,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 304 + "value": 534 }, "RESPONSIVE": { "score": 0, @@ -101981,9 +102138,7 @@ "resolved_hostname": "www.gruene-schwalmstadt.de" } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "81.20.85.140" ], @@ -102028,7 +102183,7 @@ "opengraph": null, "title": "Home | Bündnis 90 - Die Grüne SCHWALMSTADT - Nichts ist grüner als Grün selber!" }, - "duration": 560, + "duration": 19, "error": null, "responsive": { "document_width": { @@ -102051,7 +102206,7 @@ "opengraph": null, "title": "Home | Bündnis 90 - Die Grüne SCHWALMSTADT - Nichts ist grüner als Grün selber!" }, - "duration": 649, + "duration": 749, "error": null, "responsive": { "document_width": { @@ -102101,7 +102256,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 384 }, "RESPONSIVE": { "score": 0, @@ -102255,9 +102410,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-schwarzwald-baar.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-schwarzwald-baar.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -102289,7 +102445,7 @@ "opengraph": null, "title": "Grüne Kreisverband Schwarzwald Baar: Kreisverband Schwarzwald-Baar" }, - "duration": 473, + "duration": 419, "error": null, "responsive": { "document_width": { @@ -102312,7 +102468,7 @@ "opengraph": null, "title": "Grüne Kreisverband Schwarzwald Baar: Kreisverband Schwarzwald-Baar" }, - "duration": 609, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -102361,7 +102517,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 344 }, "RESPONSIVE": { "score": 1, @@ -102403,9 +102559,10 @@ "resolved_hostname": "www.gruene-schwerin.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwerin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-schwerin.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102447,7 +102604,7 @@ "opengraph": null, "title": "Grüne in Schwerin: Startseite" }, - "duration": 205, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -102470,7 +102627,7 @@ "opengraph": null, "title": "Grüne in Schwerin: Startseite" }, - "duration": 198, + "duration": 248, "error": null, "responsive": { "document_width": { @@ -102519,7 +102676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -102560,9 +102717,10 @@ "resolved_hostname": "www.gruene-schwerte.de" } }, - "icons": [ - "773ffeda045b702523518f1fc217ae54.ico" - ], + "icons": { + "http://gruene-schwerte.de/assets/favicon.ico?v=2": "773ffeda045b702523518f1fc217ae54.ico", + "http://www.gruene-schwerte.de/assets/favicon.ico?v=2": "773ffeda045b702523518f1fc217ae54.ico" + }, "ipv4_addresses": [ "194.9.124.64" ], @@ -102610,7 +102768,7 @@ "opengraph": null, "title": "Herzlich willkommen!" }, - "duration": 56, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -102633,7 +102791,7 @@ "opengraph": null, "title": "Herzlich willkommen!" }, - "duration": 76, + "duration": 60, "error": null, "responsive": { "document_width": { @@ -102683,7 +102841,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 64 }, "RESPONSIVE": { "score": 1, @@ -102723,9 +102881,9 @@ "resolved_hostname": "www.gruene-seenplatte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seenplatte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102767,7 +102925,7 @@ "opengraph": null, "title": "Meckl. Seenplatte: Startseite" }, - "duration": 189, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -102815,7 +102973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -102855,9 +103013,9 @@ "resolved_hostname": "www.gruene-seevetal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seevetal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -102899,7 +103057,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Seevetal - Aktuell: Startseite" }, - "duration": 196, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -102947,7 +103105,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -102987,9 +103145,9 @@ "resolved_hostname": "www.gruene-sehnde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-sehnde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103031,7 +103189,7 @@ "opengraph": null, "title": "Ortsverband Sehnde: Home" }, - "duration": 206, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -103079,7 +103237,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -103119,9 +103277,9 @@ "resolved_hostname": "www.gruene-sg-fintel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sg-fintel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103163,7 +103321,7 @@ "opengraph": null, "title": "Ortsverband SG Fintel: Startseite" }, - "duration": 172, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -103211,7 +103369,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -103251,9 +103409,9 @@ "resolved_hostname": "www.gruene-sha.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-sha.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -103295,7 +103453,7 @@ "opengraph": null, "title": "KV Schwäbisch Hall: Home" }, - "duration": 224, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -103343,7 +103501,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 224 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -103413,7 +103571,7 @@ "opengraph": null, "title": "Homepage" }, - "duration": 52, + "duration": 61, "error": null, "responsive": { "document_width": { @@ -103463,7 +103621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 52 + "value": 61 }, "RESPONSIVE": { "score": 0, @@ -103506,9 +103664,9 @@ "resolvable": false } }, - "icons": [ - "5734263810e8879e443ee84db61bf729.ico" - ], + "icons": { + "http://gruene-siegen-wittgenstein.de/fileadmin/icons/world.ico": "5734263810e8879e443ee84db61bf729.ico" + }, "ipv4_addresses": [ "87.119.201.130" ], @@ -103543,7 +103701,7 @@ "opengraph": null, "title": "Start - Die Grünen Siegen-Wittgenstein" }, - "duration": 449, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -103591,7 +103749,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 449 + "value": 435 }, "RESPONSIVE": { "score": 0, @@ -103635,9 +103793,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-sigmaringen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.93" ], @@ -103683,7 +103841,7 @@ ], "title": "Kreisverband Sigmaringen" }, - "duration": 306, + "duration": 280, "error": null, "responsive": { "document_width": { @@ -103731,7 +103889,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 306 + "value": 280 }, "RESPONSIVE": { "score": 1, @@ -103776,9 +103934,9 @@ "resolved_hostname": "www.gruene-simmerath.de" } }, - "icons": [ - "732bd7f50ca99981afb8252c153a7fb7.png" - ], + "icons": { + "http://gruene-region-aachen.de/simmerath/wp/wp-content/uploads/2015/01/favicon.png": "732bd7f50ca99981afb8252c153a7fb7.png" + }, "ipv4_addresses": [ "80.237.132.171" ], @@ -103795,7 +103953,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -103803,7 +103961,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-simmerath.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -103830,7 +103988,7 @@ "opengraph": null, "title": "GRUENE SIMMERATH" }, - "duration": 465, + "duration": 522, "error": null, "responsive": { "document_width": { @@ -103857,7 +104015,7 @@ "opengraph": null, "title": "GRUENE SIMMERATH" }, - "duration": 443, + "duration": 498, "error": null, "responsive": { "document_width": { @@ -103906,7 +104064,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 510 }, "RESPONSIVE": { "score": 1, @@ -103947,9 +104105,10 @@ "resolved_hostname": "www.gruene-sindelfingen.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://gruene-sindelfingen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "http://www.gruene-sindelfingen.de/bilder/favicon.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "134.119.234.23" ], @@ -103994,7 +104153,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Sindelfingen" }, - "duration": 126, + "duration": 110, "error": null, "responsive": { "document_width": { @@ -104017,7 +104176,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Sindelfingen" }, - "duration": 170, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -104067,7 +104226,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 135 }, "RESPONSIVE": { "score": 0, @@ -104107,9 +104266,9 @@ "resolved_hostname": "www.gruene-sl-fl.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-sl-fl.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104151,7 +104310,7 @@ "opengraph": null, "title": "Grüne Schleswig-Flensburg: Home" }, - "duration": 201, + "duration": 265, "error": null, "responsive": { "document_width": { @@ -104199,7 +104358,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 265 }, "RESPONSIVE": { "score": 1, @@ -104269,7 +104428,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Aktuelles" }, - "duration": 169, + "duration": 150, "error": null, "responsive": { "document_width": { @@ -104319,7 +104478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 150 }, "RESPONSIVE": { "score": 0, @@ -104360,9 +104519,9 @@ "resolved_hostname": "www.gruene-solingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-solingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104404,7 +104563,7 @@ "opengraph": null, "title": "DIE GRÜNEN SOLINGEN: PORTAL" }, - "duration": 189, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -104452,7 +104611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -104496,9 +104655,9 @@ "resolved_hostname": "www.gruene-sonsbeck.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-sonsbeck.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.57" ], @@ -104556,7 +104715,7 @@ ], "title": "Bündnis 90 / Die Grünen Sonsbeck" }, - "duration": 835, + "duration": 817, "error": null, "responsive": { "document_width": { @@ -104604,7 +104763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 835 + "value": 817 }, "RESPONSIVE": { "score": 1, @@ -104645,6 +104804,7 @@ "resolved_hostname": "www.gruene-sonthofen.de" } }, + "icons": {}, "ipv4_addresses": [ "217.160.231.234" ], @@ -104689,7 +104849,7 @@ "opengraph": null, "title": "Buendnis 90 / Die Gruenen in Sonthofen – News" }, - "duration": 232, + "duration": 263, "error": null, "responsive": { "document_width": { @@ -104712,7 +104872,7 @@ "opengraph": null, "title": "Buendnis 90 / Die Gruenen in Sonthofen – News" }, - "duration": 370, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -104746,9 +104906,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -104763,7 +104922,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 301 + "value": 250 }, "RESPONSIVE": { "score": 0, @@ -104779,7 +104938,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -104807,9 +104966,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-sprockhoevel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -104855,7 +105014,7 @@ ], "title": "Grüne Sprockhövel" }, - "duration": 309, + "duration": 425, "error": null, "responsive": { "document_width": { @@ -104903,7 +105062,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 425 }, "RESPONSIVE": { "score": 1, @@ -104944,9 +105103,9 @@ "resolved_hostname": "www.gruene-stadt-leer.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -104988,7 +105147,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Startseite" }, - "duration": 232, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -105036,7 +105195,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 232 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -105080,9 +105239,9 @@ "resolved_hostname": "www.gruene-stadtlohn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-stadtlohn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -105141,7 +105300,7 @@ ], "title": "Bündnis 90/Die Grünen – Stadtlohn" }, - "duration": 474, + "duration": 470, "error": null, "responsive": { "document_width": { @@ -105189,7 +105348,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 470 }, "RESPONSIVE": { "score": 1, @@ -105229,9 +105388,9 @@ "resolved_hostname": "www.gruene-steinburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-steinburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105273,7 +105432,7 @@ "opengraph": null, "title": "Kreisverband Steinburg: Home / Aktuelles" }, - "duration": 168, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -105321,7 +105480,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -105361,9 +105520,9 @@ "resolved_hostname": "www.gruene-steinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105405,7 +105564,7 @@ "opengraph": null, "title": "Ortsverband Steinfurt: Home" }, - "duration": 194, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -105453,7 +105612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -105510,7 +105669,7 @@ }, { "error": { - "message": "('Connection aborted.', OSError(0, 'Error'))", + "message": "HTTPSConnectionPool(host='gruene-steinlach-wiesaz.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -105518,7 +105677,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-steinlach-wiesaz.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "('Connection aborted.', OSError(0, 'Error'))", "type": "" }, "redirects_to": null, @@ -105538,7 +105697,7 @@ "opengraph": null, "title": "gruene-steinlach-wiesaz.de" }, - "duration": 84, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -105561,7 +105720,7 @@ "opengraph": null, "title": "www.gruene-steinlach-wiesaz.de" }, - "duration": 95, + "duration": 88, "error": null, "responsive": { "document_width": { @@ -105612,7 +105771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 90 + "value": 96 }, "RESPONSIVE": { "score": 0, @@ -105652,9 +105811,9 @@ "resolved_hostname": "www.gruene-stormarn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stormarn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105696,7 +105855,7 @@ "opengraph": null, "title": "Kreisverband Stormarn: Home" }, - "duration": 228, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -105744,7 +105903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -105832,7 +105991,7 @@ "opengraph": null, "title": "" }, - "duration": 75, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -105855,7 +106014,7 @@ "opengraph": null, "title": "" }, - "duration": 68, + "duration": 62, "error": null, "responsive": { "document_width": { @@ -105906,7 +106065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 72 + "value": 62 }, "RESPONSIVE": { "score": 0, @@ -105946,9 +106105,9 @@ "resolved_hostname": "www.gruene-telgte.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-telgte.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -105990,7 +106149,7 @@ "opengraph": null, "title": "Grüner Ortsverband Telgte: Startseite" }, - "duration": 246, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -106038,7 +106197,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 246 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -106082,9 +106241,9 @@ "resolved_hostname": "www.gruene-tettnang.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-tettnang.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "178.254.50.201" ], @@ -106143,7 +106302,7 @@ ], "title": "Bündnis 90 / Die Grünen Tettnang" }, - "duration": 329, + "duration": 471, "error": null, "responsive": { "document_width": { @@ -106191,7 +106350,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 329 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -106389,7 +106548,7 @@ "opengraph": null, "title": "Home - Bündnis 90 / Die Grünen KV Treptow-Köpenick von Berlin" }, - "duration": 572, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -106439,7 +106598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 572 + "value": 578 }, "RESPONSIVE": { "score": 0, @@ -106483,9 +106642,9 @@ "resolved_hostname": "www.gruene-ts.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-ts.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.253.41" ], @@ -106547,7 +106706,7 @@ ], "title": "Bündnis 90/Die Grünen - Tempelhof-Schöneberg" }, - "duration": 268, + "duration": 418, "error": null, "responsive": { "document_width": { @@ -106595,7 +106754,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 268 + "value": 418 }, "RESPONSIVE": { "score": 1, @@ -106635,6 +106794,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -106663,7 +106823,7 @@ "opengraph": null, "title": "Grüne Kreis Tuttlingen: Aktuelles" }, - "duration": 411, + "duration": 368, "error": null, "responsive": { "document_width": { @@ -106686,7 +106846,7 @@ "opengraph": null, "title": "Grüne Kreis Tuttlingen: Aktuelles" }, - "duration": 444, + "duration": 431, "error": null, "responsive": { "document_width": { @@ -106720,9 +106880,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -106736,7 +106895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 400 }, "RESPONSIVE": { "score": 0, @@ -106753,7 +106912,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -106777,9 +106936,9 @@ "resolved_hostname": "www.gruene-ulm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ulm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -106821,7 +106980,7 @@ "opengraph": null, "title": "Grüne Ulm: Termine" }, - "duration": 178, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -106869,7 +107028,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 178 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -106963,7 +107122,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Groß-Umstadt" }, - "duration": 169, + "duration": 168, "error": null, "responsive": { "document_width": { @@ -106994,7 +107153,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Groß-Umstadt" }, - "duration": 210, + "duration": 248, "error": null, "responsive": { "document_width": { @@ -107043,7 +107202,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -107090,6 +107249,7 @@ "resolved_hostname": "www.gruene-unna.de" } }, + "icons": {}, "ipv4_addresses": [ "195.34.83.119" ], @@ -107141,7 +107301,7 @@ ], "title": "Bündnis 90/Die Grünen Unna" }, - "duration": 309, + "duration": 463, "error": null, "responsive": { "document_width": { @@ -107174,7 +107334,7 @@ ], "title": "Bündnis 90/Die Grünen Unna" }, - "duration": 376, + "duration": 380, "error": null, "responsive": { "document_width": { @@ -107208,9 +107368,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -107223,7 +107382,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 342 + "value": 422 }, "RESPONSIVE": { "score": 0, @@ -107239,7 +107398,7 @@ "value": true } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -107262,9 +107421,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-vaihingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -107296,7 +107455,7 @@ "opengraph": null, "title": "Grüne OV Vaihingen Enz: gruene-vaihingen.de" }, - "duration": 563, + "duration": 599, "error": null, "responsive": { "document_width": { @@ -107344,7 +107503,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 563 + "value": 599 }, "RESPONSIVE": { "score": 1, @@ -107390,9 +107549,9 @@ "resolved_hostname": "www.gruene-velbert.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-velbert.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.139.242" ], @@ -107451,7 +107610,7 @@ ], "title": "Die Grünen in Velbert |" }, - "duration": 104, + "duration": 103, "error": null, "responsive": { "document_width": { @@ -107499,7 +107658,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 104 + "value": 103 }, "RESPONSIVE": { "score": 1, @@ -107584,7 +107743,7 @@ "opengraph": null, "title": "gruene-vellmar.de" }, - "duration": 63, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -107607,7 +107766,7 @@ "opengraph": null, "title": "gruene-vellmar.de" }, - "duration": 107, + "duration": 73, "error": null, "responsive": { "document_width": { @@ -107658,7 +107817,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 70 }, "RESPONSIVE": { "score": 0, @@ -107702,9 +107861,9 @@ "resolved_hostname": "www.gruene-verden.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-verden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "91.198.250.84" ], @@ -107721,7 +107880,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -107729,7 +107888,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-verden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -107763,7 +107922,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 713, + "duration": 492, "error": null, "responsive": { "document_width": { @@ -107811,7 +107970,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 492 }, "RESPONSIVE": { "score": 1, @@ -107855,9 +108014,9 @@ "resolved_hostname": "www.gruene-versmold.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-versmold.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.7" ], @@ -107916,7 +108075,7 @@ ], "title": "Die Versmolder GRÜNEN" }, - "duration": 471, + "duration": 384, "error": null, "responsive": { "document_width": { @@ -107964,7 +108123,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 471 + "value": 384 }, "RESPONSIVE": { "score": 1, @@ -108138,7 +108297,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108146,7 +108305,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-voerde.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108173,7 +108332,7 @@ "opengraph": null, "title": "Gruene Voerde" }, - "duration": 514, + "duration": 524, "error": null, "responsive": { "document_width": { @@ -108222,7 +108381,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -108308,7 +108467,7 @@ ], "title": "Grüne Vogelsberg" }, - "duration": 221, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -108357,7 +108516,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -108400,9 +108559,9 @@ "resolved_hostname": "www.gruene-vogtland.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-vogtland.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -108450,7 +108609,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Vogtland" }, - "duration": 220, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -108498,7 +108657,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 257 }, "RESPONSIVE": { "score": 0, @@ -108537,9 +108696,9 @@ "resolvable": false } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vorpommern-greifswald.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -108571,7 +108730,7 @@ "opengraph": null, "title": "KV Vorpommern-Greifswald: Startseite" }, - "duration": 199, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -108619,7 +108778,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -108660,9 +108819,9 @@ "resolved_hostname": "www.gruene-vorpommern-ruegen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-vorpommern-ruegen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -108704,7 +108863,7 @@ "opengraph": null, "title": "Grüne Vorpommern-Rügen: Startseite" }, - "duration": 192, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -108752,7 +108911,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 225 }, "RESPONSIVE": { "score": 1, @@ -108793,9 +108952,9 @@ "resolved_hostname": "www.gruene-vreden.de" } }, - "icons": [ - "7043aa439c45317d0495a544e6db92e7.ico" - ], + "icons": { + "http://www.gruene-vreden.de/favicon.ico": "7043aa439c45317d0495a544e6db92e7.ico" + }, "ipv4_addresses": [ "194.116.187.24" ], @@ -108812,7 +108971,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108820,7 +108979,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-vreden.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -108840,7 +108999,7 @@ "opengraph": null, "title": "gruene-vreden.de" }, - "duration": 89, + "duration": 128, "error": null, "responsive": { "document_width": { @@ -108863,7 +109022,7 @@ "opengraph": null, "title": "gruene-vreden.de" }, - "duration": 90, + "duration": 89, "error": null, "responsive": { "document_width": { @@ -108911,9 +109070,9 @@ "value": false }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 90 + "value": 108 }, "RESPONSIVE": { "score": 0, @@ -108929,7 +109088,7 @@ "value": true } }, - "score": 5.0 + "score": 4.5 }, { "details": { @@ -108957,9 +109116,9 @@ "resolved_hostname": "www.gruene-wachtendonk.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://gruene-wachtendonk.de/fileadmin/icons/flower.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -109007,7 +109166,7 @@ "opengraph": null, "title": "Aktuell - Bündnis 90/Die Grünen Wachtendonk und Wankum" }, - "duration": 149, + "duration": 614, "error": null, "responsive": { "document_width": { @@ -109033,7 +109192,7 @@ "opengraph": null, "title": "Aktuell - Bündnis 90/Die Grünen Wachtendonk und Wankum" }, - "duration": 152, + "duration": 149, "error": null, "responsive": { "document_width": { @@ -109082,7 +109241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 150 + "value": 382 }, "RESPONSIVE": { "score": 0, @@ -109122,9 +109281,9 @@ "resolved_hostname": "www.gruene-waf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-warendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -109166,7 +109325,7 @@ "opengraph": null, "title": "Grüne WAF: Startseite" }, - "duration": 228, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -109214,7 +109373,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -109326,9 +109485,9 @@ "resolved_hostname": "www.gruene-wallenhorst.de" } }, - "icons": [ - "99b2c4656862aa2091be146489d783d8.ico" - ], + "icons": { + "http://www.gruene-wallenhorst.de/fileadmin/template/images/favicon.ico": "99b2c4656862aa2091be146489d783d8.ico" + }, "ipv4_addresses": [ "85.13.139.107" ], @@ -109376,7 +109535,7 @@ ], "title": "Grüne Ortsverband Wallenhorst ::\tWir machen das klar." }, - "duration": 446, + "duration": 429, "error": null, "responsive": { "document_width": { @@ -109402,7 +109561,7 @@ ], "title": "Grüne Ortsverband Wallenhorst ::\tWir machen das klar." }, - "duration": 377, + "duration": 418, "error": null, "responsive": { "document_width": { @@ -109452,7 +109611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 412 + "value": 424 }, "RESPONSIVE": { "score": 0, @@ -109492,9 +109651,9 @@ "resolved_hostname": "www.gruene-walsrode.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-walsrode.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -109536,7 +109695,7 @@ "opengraph": null, "title": "OV Walsrode-Bomlitz: Home" }, - "duration": 200, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -109584,7 +109743,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -109625,9 +109784,9 @@ "resolved_hostname": "www.gruene-wandsbek.de" } }, - "icons": [ - "e219c851b74accc55a3aa6560173a8eb.png" - ], + "icons": { + "http://www.gruene-wandsbek.de/fileadmin/templates/images/favicon.png": "e219c851b74accc55a3aa6560173a8eb.png" + }, "ipv4_addresses": [ "91.250.71.14" ], @@ -109644,7 +109803,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -109652,7 +109811,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wandsbek.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -109665,7 +109824,7 @@ "urlchecks": [ { "content": null, - "duration": 61, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -109684,11 +109843,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "http://www.gruene-partei-wandsbek.de/fileadmin/templates/images/favicon.png", + "icon": "http://www.gruene-wandsbek.de/fileadmin/templates/images/favicon.png", "opengraph": null, "title": "Grüne Wandsbek" }, - "duration": 183, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -109738,7 +109897,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 109 }, "RESPONSIVE": { "score": 0, @@ -109785,9 +109944,10 @@ "resolved_hostname": "www.gruene-wangen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-wangen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "89.238.66.39" ], @@ -109842,7 +110002,7 @@ ], "title": "Kreisverband Wangen" }, - "duration": 121, + "duration": 672, "error": null, "responsive": { "document_width": { @@ -109875,7 +110035,7 @@ ], "title": "Kreisverband Wangen" }, - "duration": 553, + "duration": 820, "error": null, "responsive": { "document_width": { @@ -109923,7 +110083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 337 + "value": 746 }, "RESPONSIVE": { "score": 1, @@ -109963,9 +110123,9 @@ "resolved_hostname": "www.gruene-warendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-warendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -110007,7 +110167,7 @@ "opengraph": null, "title": "Ortsverband Warendorf: Startseite" }, - "duration": 215, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -110055,7 +110215,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -110102,9 +110262,10 @@ "resolved_hostname": "www.gruene-wartburgkreis-eisenach.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wartburgkreis-eisenach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-wartburgkreis-eisenach.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.9" ], @@ -110156,7 +110317,7 @@ ], "title": "- BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 714, + "duration": 665, "error": null, "responsive": { "document_width": { @@ -110189,7 +110350,7 @@ ], "title": "- BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 714, + "duration": 734, "error": null, "responsive": { "document_width": { @@ -110237,7 +110398,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 714 + "value": 700 }, "RESPONSIVE": { "score": 1, @@ -110294,7 +110455,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -110302,7 +110463,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wassenberg.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -110322,7 +110483,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Wassenberg" }, - "duration": 64, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -110345,7 +110506,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen in Wassenberg" }, - "duration": 68, + "duration": 79, "error": null, "responsive": { "document_width": { @@ -110396,7 +110557,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 66 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -110440,9 +110601,9 @@ "resolved_hostname": "www.gruene-wasserburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wasserburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.21.102.223" ], @@ -110501,7 +110662,7 @@ ], "title": "Die Grünen in Wasserburg" }, - "duration": 524, + "duration": 540, "error": null, "responsive": { "document_width": { @@ -110549,7 +110710,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 524 + "value": 540 }, "RESPONSIVE": { "score": 1, @@ -110592,9 +110753,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wegberg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.131.233.85" ], @@ -110639,7 +110800,7 @@ ], "title": "Grüne Wegberg" }, - "duration": 468, + "duration": 407, "error": null, "responsive": { "document_width": { @@ -110687,7 +110848,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 468 + "value": 407 }, "RESPONSIVE": { "score": 1, @@ -110773,7 +110934,7 @@ "opengraph": null, "title": null }, - "duration": 60, + "duration": 95, "error": null, "responsive": { "document_width": { @@ -110796,7 +110957,7 @@ "opengraph": null, "title": null }, - "duration": 75, + "duration": 67, "error": null, "responsive": { "document_width": { @@ -110847,7 +111008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 68 + "value": 81 }, "RESPONSIVE": { "score": 0, @@ -110887,9 +111048,9 @@ "resolved_hostname": "www.gruene-weimar.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weimar.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -110931,7 +111092,7 @@ "opengraph": null, "title": "Grüne in Weimar: Grüne Neuigkeiten" }, - "duration": 195, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -110979,7 +111140,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -111019,9 +111180,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-wendlingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-wendlingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -111053,7 +111215,7 @@ "opengraph": null, "title": "Grüne Wendlingen: Home" }, - "duration": 472, + "duration": 815, "error": null, "responsive": { "document_width": { @@ -111076,7 +111238,7 @@ "opengraph": null, "title": "Grüne Wendlingen: Home" }, - "duration": 567, + "duration": 603, "error": null, "responsive": { "document_width": { @@ -111125,7 +111287,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 520 + "value": 709 }, "RESPONSIVE": { "score": 1, @@ -111197,7 +111359,7 @@ "opengraph": null, "title": "gruene-werl" }, - "duration": 54, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -111220,7 +111382,7 @@ "opengraph": null, "title": "gruene-werl" }, - "duration": 116, + "duration": 125, "error": null, "responsive": { "document_width": { @@ -111270,7 +111432,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 85 + "value": 94 }, "RESPONSIVE": { "score": 0, @@ -111311,9 +111473,9 @@ "resolved_hostname": "www.gruene-wermelskirchen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wermelskirchen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111355,7 +111517,7 @@ "opengraph": null, "title": "Grüne in Wermelskirchen: Home" }, - "duration": 200, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -111403,7 +111565,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -111443,9 +111605,9 @@ "resolved_hostname": "www.gruene-werra-meissner.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-werra-meissner.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111487,7 +111649,7 @@ "opengraph": null, "title": "Grüne Werra-Meißner: Start" }, - "duration": 205, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -111535,7 +111697,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -111579,9 +111741,9 @@ "resolved_hostname": "www.gruene-wesel.de" } }, - "icons": [ - "304c2af408fe19b004c3bccf847b455a.png" - ], + "icons": { + "https://www.gruene-wesel.de/wp-content/uploads/2017/03/Fav.png": "304c2af408fe19b004c3bccf847b455a.png" + }, "ipv4_addresses": [ "185.21.102.152" ], @@ -111627,7 +111789,7 @@ "opengraph": null, "title": "Die Grünen Wesel – Bündnis 90 die Grünen" }, - "duration": 674, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -111674,7 +111836,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 706 }, "RESPONSIVE": { "score": 1, @@ -111714,9 +111876,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111758,7 +111920,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 189, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -111806,7 +111968,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -111846,9 +112008,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -111890,7 +112052,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 188, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -111938,7 +112100,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -111978,9 +112140,9 @@ "resolved_hostname": "www.gruene-wesermarsch.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wesermarsch.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112022,7 +112184,7 @@ "opengraph": null, "title": "Grüne Wesermarsch: Home" }, - "duration": 187, + "duration": 276, "error": null, "responsive": { "document_width": { @@ -112070,7 +112232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 276 }, "RESPONSIVE": { "score": 1, @@ -112110,9 +112272,9 @@ "resolved_hostname": "www.gruene-westerkappeln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-westerkappeln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112154,7 +112316,7 @@ "opengraph": null, "title": "OV Westerkappeln: Home" }, - "duration": 171, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -112202,7 +112364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -112242,9 +112404,9 @@ "resolved_hostname": "www.gruene-wiefelstede.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wiefelstede.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112286,7 +112448,7 @@ "opengraph": null, "title": "Ortsverband Wiefelstede: Home" }, - "duration": 160, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -112334,7 +112496,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -112374,9 +112536,9 @@ "resolved_hostname": "www.gruene-wiesbaden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wiesbaden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -112418,7 +112580,7 @@ "opengraph": null, "title": "DIE GRÜNEN WIESBADEN: Startseite" }, - "duration": 170, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -112466,7 +112628,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -112510,9 +112672,9 @@ "resolved_hostname": "www.gruene-willich.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-willich.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.53.130.238" ], @@ -112565,7 +112727,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Willich" }, - "duration": 244, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -112612,7 +112774,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -112672,7 +112834,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -112680,7 +112842,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruene-wilnsdorf.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -112707,7 +112869,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN WILNSDORF – Aktuelle Sacharbeit der Fraktion in der Kommunalpolitik der Gemeinde Wilnsdorf" }, - "duration": 372, + "duration": 389, "error": null, "responsive": { "document_width": { @@ -112756,7 +112918,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -112799,9 +112961,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-winsen.de/wp-content/themes/1508095540-3wqS2x/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -112846,7 +113008,7 @@ ], "title": "Grüne Winsen" }, - "duration": 154, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -112894,7 +113056,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 154 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -112942,9 +113104,10 @@ "resolved_hostname": "www.gruene-wittenberg.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "http://www.gruene-wittenberg.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico", + "https://www.gruene-wittenberg.de/wp-content/themes/blum-o-matic/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "178.63.49.198" ], @@ -112995,7 +113158,7 @@ ], "title": "Allgemein | BÜNDNIS 90/DIE GRÜNEN Lutherstadt Wittenberg" }, - "duration": 898, + "duration": 657, "error": null, "responsive": { "document_width": { @@ -113030,7 +113193,7 @@ ], "title": "Allgemein | BÜNDNIS 90/DIE GRÜNEN Lutherstadt Wittenberg" }, - "duration": 452, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -113078,7 +113241,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 675 + "value": 475 }, "RESPONSIVE": { "score": 0, @@ -113121,9 +113284,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113165,7 +113328,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 297, + "duration": 328, "error": null, "responsive": { "document_width": { @@ -113212,7 +113375,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 328 }, "RESPONSIVE": { "score": 1, @@ -113256,9 +113419,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113300,7 +113463,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 275, + "duration": 285, "error": null, "responsive": { "document_width": { @@ -113347,7 +113510,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 275 + "value": 285 }, "RESPONSIVE": { "score": 1, @@ -113391,9 +113554,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113435,7 +113598,7 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 238, + "duration": 270, "error": null, "responsive": { "document_width": { @@ -113482,7 +113645,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 238 + "value": 270 }, "RESPONSIVE": { "score": 1, @@ -113526,9 +113689,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wittmund.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "193.141.3.74" ], @@ -113570,11 +113733,11 @@ ], "title": "Bündnis 90 / Die Grünen Kreisverband Wittmund" }, - "duration": 239, + "duration": 321, "error": null, "responsive": { "document_width": { - "1024x768": 1113, + "1024x768": 1128, "1920x1080": 1920, "320x480": 375, "768x1024": 768 @@ -113617,7 +113780,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 239 + "value": 321 }, "RESPONSIVE": { "score": 1, @@ -113662,9 +113825,9 @@ "resolved_hostname": "www.gruene-wolfenbuettel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-wolfenbuettel.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.231.206" ], @@ -113723,7 +113886,7 @@ ], "title": "Ortsverband Stadt Wolfenbüttel" }, - "duration": 721, + "duration": 832, "error": null, "responsive": { "document_width": { @@ -113771,7 +113934,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 721 + "value": 832 }, "RESPONSIVE": { "score": 1, @@ -113815,9 +113978,9 @@ "resolved_hostname": "www.gruene-wolfhagen.de" } }, - "icons": [ - "a8845e9b6d45a85718dbc14efe72de99.jpg" - ], + "icons": { + "http://www.gruene-wolfhagen.de/wp-content/uploads/2015/10/cropped-Grüne_OV_Quadrat-e1446235774756-32x32.jpg": "a8845e9b6d45a85718dbc14efe72de99.jpg" + }, "ipv4_addresses": [ "217.160.122.8" ], @@ -113866,7 +114029,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN – Ortsverband Wolfhagen - Partei und Interessenvertretung für Wolfhagenren uns auf Inhalte !" }, - "duration": 642, + "duration": 525, "error": null, "responsive": { "document_width": { @@ -113914,7 +114077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 642 + "value": 525 }, "RESPONSIVE": { "score": 0, @@ -113954,9 +114117,9 @@ "resolved_hostname": "www.gruene-wolfsburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wolfsburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -113998,7 +114161,7 @@ "opengraph": null, "title": "Grüne Wolfsburg: Aktuelles" }, - "duration": 191, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -114046,7 +114209,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -114086,9 +114249,9 @@ "resolved_hostname": "www.gruene-worms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-worms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -114130,7 +114293,7 @@ "opengraph": null, "title": "Die Wormser Grünen: Start" }, - "duration": 202, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -114178,7 +114341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -114218,9 +114381,9 @@ "resolved_hostname": "www.gruene-wst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-wst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -114262,7 +114425,7 @@ "opengraph": null, "title": "GRÜNE OV Westerstede: Bündnis90/DIE GRÜNEN Ortsverband Westerstede" }, - "duration": 192, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -114310,7 +114473,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -114354,9 +114517,9 @@ "resolved_hostname": "www.gruene-wuelfrath.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-wuelfrath.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "138.201.34.57" ], @@ -114415,7 +114578,7 @@ ], "title": "Bündnis 90 / Die Grünen aus Wülfrath im Bergischen Land - Verantwortungsvolle Politik für BürgerGrüne Wülfrath" }, - "duration": 69, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -114463,7 +114626,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 69 + "value": 63 }, "RESPONSIVE": { "score": 1, @@ -114548,7 +114711,7 @@ "opengraph": null, "title": "Grüne in der Stadt Würselen" }, - "duration": 70, + "duration": 76, "error": null, "responsive": { "document_width": { @@ -114571,7 +114734,7 @@ "opengraph": null, "title": "Grüne in der Stadt Würselen" }, - "duration": 72, + "duration": 81, "error": null, "responsive": { "document_width": { @@ -114622,7 +114785,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 71 + "value": 78 }, "RESPONSIVE": { "score": 0, @@ -114711,7 +114874,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 341, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -114739,7 +114902,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 191, + "duration": 151, "error": null, "responsive": { "document_width": { @@ -114795,7 +114958,7 @@ ], "title": "GRÜNE Westerwald" }, - "duration": 342, + "duration": 305, "error": null, "responsive": { "document_width": { @@ -114845,7 +115008,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 279 + "value": 219 }, "RESPONSIVE": { "score": 0, @@ -114892,9 +115055,10 @@ "resolved_hostname": "www.gruene-xanten.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-xanten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-xanten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.161" ], @@ -114946,7 +115110,7 @@ ], "title": "Bündnis 90 /Die Grünen" }, - "duration": 349, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -114979,7 +115143,7 @@ ], "title": "Bündnis 90 /Die Grünen" }, - "duration": 450, + "duration": 459, "error": null, "responsive": { "document_width": { @@ -115027,7 +115191,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 400 + "value": 411 }, "RESPONSIVE": { "score": 1, @@ -115067,9 +115231,9 @@ "resolved_hostname": "www.gruene-zeven.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-zeven.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -115111,7 +115275,7 @@ "opengraph": null, "title": "Ortsverband Zeven: Home" }, - "duration": 190, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -115159,7 +115323,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -115199,9 +115363,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-zollernalb.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-zollernalb.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -115233,7 +115398,7 @@ "opengraph": null, "title": "Grüne Kreis Zollernalb: HOME" }, - "duration": 433, + "duration": 487, "error": null, "responsive": { "document_width": { @@ -115256,7 +115421,7 @@ "opengraph": null, "title": "Grüne Kreis Zollernalb: HOME" }, - "duration": 725, + "duration": 479, "error": null, "responsive": { "document_width": { @@ -115305,7 +115470,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 579 + "value": 483 }, "RESPONSIVE": { "score": 1, @@ -115349,9 +115514,9 @@ "resolved_hostname": "www.gruene-zwickau.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "http://www.gruene-zwickau.de/fileadmin/kv2009/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.67" ], @@ -115399,7 +115564,7 @@ "opengraph": null, "title": "Startseite - BÜNDNIS 90/DIE GRÜNEN Kreisverband Zwickau" }, - "duration": 225, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -115447,7 +115612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 222 }, "RESPONSIVE": { "score": 0, @@ -115532,7 +115697,7 @@ "opengraph": null, "title": null }, - "duration": 310, + "duration": 484, "error": null, "responsive": { "document_width": { @@ -115555,7 +115720,7 @@ "opengraph": null, "title": null }, - "duration": 605, + "duration": 457, "error": null, "responsive": { "document_width": { @@ -115606,7 +115771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 458 + "value": 470 }, "RESPONSIVE": { "score": 0, @@ -115657,9 +115822,9 @@ "resolved_hostname": "www.gruene.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "https://www.gruene.de/tmpl/gfx/img/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "89.146.238.38" ], @@ -115716,7 +115881,7 @@ ], "title": "Startseite- BÜNDNIS 90/DIE GRÜNEN Bundespartei" }, - "duration": 215, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -115763,7 +115928,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -115807,9 +115972,9 @@ "resolved_hostname": "www.grueneasslar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grueneasslar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.173" ], @@ -115869,7 +116034,7 @@ ], "title": "Die Grünen in Aßlar" }, - "duration": 690, + "duration": 787, "error": null, "responsive": { "document_width": { @@ -115917,7 +116082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 690 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -115957,9 +116122,9 @@ "resolved_hostname": "www.gruenebedburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenebedburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116001,7 +116166,7 @@ "opengraph": null, "title": "DIE GRÜNEN Bedburg: Startseite" }, - "duration": 234, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -116049,7 +116214,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 234 + "value": 235 }, "RESPONSIVE": { "score": 1, @@ -116093,9 +116258,9 @@ "resolved_hostname": "www.grueneboro.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.grueneboro.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.213.107" ], @@ -116112,7 +116277,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -116120,7 +116285,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.grueneboro.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -116153,7 +116318,7 @@ ], "title": "OV Bobenheim-Roxheim" }, - "duration": 517, + "duration": 649, "error": null, "responsive": { "document_width": { @@ -116201,7 +116366,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 649 }, "RESPONSIVE": { "score": 1, @@ -116241,9 +116406,9 @@ "resolved_hostname": "www.gruenedelmenhorst.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruenedelmenhorst.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116285,7 +116450,7 @@ "opengraph": null, "title": "Kreisverband Delmenhorst: Home" }, - "duration": 191, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -116333,7 +116498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -116396,7 +116561,7 @@ "urlchecks": [ { "content": null, - "duration": 43, + "duration": 48, "error": null, "responsive": { "document_width": { @@ -116446,7 +116611,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 43 + "value": 48 }, "RESPONSIVE": { "score": 0, @@ -116532,7 +116697,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 612, + "duration": 359, "error": null, "responsive": { "document_width": { @@ -116555,7 +116720,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 363, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -116606,7 +116771,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 488 + "value": 354 }, "RESPONSIVE": { "score": 0, @@ -116646,9 +116811,9 @@ "resolved_hostname": "www.grueneleer.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneleer.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -116690,7 +116855,7 @@ "opengraph": null, "title": "Die GRÜNEN im LK Leer: Artikel" }, - "duration": 190, + "duration": 257, "error": null, "responsive": { "document_width": { @@ -116738,7 +116903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 257 }, "RESPONSIVE": { "score": 1, @@ -116783,9 +116948,9 @@ "resolved_hostname": "www.gruenemarzahnhellersdorf.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruenemarzahnhellersdorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.138.88" ], @@ -116839,7 +117004,7 @@ ], "title": "Startseite - Bündnis 90 / Die GrünenBündnis 90 / Die Grünen" }, - "duration": 626, + "duration": 825, "error": null, "responsive": { "document_width": { @@ -116886,7 +117051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 626 + "value": 825 }, "RESPONSIVE": { "score": 1, @@ -116925,9 +117090,9 @@ "resolvable": false } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://grueneniederkassel.de/userspace/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -116956,7 +117121,7 @@ "opengraph": null, "title": null }, - "duration": 122, + "duration": 142, "error": null, "responsive": { "document_width": { @@ -117004,7 +117169,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 122 + "value": 142 }, "RESPONSIVE": { "score": 0, @@ -117062,7 +117227,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117070,7 +117235,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruenesfw.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117093,7 +117258,7 @@ "opengraph": null, "title": "gruenesFW" }, - "duration": 90, + "duration": 121, "error": null, "responsive": { "document_width": { @@ -117116,7 +117281,7 @@ "opengraph": null, "title": "gruenesFW" }, - "duration": 109, + "duration": 102, "error": null, "responsive": { "document_width": { @@ -117167,7 +117332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 100 + "value": 112 }, "RESPONSIVE": { "score": 1, @@ -117211,9 +117376,9 @@ "resolved_hostname": "www.gruenestadterfurt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenestadterfurt.de/wp-content/themes/1508149991-hYCbsW/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.51" ], @@ -117275,7 +117440,7 @@ ], "title": "GRÜNE.STADT.ERFURT" }, - "duration": 565, + "duration": 633, "error": null, "responsive": { "document_width": { @@ -117323,7 +117488,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 565 + "value": 633 }, "RESPONSIVE": { "score": 0, @@ -117379,7 +117544,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117387,7 +117552,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.gruenestelle.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117410,7 +117575,7 @@ "opengraph": null, "title": "gruenestelle.de steht zum Verkauf - Sedo GmbH" }, - "duration": 629, + "duration": 767, "error": null, "responsive": { "document_width": { @@ -117459,7 +117624,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 629 + "value": 767 }, "RESPONSIVE": { "score": 1, @@ -117577,9 +117742,10 @@ "resolved_hostname": "www.gruenewesseling.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruenewesseling.de/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruenewesseling.de/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "89.110.129.56" ], @@ -117631,7 +117797,7 @@ ], "title": "Bündnis 90 / Die Grünen in Wesseling" }, - "duration": 817, + "duration": 797, "error": null, "responsive": { "document_width": { @@ -117664,7 +117830,7 @@ ], "title": "Bündnis 90 / Die Grünen in Wesseling" }, - "duration": 913, + "duration": 834, "error": null, "responsive": { "document_width": { @@ -117712,7 +117878,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 865 + "value": 816 }, "RESPONSIVE": { "score": 0, @@ -117769,7 +117935,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117777,7 +117943,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.heppenheim-gruene.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -117797,7 +117963,7 @@ "opengraph": null, "title": "Start - Grüne Liste Heppenheim" }, - "duration": 64, + "duration": 69, "error": null, "responsive": { "document_width": { @@ -117820,7 +117986,7 @@ "opengraph": null, "title": "Start - Grüne Liste Heppenheim" }, - "duration": 81, + "duration": 64, "error": null, "responsive": { "document_width": { @@ -117871,7 +118037,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 72 + "value": 66 }, "RESPONSIVE": { "score": 0, @@ -117912,9 +118078,10 @@ "resolved_hostname": "www.lebensqualitaet-weisendorf.de" } }, - "icons": [ - "835e96c57c3a75a1f4e667800ab71b1a.ico" - ], + "icons": { + "http://lebensqualitaet-weisendorf.de/favico.ico": "835e96c57c3a75a1f4e667800ab71b1a.ico", + "http://www.lebensqualitaet-weisendorf.de/favico.ico": "835e96c57c3a75a1f4e667800ab71b1a.ico" + }, "ipv4_addresses": [ "80.67.17.235" ], @@ -117959,7 +118126,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Markt Weisendorf\"" }, - "duration": 101, + "duration": 104, "error": null, "responsive": { "document_width": { @@ -117982,7 +118149,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - Markt Weisendorf\"" }, - "duration": 102, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -118032,7 +118199,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 102 + "value": 110 }, "RESPONSIVE": { "score": 0, @@ -118072,9 +118239,9 @@ "resolved_hostname": "www.offenbach-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-offenbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -118116,7 +118283,7 @@ "opengraph": null, "title": "Grüne Offenbach: Start" }, - "duration": 191, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -118164,7 +118331,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -118252,7 +118419,7 @@ "opengraph": null, "title": "- Offene Grüne Liste Pleidelsheim" }, - "duration": 610, + "duration": 758, "error": null, "responsive": { "document_width": { @@ -118275,7 +118442,7 @@ "opengraph": null, "title": "- Offene Grüne Liste Pleidelsheim" }, - "duration": 589, + "duration": 706, "error": null, "responsive": { "document_width": { @@ -118326,7 +118493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -118410,7 +118577,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 68, + "duration": 70, "error": null, "responsive": { "document_width": { @@ -118433,7 +118600,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 403, + "duration": 87, "error": null, "responsive": { "document_width": { @@ -118456,7 +118623,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen OV Duisburg-Walsum" }, - "duration": 137, + "duration": 150, "error": null, "responsive": { "document_width": { @@ -118506,7 +118673,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 102 }, "RESPONSIVE": { "score": 0, @@ -118550,9 +118717,7 @@ "resolved_hostname": "www.padergruen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "80.237.133.72" ], @@ -118698,9 +118863,9 @@ "resolved_hostname": "www.porta.de" } }, - "icons": [ - "e9e1afdacf341a6accc5226a83ed3afc.ico" - ], + "icons": { + "https://porta.de/porta/_ui/responsive/theme-porta/img/favicon.ico": "e9e1afdacf341a6accc5226a83ed3afc.ico" + }, "ipv4_addresses": [ "193.104.90.150" ], @@ -118749,7 +118914,7 @@ ], "title": "porta! | Möbelhaus porta! » Möbel online kaufen" }, - "duration": 212, + "duration": 329, "error": null, "responsive": { "document_width": { @@ -118797,7 +118962,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 212 + "value": 329 }, "RESPONSIVE": { "score": 1, @@ -118882,7 +119047,7 @@ "opengraph": null, "title": "We moved!\n\n\r\nSorry! Wir sind umgezogen nach:\r\nhttp://imbiss-am-wiehen.de" }, - "duration": 57, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -118905,7 +119070,7 @@ "opengraph": null, "title": "We moved!\n\n\r\nSorry! Wir sind umgezogen nach:\r\nhttp://imbiss-am-wiehen.de" }, - "duration": 57, + "duration": 84, "error": null, "responsive": { "document_width": { @@ -118956,7 +119121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 57 + "value": 74 }, "RESPONSIVE": { "score": 0, @@ -119139,6 +119304,9 @@ "resolved_hostname": "www.warsteinerliste.de" } }, + "icons": { + "http://www.warsteinerliste.de/fileadmin/template/favicon.ico": "a0529939c6e78dc2aeb8391a6f1dda4f.ico" + }, "ipv4_addresses": [ "185.21.102.77" ], @@ -119179,11 +119347,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "https://www.warsteinerliste.de/fileadmin/template/favicon.ico", + "icon": "http://www.warsteinerliste.de/fileadmin/template/favicon.ico", "opengraph": null, "title": "WAL aktuell: Warsteiner Liste" }, - "duration": 213, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -119202,11 +119370,11 @@ "canonical_link": null, "encoding": "utf-8", "generator": "TYPO3 6.2 CMS", - "icon": "https://www.warsteinerliste.de/fileadmin/template/favicon.ico", + "icon": "http://www.warsteinerliste.de/fileadmin/template/favicon.ico", "opengraph": null, "title": "WAL aktuell: Warsteiner Liste" }, - "duration": 225, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -119240,9 +119408,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -119257,7 +119424,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 224 }, "RESPONSIVE": { "score": 0, @@ -119273,7 +119440,7 @@ "value": true } }, - "score": 3.5 + "score": 4.5 }, { "details": { @@ -119298,9 +119465,9 @@ "resolved_hostname": "xn--grne-burbach-elb.de" } }, - "icons": [ - "bb1613122192c097f186cc5174b59b37.ico" - ], + "icons": { + "http://www.t-online.de/service/aktionen/favicon.ico": "bb1613122192c097f186cc5174b59b37.ico" + }, "ipv4_addresses": [ "80.150.6.143" ], @@ -119345,7 +119512,7 @@ "opengraph": null, "title": "Hier entsteht eine neue Homepage" }, - "duration": 71, + "duration": 63, "error": null, "responsive": { "document_width": { @@ -119368,7 +119535,7 @@ "opengraph": null, "title": "Hier entsteht eine neue Homepage" }, - "duration": 71, + "duration": 66, "error": null, "responsive": { "document_width": { @@ -119418,7 +119585,7 @@ "HTTP_RESPONSE_DURATION": { "score": 1, "type": "number", - "value": 71 + "value": 64 }, "RESPONSIVE": { "score": 0, @@ -119461,9 +119628,9 @@ "resolved_hostname": "xn--grne-mnster-uhbe.de" } }, - "icons": [ - "75da0b668686a57ff9622eeb5f54a2b5.ico" - ], + "icons": { + "https://www.xn--grne-mnster-uhbe.de/wp-content/themes/blum-o-matic_1/favicon.ico": "75da0b668686a57ff9622eeb5f54a2b5.ico" + }, "ipv4_addresses": [ "212.8.207.6" ], @@ -119512,7 +119679,7 @@ ], "title": "Startseite - Grüne Münster" }, - "duration": 395, + "duration": 422, "error": null, "responsive": { "document_width": { @@ -119559,7 +119726,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 395 + "value": 422 }, "RESPONSIVE": { "score": 0, @@ -119608,9 +119775,9 @@ "resolved_hostname": "xn--grne-speyer-uhb.de" } }, - "icons": [ - "16eba5d237ec52611d79f5b6714aa6a9.jpg" - ], + "icons": { + "https://www.grüne-speyer.de/wp-content/uploads/2018/04/cropped-gruene-speyer-32x32.jpg": "16eba5d237ec52611d79f5b6714aa6a9.jpg" + }, "ipv4_addresses": [ "85.13.129.38" ], @@ -119656,7 +119823,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 474, + "duration": 470, "error": null, "responsive": { "document_width": { @@ -119683,7 +119850,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 505, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -119710,7 +119877,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 415, + "duration": 519, "error": null, "responsive": { "document_width": { @@ -119737,7 +119904,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN SPEYER" }, - "duration": 760, + "duration": 535, "error": null, "responsive": { "document_width": { @@ -119785,7 +119952,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 538 + "value": 492 }, "RESPONSIVE": { "score": 1, @@ -119830,9 +119997,9 @@ "resolved_hostname": "xn--salzlandgrne-mlb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.salzlandgruene.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.233.226" ], @@ -119891,7 +120058,7 @@ ], "title": "SALZLANDGRÜNE" }, - "duration": 563, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -119925,7 +120092,7 @@ ], "title": "SALZLANDGRÜNE" }, - "duration": 863, + "duration": 541, "error": null, "responsive": { "document_width": { @@ -119974,7 +120141,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 713 + "value": 502 }, "RESPONSIVE": { "score": 1, @@ -120017,9 +120184,10 @@ "resolved_hostname": "xn--grne-deggendorf-0vb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-deggendorf-0vb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://xn--grne-deggendorf-0vb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.66" ], @@ -120062,7 +120230,7 @@ ], "title": "Bündnis 90/Die Grünen Deggendorf" }, - "duration": 176, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -120096,7 +120264,7 @@ ], "title": "Bündnis 90/Die Grünen Deggendorf" }, - "duration": 262, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -120144,7 +120312,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 268 }, "RESPONSIVE": { "score": 1, @@ -120185,9 +120353,9 @@ "resolved_hostname": "xn--grne-milk-r9a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://xn--grne-milk-r9a.de/wp-content/themes/urwahl3000-2/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.159" ], @@ -120227,7 +120395,7 @@ ], "title": "KV Minden-Lübbecke" }, - "duration": 501, + "duration": 521, "error": null, "responsive": { "document_width": { @@ -120274,7 +120442,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 501 + "value": 521 }, "RESPONSIVE": { "score": 0, @@ -120319,9 +120487,9 @@ "resolved_hostname": "xn--grne-much-r9a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://xn--grne-much-r9a.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "80.237.132.142" ], @@ -120338,7 +120506,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='www.xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='www.xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -120346,7 +120514,7 @@ }, { "error": { - "message": "HTTPSConnectionPool(host='xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", + "message": "HTTPSConnectionPool(host='xn--grne-much-r9a.de', port=443): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))", "type": "" }, "redirects_to": null, @@ -120379,7 +120547,7 @@ ], "title": "- Bündnis 90/Die Grünen Much" }, - "duration": 430, + "duration": 435, "error": null, "responsive": { "document_width": { @@ -120427,7 +120595,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 435 }, "RESPONSIVE": { "score": 0, @@ -120467,9 +120635,9 @@ "resolved_hostname": "www.gruene-ab.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ab.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120511,7 +120679,7 @@ "opengraph": null, "title": "Die Grünen Aschaffenburg: Home" }, - "duration": 168, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -120559,7 +120727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -120599,9 +120767,9 @@ "resolved_hostname": "www.gruene-aichach-friedberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-aichach-friedberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120643,7 +120811,7 @@ "opengraph": null, "title": "KV Aichach-Friedberg: Startseite" }, - "duration": 208, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -120691,7 +120859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -120734,9 +120902,9 @@ "resolved_hostname": "www.gruene-amberg-sulzbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-amberg-sulzbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120781,7 +120949,7 @@ "opengraph": null, "title": "KV Amberg-Sulzbach: Personen" }, - "duration": 204, + "duration": 162, "error": null, "responsive": { "document_width": { @@ -120828,7 +120996,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 162 }, "RESPONSIVE": { "score": 1, @@ -120868,9 +121036,9 @@ "resolved_hostname": "www.gruene-amberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-amberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -120912,7 +121080,7 @@ "opengraph": null, "title": "Kreisverband Amberg: Startseite" }, - "duration": 187, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -120960,7 +121128,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -121003,9 +121171,9 @@ "resolved_hostname": "www.gruene-augsburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-augsburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121050,7 +121218,7 @@ "opengraph": null, "title": "GRÜNE AUGSBURG: Home" }, - "duration": 237, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -121097,7 +121265,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 237 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -121141,9 +121309,9 @@ "resolved_hostname": "www.gruene-augsburgland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-augsburgland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121189,7 +121357,7 @@ "opengraph": null, "title": "Grüne Augsburg-Land: Home" }, - "duration": 209, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -121236,7 +121404,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -121281,9 +121449,9 @@ "resolved_hostname": "www.gruene-aw.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-aw.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.190" ], @@ -121337,7 +121505,7 @@ ], "title": "Bündnis 90/Die Grünen Ahrweiler" }, - "duration": 143, + "duration": 144, "error": null, "responsive": { "document_width": { @@ -121384,7 +121552,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 143 + "value": 144 }, "RESPONSIVE": { "score": 1, @@ -121424,9 +121592,9 @@ "resolved_hostname": "www.gruene-bad-bramstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bad-bramstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121468,7 +121636,7 @@ "opengraph": null, "title": "Grüne Bad Bramstedt: Aktuelles" }, - "duration": 204, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -121516,7 +121684,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -121560,9 +121728,9 @@ "resolved_hostname": "www.gruene-bad-salzuflen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bad-salzuflen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.155.133" ], @@ -121589,7 +121757,7 @@ } ], "responsive": { - "min_width": 383, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -121615,13 +121783,13 @@ ], "title": "Grüne Bad Salzuflen" }, - "duration": 600, + "duration": 669, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 383, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -121662,7 +121830,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 669 }, "RESPONSIVE": { "score": 1, @@ -121702,9 +121870,9 @@ "resolved_hostname": "www.gruene-badcamberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-badcamberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -121746,7 +121914,7 @@ "opengraph": null, "title": "OV Bad Camberg: Home" }, - "duration": 195, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -121794,7 +121962,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -121837,9 +122005,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-baden-baden.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.82" ], @@ -121882,7 +122050,7 @@ ], "title": "Grüne Baden-Baden" }, - "duration": 272, + "duration": 281, "error": null, "responsive": { "document_width": { @@ -121929,7 +122097,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 272 + "value": 281 }, "RESPONSIVE": { "score": 1, @@ -121970,9 +122138,9 @@ "resolved_hostname": "www.gruene-badhomburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-badhomburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122014,7 +122182,7 @@ "opengraph": null, "title": "GRÜNE Bad Homburg: Startseite" }, - "duration": 196, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -122062,7 +122230,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -122102,9 +122270,9 @@ "resolved_hostname": "www.gruene-bamberg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bamberg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122146,7 +122314,7 @@ "opengraph": null, "title": "Grüne Bamberg-Land: Themen" }, - "duration": 195, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -122194,7 +122362,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -122234,9 +122402,9 @@ "resolved_hostname": "www.gruene-barsbuettel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-barsbuettel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122278,7 +122446,7 @@ "opengraph": null, "title": "GRÜNE Barsbüttel: Startseite" }, - "duration": 227, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -122326,7 +122494,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 227 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -122367,9 +122535,9 @@ "resolved_hostname": "www.gruene-bayern.de" } }, - "icons": [ - "76a49e20f30f1ff94b7c199dd362709e.jpg" - ], + "icons": { + "https://gruene-bayern.de/wp-content/uploads/2017/01/profil-neu-150x150.jpeg": "76a49e20f30f1ff94b7c199dd362709e.jpg" + }, "ipv4_addresses": [ "109.239.51.23" ], @@ -122416,7 +122584,7 @@ ], "title": "" }, - "duration": 728, + "duration": 769, "error": null, "responsive": { "document_width": { @@ -122444,7 +122612,7 @@ ], "title": "" }, - "duration": 777, + "duration": 731, "error": null, "responsive": { "document_width": { @@ -122493,7 +122661,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 752 + "value": 750 }, "RESPONSIVE": { "score": 1, @@ -122533,9 +122701,9 @@ "resolved_hostname": "www.gruene-bayreuth-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bayreuth-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122577,7 +122745,7 @@ "opengraph": null, "title": "Bayreuth Land: Startseite" }, - "duration": 198, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -122625,7 +122793,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -122665,9 +122833,9 @@ "resolved_hostname": "www.gruene-biebesheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-biebesheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122709,7 +122877,7 @@ "opengraph": null, "title": "Ortsverband Biebesheim: Aktuell" }, - "duration": 190, + "duration": 255, "error": null, "responsive": { "document_width": { @@ -122757,7 +122925,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 255 }, "RESPONSIVE": { "score": 1, @@ -122797,9 +122965,9 @@ "resolved_hostname": "www.gruene-bobingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bobingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -122841,7 +123009,7 @@ "opengraph": null, "title": "OV Bobingen: Startseite" }, - "duration": 199, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -122889,7 +123057,192 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 261 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "http://gruene-bokhorst-wankendorf.de/", + "https://gruene-bokhorst-wankendorf.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "http://gruene-bokhorst-wankendorf.de/comments/feed/", + "http://gruene-bokhorst-wankendorf.de/feed/", + "https://gruene-bokhorst-wankendorf.de/comments/feed/", + "https://gruene-bokhorst-wankendorf.de/feed/" + ], + "hostnames": { + "gruene-bokhorst-wankendorf.de": { + "ip_addresses": [ + "217.160.0.185" + ], + "resolvable": true, + "resolved_hostname": "gruene-bokhorst-wankendorf.de" + }, + "www.gruene-bokhorst-wankendorf.de": { + "ip_addresses": [ + "217.160.0.185" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-bokhorst-wankendorf.de" + } + }, + "icons": { + "http://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "217.160.0.185" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": null, + "url": "http://gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": "http://gruene-bokhorst-wankendorf.de/", + "url": "http://www.gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-bokhorst-wankendorf.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-bokhorst-wankendorf.de/", + "url": "https://www.gruene-bokhorst-wankendorf.de/" + } + ], + "responsive": { + "min_width": 346, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "http://gruene-bokhorst-wankendorf.de/feed/", + "http://gruene-bokhorst-wankendorf.de/comments/feed/" + ], + "generator": null, + "icon": "http://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Amt Bokhorst-Wankendorf" + }, + "duration": 442, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 346, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "http://gruene-bokhorst-wankendorf.de/" + }, + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "https://gruene-bokhorst-wankendorf.de/feed/", + "https://gruene-bokhorst-wankendorf.de/comments/feed/" + ], + "generator": null, + "icon": "https://gruene-bokhorst-wankendorf.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:image", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Amt Bokhorst-Wankendorf" + }, + "duration": 879, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 346, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-bokhorst-wankendorf.de/" + } + ] + }, + "input_url": "https://gruene-bokhorst-wankendorf.de/", + "meta": { + "city": "Amt Bokhorst-Wankendorf", + "district": "Plön", + "level": "DE:ORTSVERBAND", + "state": "Schleswig-Holstein" + }, + "result": { + "CANONICAL_URL": { + "score": 0, + "type": "boolean", + "value": false + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 660 }, "RESPONSIVE": { "score": 1, @@ -122933,9 +123286,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -122988,7 +123341,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 294, + "duration": 322, "error": null, "responsive": { "document_width": { @@ -123035,7 +123388,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 322 }, "RESPONSIVE": { "score": 1, @@ -123079,9 +123432,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123134,7 +123487,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 375, + "duration": 349, "error": null, "responsive": { "document_width": { @@ -123181,7 +123534,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 349 }, "RESPONSIVE": { "score": 1, @@ -123225,9 +123578,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123280,7 +123633,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 367, + "duration": 277, "error": null, "responsive": { "document_width": { @@ -123327,7 +123680,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 367 + "value": 277 }, "RESPONSIVE": { "score": 1, @@ -123371,9 +123724,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123426,7 +123779,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 398, + "duration": 354, "error": null, "responsive": { "document_width": { @@ -123473,7 +123826,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 354 }, "RESPONSIVE": { "score": 1, @@ -123517,9 +123870,9 @@ "resolved_hostname": "www.gruene-bonn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-bonn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "128.127.71.241" ], @@ -123572,7 +123925,7 @@ ], "title": "DIE GRÜNEN Bonn" }, - "duration": 249, + "duration": 304, "error": null, "responsive": { "document_width": { @@ -123619,7 +123972,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 249 + "value": 304 }, "RESPONSIVE": { "score": 1, @@ -123660,9 +124013,10 @@ "resolved_hostname": "www.gruene-bonstetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bonstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-bonstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123704,7 +124058,7 @@ "opengraph": null, "title": "OV Bonstetten: Startseite" }, - "duration": 171, + "duration": 225, "error": null, "responsive": { "document_width": { @@ -123727,7 +124081,7 @@ "opengraph": null, "title": "OV Bonstetten: Startseite" }, - "duration": 174, + "duration": 163, "error": null, "responsive": { "document_width": { @@ -123776,7 +124130,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 172 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -123816,9 +124170,9 @@ "resolved_hostname": "www.gruene-borgholzhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-borgholzhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123860,7 +124214,7 @@ "opengraph": null, "title": "OV Borgholzhausen: Startseite" }, - "duration": 190, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -123908,7 +124262,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -123948,9 +124302,9 @@ "resolved_hostname": "www.gruene-borken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-borken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -123992,7 +124346,7 @@ "opengraph": null, "title": "Ortsverband Borken: Startseite" }, - "duration": 165, + "duration": 242, "error": null, "responsive": { "document_width": { @@ -124040,7 +124394,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 242 }, "RESPONSIVE": { "score": 1, @@ -124080,9 +124434,9 @@ "resolved_hostname": "www.gruene-brakel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-brakel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124124,7 +124478,7 @@ "opengraph": null, "title": "Ortsverband Brakel: Brakel aktuell" }, - "duration": 206, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -124172,7 +124526,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -124215,9 +124569,9 @@ "resolved_hostname": "www.gruene-brandenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-brandenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124262,7 +124616,7 @@ "opengraph": null, "title": "Landesverband Brandenburg: Startseite" }, - "duration": 199, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -124309,7 +124663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -124353,9 +124707,9 @@ "resolved_hostname": "www.gruene-breisgau-hochschwarzwald.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-breisgau-hochschwarzwald.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.237.138.50" ], @@ -124407,7 +124761,7 @@ ], "title": "Bündnis 90 Die Grünen Kreisverband Breisgau-Hochschwarzwald" }, - "duration": 606, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -124454,7 +124808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 606 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -124497,9 +124851,9 @@ "resolved_hostname": "www.gruene-bremen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bremen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124544,7 +124898,7 @@ "opengraph": null, "title": "GRÜNE Bremen: Startseite" }, - "duration": 206, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -124591,7 +124945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -124635,6 +124989,7 @@ "resolved_hostname": "www.gruene-bruchsal.de" } }, + "icons": {}, "ipv4_addresses": [ "87.118.118.84" ], @@ -124686,7 +125041,7 @@ ], "title": "Bündnis 90/Die Grünen Bruchsal" }, - "duration": 809, + "duration": 641, "error": null, "responsive": { "document_width": { @@ -124719,9 +125074,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -124734,7 +125088,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 809 + "value": 641 }, "RESPONSIVE": { "score": 1, @@ -124750,7 +125104,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -124774,9 +125128,9 @@ "resolved_hostname": "www.gruene-bruessel.eu" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-bruessel.eu/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -124818,7 +125172,7 @@ "opengraph": null, "title": "Ortsverband Brüssel: Aktuelles" }, - "duration": 193, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -124866,7 +125220,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 230 }, "RESPONSIVE": { "score": 0, @@ -124909,9 +125263,9 @@ "resolved_hostname": "www.gruene-bw.de" } }, - "icons": [ - "0ca3f844672deef54d6fc98ecb502ed5.png" - ], + "icons": { + "https://www.gruene-bw.de/wp-content/themes/welance-gruene-bw/src/dist/images/favicons/favicon-196x196.png": "0ca3f844672deef54d6fc98ecb502ed5.png" + }, "ipv4_addresses": [ "134.119.47.156" ], @@ -124966,7 +125320,7 @@ ], "title": "Startseite | gruene-bw.de" }, - "duration": 828, + "duration": 714, "error": null, "responsive": { "document_width": { @@ -125013,7 +125367,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 828 + "value": 714 }, "RESPONSIVE": { "score": 1, @@ -125053,9 +125407,9 @@ "resolved_hostname": "www.gruene-cham.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-cham.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125097,7 +125451,7 @@ "opengraph": null, "title": "Kreisverband Cham: Aktuelles" }, - "duration": 197, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -125145,7 +125499,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -125188,9 +125542,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-chemnitz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.200.102.50" ], @@ -125232,7 +125586,7 @@ ], "title": "Bündnis 90/Die Grünen Chemnitz" }, - "duration": 811, + "duration": 848, "error": null, "responsive": { "document_width": { @@ -125279,7 +125633,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 811 + "value": 848 }, "RESPONSIVE": { "score": 1, @@ -125320,9 +125674,9 @@ "resolved_hostname": "www.gruene-coburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-coburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125364,7 +125718,7 @@ "opengraph": null, "title": "KV Coburg-Land: Startseite" }, - "duration": 174, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -125412,7 +125766,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 174 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -125452,9 +125806,9 @@ "resolved_hostname": "www.gruene-coburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-coburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125496,7 +125850,7 @@ "opengraph": null, "title": "Kreisverband Coburg-Stadt: Start" }, - "duration": 189, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -125544,7 +125898,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -125584,9 +125938,9 @@ "resolved_hostname": "www.gruene-dgf-lan.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dgf-lan.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125628,7 +125982,7 @@ "opengraph": null, "title": "KV Dingolfing-Landau: Home" }, - "duration": 200, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -125676,7 +126030,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -125716,9 +126070,9 @@ "resolved_hostname": "www.gruene-diedorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-diedorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -125760,7 +126114,7 @@ "opengraph": null, "title": "Ortsverband Diedorf: Startseite" }, - "duration": 190, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -125808,7 +126162,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -125848,9 +126202,9 @@ "resolved_hostname": "www.gruene-donau-ries.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-donau-ries.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -125892,7 +126246,7 @@ "opengraph": null, "title": "Die Grünen Donau-Ries: Grüne Donau-Ries" }, - "duration": 157, + "duration": 148, "error": null, "responsive": { "document_width": { @@ -125940,7 +126294,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 157 + "value": 148 }, "RESPONSIVE": { "score": 1, @@ -125984,9 +126338,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126013,7 +126367,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126038,13 +126392,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 279, + "duration": 485, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126085,7 +126439,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 279 + "value": 485 }, "RESPONSIVE": { "score": 1, @@ -126129,9 +126483,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126158,7 +126512,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126183,13 +126537,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 339, + "duration": 389, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126230,7 +126584,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 389 }, "RESPONSIVE": { "score": 1, @@ -126274,9 +126628,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126303,7 +126657,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126328,13 +126682,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 320, + "duration": 365, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126375,7 +126729,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 320 + "value": 365 }, "RESPONSIVE": { "score": 1, @@ -126419,9 +126773,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126448,7 +126802,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126473,13 +126827,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 349, + "duration": 431, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126520,7 +126874,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 349 + "value": 431 }, "RESPONSIVE": { "score": 1, @@ -126564,9 +126918,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126593,7 +126947,442 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 421, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/hurtgenwald", + "meta": { + "city": "Hürtgenwald", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 421 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 444, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/kreuzau", + "meta": { + "city": "Kreuzau", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 444 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1.0" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-dueren.de/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-dueren.de/feed", + "https://gruene-dueren.de/comments/feed" + ], + "generator": null, + "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", + "opengraph": [ + "og:description", + "og:site_name", + "og:title", + "og:type", + "og:url" + ], + "title": "Kreisverband Düren" + }, + "duration": 413, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 457, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1.0" + }, + "status_code": 200, + "url": "https://gruene-dueren.de/" + } + ] + }, + "input_url": "https://gruene-dueren.de/category/ortsverbande/langerwehe", + "meta": { + "city": "Langerwehe", + "district": "Düren", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 413 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 9.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-dueren.de/" + ], + "cms": "wordpress-urwahl", + "feeds": [ + "https://gruene-dueren.de/comments/feed", + "https://gruene-dueren.de/feed" + ], + "hostnames": { + "gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "gruene-dueren.de" + }, + "www.gruene-dueren.de": { + "ip_addresses": [ + "109.230.233.55" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-dueren.de" + } + }, + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, + "ipv4_addresses": [ + "109.230.233.55" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "http://www.gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-dueren.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-dueren.de/", + "url": "https://www.gruene-dueren.de/" + } + ], + "responsive": { + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126624,7 +127413,7 @@ "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -126634,9 +127423,9 @@ } ] }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/hurtgenwald", + "input_url": "https://gruene-dueren.de/category/ortsverbande/vettweiss", "meta": { - "city": "Hürtgenwald", + "city": "Vettweiß", "district": "Düren", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -126709,9 +127498,9 @@ "resolved_hostname": "www.gruene-dueren.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "109.230.233.55" ], @@ -126738,7 +127527,7 @@ } ], "responsive": { - "min_width": 420, + "min_width": 457, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -126763,448 +127552,13 @@ ], "title": "Kreisverband Düren" }, - "duration": 326, + "duration": 338, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/kreuzau", - "meta": { - "city": "Kreuzau", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 326 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 345, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/langerwehe", - "meta": { - "city": "Langerwehe", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 345 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 327, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1.0" - }, - "status_code": 200, - "url": "https://gruene-dueren.de/" - } - ] - }, - "input_url": "https://gruene-dueren.de/category/ortsverbande/vettweiss", - "meta": { - "city": "Vettweiß", - "district": "Düren", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 327 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 9.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-dueren.de/" - ], - "cms": "wordpress-urwahl", - "feeds": [ - "https://gruene-dueren.de/comments/feed", - "https://gruene-dueren.de/feed" - ], - "hostnames": { - "gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "gruene-dueren.de" - }, - "www.gruene-dueren.de": { - "ip_addresses": [ - "109.230.233.55" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-dueren.de" - } - }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], - "ipv4_addresses": [ - "109.230.233.55" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "http://www.gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://gruene-dueren.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-dueren.de/", - "url": "https://www.gruene-dueren.de/" - } - ], - "responsive": { - "min_width": 420, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1.0" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": "https://gruene-dueren.de/", - "encoding": "utf-8", - "feeds": [ - "https://gruene-dueren.de/feed", - "https://gruene-dueren.de/comments/feed" - ], - "generator": null, - "icon": "https://gruene-dueren.de/wp-content/themes/urwahl3000/favicon.png", - "opengraph": [ - "og:description", - "og:site_name", - "og:title", - "og:type", - "og:url" - ], - "title": "Kreisverband Düren" - }, - "duration": 329, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 420, + "320x480": 457, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -127245,7 +127599,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 329 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -127285,9 +127639,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127329,7 +127683,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 141, + "duration": 151, "error": null, "responsive": { "document_width": { @@ -127377,7 +127731,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 141 + "value": 151 }, "RESPONSIVE": { "score": 1, @@ -127417,9 +127771,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127461,7 +127815,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 147, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -127509,7 +127863,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 173 }, "RESPONSIVE": { "score": 1, @@ -127549,9 +127903,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127593,7 +127947,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 139, + "duration": 152, "error": null, "responsive": { "document_width": { @@ -127641,7 +127995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 152 }, "RESPONSIVE": { "score": 1, @@ -127681,9 +128035,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127725,7 +128079,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 147, + "duration": 170, "error": null, "responsive": { "document_width": { @@ -127773,7 +128127,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 170 }, "RESPONSIVE": { "score": 1, @@ -127813,9 +128167,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127857,7 +128211,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 142, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -127905,7 +128259,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 142 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -127945,9 +128299,9 @@ "resolved_hostname": "www.gruene-ebersberg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-ebersberg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -127989,7 +128343,7 @@ "opengraph": null, "title": "Die Grünen im Landkreis Ebersberg: Die Grünen im Landkreis Ebersberg" }, - "duration": 143, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -128037,7 +128391,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 143 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -128077,9 +128431,9 @@ "resolved_hostname": "www.gruene-einhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-einhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128121,7 +128475,7 @@ "opengraph": null, "title": "Grüne Einhausen: Startseite" }, - "duration": 171, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -128169,7 +128523,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 247 }, "RESPONSIVE": { "score": 1, @@ -128209,9 +128563,9 @@ "resolved_hostname": "www.gruene-eltville.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eltville.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128253,7 +128607,7 @@ "opengraph": null, "title": "Ortsverband Eltville: Aktuell" }, - "duration": 186, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -128301,7 +128655,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -128345,9 +128699,9 @@ "resolved_hostname": "www.gruene-enger.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-enger.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.137.225" ], @@ -128400,7 +128754,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN in Enger" }, - "duration": 541, + "duration": 412, "error": null, "responsive": { "document_width": { @@ -128447,7 +128801,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 541 + "value": 412 }, "RESPONSIVE": { "score": 1, @@ -128487,9 +128841,9 @@ "resolved_hostname": "www.gruene-eppstein.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-eppstein.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128531,7 +128885,7 @@ "opengraph": null, "title": "Ortsverband Eppstein: Startseite" }, - "duration": 188, + "duration": 180, "error": null, "responsive": { "document_width": { @@ -128579,7 +128933,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 180 }, "RESPONSIVE": { "score": 1, @@ -128619,9 +128973,9 @@ "resolved_hostname": "www.gruene-erlangen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-erlangen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128663,7 +129017,7 @@ "opengraph": null, "title": "Kreisverband Erlangen: Start" }, - "duration": 211, + "duration": 256, "error": null, "responsive": { "document_width": { @@ -128711,7 +129065,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 256 }, "RESPONSIVE": { "score": 1, @@ -128751,9 +129105,9 @@ "resolved_hostname": "www.gruene-erlensee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-erlensee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128795,7 +129149,7 @@ "opengraph": null, "title": "OV Erlensee: Startseite / Aktuelles" }, - "duration": 204, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -128843,7 +129197,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -128883,9 +129237,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -128927,7 +129281,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 190, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -128975,7 +129329,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -129015,9 +129369,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129059,7 +129413,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 188, + "duration": 259, "error": null, "responsive": { "document_width": { @@ -129107,7 +129461,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -129147,9 +129501,9 @@ "resolved_hostname": "www.gruene-ettlingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-ettlingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129191,7 +129545,7 @@ "opengraph": null, "title": "KV Ettlingen: Kreisverband" }, - "duration": 189, + "duration": 223, "error": null, "responsive": { "document_width": { @@ -129239,7 +129593,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 223 }, "RESPONSIVE": { "score": 1, @@ -129279,9 +129633,9 @@ "resolved_hostname": "www.gruene-forchheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-forchheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129323,7 +129677,7 @@ "opengraph": null, "title": "Kreisverband Forchheim: Startseite" }, - "duration": 264, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -129371,7 +129725,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 264 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -129411,9 +129765,9 @@ "resolved_hostname": "www.gruene-freising.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-freising.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129455,7 +129809,7 @@ "opengraph": null, "title": "Kreisverband Freising: Kreisverband" }, - "duration": 191, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -129503,7 +129857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -129543,9 +129897,9 @@ "resolved_hostname": "www.gruene-friedrichsdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-friedrichsdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129587,7 +129941,7 @@ "opengraph": null, "title": "Grüne Friedrichsdorf: Startseite" }, - "duration": 191, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -129635,7 +129989,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -129675,9 +130029,9 @@ "resolved_hostname": "www.gruene-fuldatal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-fuldatal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129719,7 +130073,7 @@ "opengraph": null, "title": "B90/GRÜNE Fuldatal: Startseite" }, - "duration": 160, + "duration": 175, "error": null, "responsive": { "document_width": { @@ -129767,7 +130121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 160 + "value": 175 }, "RESPONSIVE": { "score": 1, @@ -129810,9 +130164,9 @@ "resolved_hostname": "www.gruene-gap.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gap.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -129857,7 +130211,7 @@ "opengraph": null, "title": "KV Garmisch-Partenkirchen: Startseite" }, - "duration": 187, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -129904,7 +130258,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -129947,9 +130301,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-gernsheim.de/wordpress/wp-content/themes/urwahl3000v2/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.161" ], @@ -129991,7 +130345,7 @@ ], "title": "Bündnis 90/Die Grünen in Gernsheim | Mehr Grün(e) für Gernsheim!" }, - "duration": 204, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -130038,7 +130392,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -130079,9 +130433,9 @@ "resolved_hostname": "www.gruene-gersthofen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gersthofen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130123,7 +130477,7 @@ "opengraph": null, "title": "Ortsverband Gersthofen: Startseite" }, - "duration": 209, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -130171,7 +130525,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -130211,9 +130565,9 @@ "resolved_hostname": "www.gruene-gigu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gigu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130255,7 +130609,7 @@ "opengraph": null, "title": "Grüne Ginsheim-Gustavsburg: Startseite" }, - "duration": 202, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -130303,7 +130657,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -130343,9 +130697,9 @@ "resolved_hostname": "www.gruene-gk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130387,7 +130741,7 @@ "opengraph": null, "title": "Ortsverband Geilenkirchen: Start" }, - "duration": 190, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -130435,7 +130789,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -130475,9 +130829,9 @@ "resolved_hostname": "www.gruene-glinde.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-glinde.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130519,7 +130873,7 @@ "opengraph": null, "title": "Die Glinder Grünen: Home" }, - "duration": 201, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -130567,7 +130921,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -130607,9 +130961,9 @@ "resolved_hostname": "www.gruene-gudensberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-gudensberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -130651,7 +131005,7 @@ "opengraph": null, "title": "GRÜNE Gudensberg: Startseite" }, - "duration": 187, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -130699,7 +131053,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -130743,9 +131097,9 @@ "resolved_hostname": "www.gruene-guetersloh.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-guetersloh.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -130798,7 +131152,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 771, + "duration": 780, "error": null, "responsive": { "document_width": { @@ -130845,7 +131199,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 771 + "value": 780 }, "RESPONSIVE": { "score": 1, @@ -130890,9 +131244,9 @@ "resolved_hostname": "www.gruene-hanau.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-hanau.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.173" ], @@ -130946,7 +131300,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Hanau" }, - "duration": 535, + "duration": 597, "error": null, "responsive": { "document_width": { @@ -130993,7 +131347,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 535 + "value": 597 }, "RESPONSIVE": { "score": 1, @@ -131036,9 +131390,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-harsefeld.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.27.5.123" ], @@ -131081,7 +131435,7 @@ ], "title": "Grüne Harsefeld - Politik für Umwelt, Mensch und TierGrüne Harsefeld" }, - "duration": 480, + "duration": 488, "error": null, "responsive": { "document_width": { @@ -131128,7 +131482,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 480 + "value": 488 }, "RESPONSIVE": { "score": 1, @@ -131169,9 +131523,9 @@ "resolved_hostname": "www.gruene-hassberge.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hassberge.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131213,7 +131567,7 @@ "opengraph": null, "title": "Kreisverband Haßberge: Home" }, - "duration": 221, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -131261,7 +131615,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 240 }, "RESPONSIVE": { "score": 1, @@ -131301,9 +131655,9 @@ "resolved_hostname": "www.gruene-hattersheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hattersheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131345,7 +131699,7 @@ "opengraph": null, "title": "Ortsverband Hattersheim: Startseite" }, - "duration": 210, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -131393,7 +131747,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -131433,9 +131787,9 @@ "resolved_hostname": "www.gruene-hbm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hbm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131477,7 +131831,7 @@ "opengraph": null, "title": "Horn-Bad Meinberg: Startseite" }, - "duration": 216, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -131525,7 +131879,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 216 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -131569,9 +131923,9 @@ "resolved_hostname": "www.gruene-herborn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-herborn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.178.10.201" ], @@ -131598,7 +131952,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 404, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -131624,13 +131978,13 @@ ], "title": "Willkommen bei den Herborner Grünen - BÜNDNIS90/DIE GRÜNENGrüne Herborn" }, - "duration": 37, + "duration": 524, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, + "320x480": 404, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -131669,9 +132023,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 37 + "value": 524 }, "RESPONSIVE": { "score": 1, @@ -131687,7 +132041,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -131711,9 +132065,9 @@ "resolved_hostname": "www.gruene-hersfeld-rotenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hersfeld-rotenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131755,7 +132109,7 @@ "opengraph": null, "title": "KV Hersfeld-Rotenburg: Home" }, - "duration": 195, + "duration": 260, "error": null, "responsive": { "document_width": { @@ -131803,7 +132157,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 260 }, "RESPONSIVE": { "score": 1, @@ -131846,9 +132200,9 @@ "resolved_hostname": "www.gruene-heusenstamm.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-heusenstamm.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -131893,7 +132247,7 @@ "opengraph": null, "title": "OV Heusenstamm: B90/Die Grünen in Heusenstamm" }, - "duration": 195, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -131940,7 +132294,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -131980,9 +132334,9 @@ "resolved_hostname": "www.gruene-hochheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hochheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132024,7 +132378,7 @@ "opengraph": null, "title": "B90/GRÜNE OV Hochheim: Herzlich willkommen !!!" }, - "duration": 190, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -132072,7 +132426,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -132112,9 +132466,9 @@ "resolved_hostname": "www.gruene-hochtaunus.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hochtaunus.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132156,7 +132510,7 @@ "opengraph": null, "title": "B90/GRÜNE KV Hochtaunus: Startseite" }, - "duration": 198, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -132204,7 +132558,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -132244,9 +132598,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132288,7 +132642,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 201, + "duration": 271, "error": null, "responsive": { "document_width": { @@ -132336,7 +132690,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 271 }, "RESPONSIVE": { "score": 1, @@ -132376,9 +132730,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132420,7 +132774,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 218, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -132468,7 +132822,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -132508,9 +132862,9 @@ "resolved_hostname": "www.gruene-hoexter.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hoexter.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132552,7 +132906,7 @@ "opengraph": null, "title": "DIE GRÜNEN IM KREIS HÖXTER: Start" }, - "duration": 196, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -132600,7 +132954,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -132640,9 +132994,9 @@ "resolved_hostname": "www.gruene-hof.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-hof.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -132684,7 +133038,7 @@ "opengraph": null, "title": "Kreisverband Hof: Willkommen bei den Hofer Grünen - Wir freuen uns auf Euch..." }, - "duration": 205, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -132732,7 +133086,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -132777,9 +133131,10 @@ "resolved_hostname": "www.gruene-hohenbrunn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://gruene-hohenbrunn.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://gruene-hohenbrunn.de/wp/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -132832,7 +133187,7 @@ ], "title": "Ortsverband Hohenbrunn" }, - "duration": 387, + "duration": 408, "error": null, "responsive": { "document_width": { @@ -132866,7 +133221,7 @@ ], "title": "Ortsverband Hohenbrunn" }, - "duration": 511, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -132914,7 +133269,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 449 + "value": 493 }, "RESPONSIVE": { "score": 1, @@ -132957,9 +133312,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-huenstetten.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.77" ], @@ -133001,7 +133356,7 @@ ], "title": "Grüne Hünstetten" }, - "duration": 250, + "duration": 287, "error": null, "responsive": { "document_width": { @@ -133048,7 +133403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 250 + "value": 287 }, "RESPONSIVE": { "score": 1, @@ -133093,9 +133448,9 @@ "resolved_hostname": "www.gruene-illingen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-illingen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -133141,7 +133496,7 @@ "opengraph": null, "title": "Ortsverband Illingen - BÜNDNIS90/DIE GRÜNEN Saarland" }, - "duration": 321, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -133188,7 +133543,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 321 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -133228,9 +133583,9 @@ "resolved_hostname": "www.gruene-in-hilchenbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-in-hilchenbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133272,7 +133627,7 @@ "opengraph": null, "title": "GRÜNE Hilchenbach: Startseite" }, - "duration": 195, + "duration": 251, "error": null, "responsive": { "document_width": { @@ -133320,7 +133675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 251 }, "RESPONSIVE": { "score": 1, @@ -133360,9 +133715,9 @@ "resolved_hostname": "www.gruene-isselburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-isselburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133404,7 +133759,7 @@ "opengraph": null, "title": "Grüne Isselburg: Startseite" }, - "duration": 165, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -133452,7 +133807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -133492,9 +133847,9 @@ "resolved_hostname": "www.gruene-kalletal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kalletal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133536,7 +133891,7 @@ "opengraph": null, "title": "Ortsverband Kalletal: Startseite" }, - "duration": 171, + "duration": 176, "error": null, "responsive": { "document_width": { @@ -133584,7 +133939,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 176 }, "RESPONSIVE": { "score": 1, @@ -133673,7 +134028,7 @@ "opengraph": null, "title": "Grüne KMWWillkommen beim Ortsverband Karlsbad/Marxzell/Waldbronn - Website des Ortsverbands Bündnis90/Die Grünen" }, - "duration": 694, + "duration": 584, "error": null, "responsive": { "document_width": { @@ -133721,7 +134076,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 694 + "value": 584 }, "RESPONSIVE": { "score": 0, @@ -133761,9 +134116,9 @@ "resolved_hostname": "www.gruene-karlsruhe-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-karlsruhe-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133805,7 +134160,7 @@ "opengraph": null, "title": "KV Karlsruhe-Land: Home" }, - "duration": 194, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -133853,7 +134208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -133893,9 +134248,9 @@ "resolved_hostname": "www.gruene-keh.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-keh.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -133937,7 +134292,7 @@ "opengraph": null, "title": "KV Kelheim: Startseite" }, - "duration": 221, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -133985,7 +134340,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 221 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -134025,9 +134380,9 @@ "resolved_hostname": "www.gruene-kempten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kempten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134069,7 +134424,7 @@ "opengraph": null, "title": "Kreisverband Kempten: Home" }, - "duration": 186, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -134117,7 +134472,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -134157,9 +134512,9 @@ "resolved_hostname": "www.gruene-koenigsbrunn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-koenigsbrunn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134201,7 +134556,7 @@ "opengraph": null, "title": "Grüne Königsbrunn: Startseite" }, - "duration": 190, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -134249,7 +134604,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -134289,9 +134644,9 @@ "resolved_hostname": "www.gruene-konstanz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-konstanz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134333,7 +134688,7 @@ "opengraph": null, "title": "Kreisverband Konstanz: Startseite" }, - "duration": 196, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -134356,138 +134711,6 @@ "level": "DE:KREISVERBAND", "state": "Baden-Württemberg" }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 196 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 195, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/herford/", - "meta": { - "city": "Herford", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, "result": { "CANONICAL_URL": { "score": 1, @@ -134553,9 +134776,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -134597,7 +134820,7 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 186, + "duration": 224, "error": null, "responsive": { "document_width": { @@ -134613,9 +134836,9 @@ } ] }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/hiddenhausen/", + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/herford/", "meta": { - "city": "Hiddenhausen", + "city": "Herford", "district": "Herford", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -134645,7 +134868,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 224 }, "RESPONSIVE": { "score": 1, @@ -134685,273 +134908,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 193, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/kirchlengern/", - "meta": { - "city": "Kirchlengern", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 193 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "http://www.gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://gruene-kreis-herford.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-kreis-herford.de/home/", - "url": "https://www.gruene-kreis-herford.de/" - } - ], - "responsive": { - "min_width": 324, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "GRÜNE im Kreis Herford: Home" - }, - "duration": 222, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 324, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-kreis-herford.de/home/" - } - ] - }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/loehne/", - "meta": { - "city": "Löhne", - "district": "Herford", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 222 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-kreis-herford.de/home/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-kreis-herford.de" - }, - "www.gruene-kreis-herford.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-kreis-herford.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], "ipv4_addresses": [ "91.102.13.20" ], @@ -135009,9 +134968,9 @@ } ] }, - "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/roedinghausen/", + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/hiddenhausen/", "meta": { - "city": "Rödinghausen", + "city": "Hiddenhausen", "district": "Herford", "level": "DE:ORTSVERBAND", "state": "Nordrhein-Westfalen" @@ -135081,9 +135040,9 @@ "resolved_hostname": "www.gruene-kreis-herford.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135125,7 +135084,403 @@ "opengraph": null, "title": "GRÜNE im Kreis Herford: Home" }, - "duration": 203, + "duration": 208, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/kirchlengern/", + "meta": { + "city": "Kirchlengern", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 208 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 228, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/loehne/", + "meta": { + "city": "Löhne", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 228 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 216, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 324, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-kreis-herford.de/home/" + } + ] + }, + "input_url": "https://gruene-kreis-herford.de/gruene-im-kreis-herford/roedinghausen/", + "meta": { + "city": "Rödinghausen", + "district": "Herford", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 216 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-kreis-herford.de/home/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-kreis-herford.de" + }, + "www.gruene-kreis-herford.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-kreis-herford.de" + } + }, + "icons": { + "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "http://www.gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://gruene-kreis-herford.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-kreis-herford.de/home/", + "url": "https://www.gruene-kreis-herford.de/" + } + ], + "responsive": { + "min_width": 324, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-kreis-herford.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "GRÜNE im Kreis Herford: Home" + }, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -135173,7 +135528,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -135218,9 +135573,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -135274,7 +135629,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 430, + "duration": 495, "error": null, "responsive": { "document_width": { @@ -135321,7 +135676,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 430 + "value": 495 }, "RESPONSIVE": { "score": 1, @@ -135366,9 +135721,9 @@ "resolved_hostname": "www.gruene-kreis-kleve.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreis-kleve.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -135422,7 +135777,7 @@ ], "title": "Kreisverband Kleve" }, - "duration": 413, + "duration": 438, "error": null, "responsive": { "document_width": { @@ -135469,7 +135824,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 413 + "value": 438 }, "RESPONSIVE": { "score": 1, @@ -135513,9 +135868,9 @@ "resolved_hostname": "www.gruene-kreisgt.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kreisgt.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "176.221.47.44" ], @@ -135568,7 +135923,7 @@ ], "title": null }, - "duration": 895, + "duration": 878, "error": null, "responsive": { "document_width": { @@ -135615,7 +135970,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 895 + "value": 878 }, "RESPONSIVE": { "score": 1, @@ -135658,9 +136013,9 @@ "resolved_hostname": "www.gruene-kreisverband-ffb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreisverband-ffb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135705,7 +136060,7 @@ "opengraph": null, "title": "KV Fürstenfeldbruck: Home" }, - "duration": 228, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -135752,7 +136107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -135792,9 +136147,9 @@ "resolved_hostname": "www.gruene-kreuztal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kreuztal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135836,7 +136191,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Kreuztal: Home" }, - "duration": 187, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -135884,7 +136239,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -135924,9 +136279,9 @@ "resolved_hostname": "www.gruene-kronberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kronberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -135968,7 +136323,7 @@ "opengraph": null, "title": "B90/Die Grünen - Kronberg: Home" }, - "duration": 170, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -136016,7 +136371,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -136056,9 +136411,9 @@ "resolved_hostname": "www.gruene-kv-brb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-brb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136100,7 +136455,7 @@ "opengraph": null, "title": "Brandenburg an der Havel: Home" }, - "duration": 189, + "duration": 238, "error": null, "responsive": { "document_width": { @@ -136148,7 +136503,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 238 }, "RESPONSIVE": { "score": 1, @@ -136188,9 +136543,9 @@ "resolved_hostname": "www.gruene-kv-heinsberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-kv-heinsberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136232,7 +136587,7 @@ "opengraph": null, "title": "Im Kreis Heinsberg: Startseite" }, - "duration": 176, + "duration": 170, "error": null, "responsive": { "document_width": { @@ -136280,7 +136635,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 176 + "value": 170 }, "RESPONSIVE": { "score": 1, @@ -136323,9 +136678,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-kv-soest.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.151" ], @@ -136360,6 +136715,7 @@ "icon": "https://gruene-kv-soest.de/wp-content/themes/urwahl3000/favicon.png", "opengraph": [ "og:description", + "og:image", "og:site_name", "og:title", "og:type", @@ -136367,7 +136723,7 @@ ], "title": "Kreisverband Soest" }, - "duration": 516, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -136414,7 +136770,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 516 + "value": 513 }, "RESPONSIVE": { "score": 1, @@ -136455,9 +136811,9 @@ "resolved_hostname": "www.gruene-lahnau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lahnau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136499,7 +136855,7 @@ "opengraph": null, "title": "Grüner Ortsverband Lahnau: Home" }, - "duration": 197, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -136547,7 +136903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -136587,9 +136943,9 @@ "resolved_hostname": "www.gruene-landshut.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-landshut.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136631,7 +136987,7 @@ "opengraph": null, "title": "Landkreis Landshut: Home" }, - "duration": 194, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -136679,7 +137035,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -136719,9 +137075,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136763,7 +137119,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 199, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -136811,7 +137167,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 250 }, "RESPONSIVE": { "score": 1, @@ -136851,9 +137207,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -136895,7 +137251,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 199, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -136943,7 +137299,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -136983,9 +137339,9 @@ "resolved_hostname": "www.gruene-lausitz.org" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lausitz.org/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137027,7 +137383,7 @@ "opengraph": null, "title": "Grüne Lausitz: Startseite" }, - "duration": 203, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -137075,7 +137431,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -137115,9 +137471,9 @@ "resolved_hostname": "www.gruene-lechfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lechfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137159,7 +137515,7 @@ "opengraph": null, "title": "OV Lechfeld: Start" }, - "duration": 169, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -137207,7 +137563,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -137247,9 +137603,9 @@ "resolved_hostname": "www.gruene-lichtenfels.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lichtenfels.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137291,7 +137647,7 @@ "opengraph": null, "title": "Kreisverband Lichtenfels: Home" }, - "duration": 196, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -137339,7 +137695,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -137383,9 +137739,9 @@ "resolved_hostname": "www.gruene-lindenfels.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-lindenfels.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "62.27.5.119" ], @@ -137438,7 +137794,7 @@ ], "title": "Grüne LindenfelsGrüne Lindenfels" }, - "duration": 309, + "duration": 306, "error": null, "responsive": { "document_width": { @@ -137485,7 +137841,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 309 + "value": 306 }, "RESPONSIVE": { "score": 1, @@ -137525,9 +137881,9 @@ "resolved_hostname": "www.gruene-linkenheim-hochstetten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-linkenheim-hochstetten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137569,7 +137925,7 @@ "opengraph": null, "title": "Linkenheim-Hochstetten: Startseite" }, - "duration": 191, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -137617,7 +137973,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -137660,9 +138016,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-linksderweser.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.38.249.35" ], @@ -137704,7 +138060,7 @@ ], "title": "Grüne Links der Weser" }, - "duration": 448, + "duration": 464, "error": null, "responsive": { "document_width": { @@ -137751,7 +138107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 448 + "value": 464 }, "RESPONSIVE": { "score": 1, @@ -137792,9 +138148,9 @@ "resolved_hostname": "www.gruene-lohra.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lohra.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137836,7 +138192,7 @@ "opengraph": null, "title": "Ortsverband Lohra: Home" }, - "duration": 218, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -137884,7 +138240,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -137924,9 +138280,9 @@ "resolved_hostname": "www.gruene-luedenscheid.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-luedenscheid.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -137968,7 +138324,7 @@ "opengraph": null, "title": "Ortsverband Lüdenscheid: Home" }, - "duration": 225, + "duration": 247, "error": null, "responsive": { "document_width": { @@ -138016,7 +138372,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 247 }, "RESPONSIVE": { "score": 1, @@ -138056,9 +138412,9 @@ "resolved_hostname": "www.gruene-lueneburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-lueneburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138100,7 +138456,7 @@ "opengraph": null, "title": "Grünes Lüneburg ONLINE: Home" }, - "duration": 262, + "duration": 344, "error": null, "responsive": { "document_width": { @@ -138148,7 +138504,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 262 + "value": 344 }, "RESPONSIVE": { "score": 1, @@ -138188,9 +138544,9 @@ "resolved_hostname": "www.gruene-main-kinzig.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-main-kinzig.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138232,7 +138588,7 @@ "opengraph": null, "title": "Kreisverband Main-Kinzig: Home" }, - "duration": 204, + "duration": 233, "error": null, "responsive": { "document_width": { @@ -138280,7 +138636,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 233 }, "RESPONSIVE": { "score": 1, @@ -138361,7 +138717,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Main-Tauber - Bündnis 90 / Die Grünen Main-Tauber" }, - "duration": 330, + "duration": 348, "error": null, "responsive": { "document_width": { @@ -138410,7 +138766,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 330 + "value": 348 }, "RESPONSIVE": { "score": 1, @@ -138450,9 +138806,9 @@ "resolved_hostname": "www.gruene-meitingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-meitingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138494,7 +138850,7 @@ "opengraph": null, "title": "Ortsverband Meitingen: Startseite" }, - "duration": 188, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -138542,7 +138898,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -138623,7 +138979,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen Bad Mergentheim - Bündnis 90 / Die Grünen Bad Mergentheim" }, - "duration": 466, + "duration": 549, "error": null, "responsive": { "document_width": { @@ -138672,7 +139028,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 466 + "value": 549 }, "RESPONSIVE": { "score": 1, @@ -138712,9 +139068,9 @@ "resolved_hostname": "www.gruene-miesbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-miesbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138756,7 +139112,7 @@ "opengraph": null, "title": "Kreisverband Miesbach: Aktuelles" }, - "duration": 203, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -138804,7 +139160,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -138847,9 +139203,9 @@ "resolved_hostname": "www.gruene-mittelfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mittelfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -138894,7 +139250,7 @@ "opengraph": null, "title": "Grüne Mittelfranken: Startseite" }, - "duration": 202, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -138941,7 +139297,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -138985,9 +139341,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139040,7 +139396,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 889, + "duration": 781, "error": null, "responsive": { "document_width": { @@ -139087,7 +139443,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 889 + "value": 781 }, "RESPONSIVE": { "score": 1, @@ -139131,9 +139487,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139186,7 +139542,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 20, + "duration": 827, "error": null, "responsive": { "document_width": { @@ -139231,9 +139587,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 20 + "value": 827 }, "RESPONSIVE": { "score": 1, @@ -139249,7 +139605,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139277,9 +139633,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139332,7 +139688,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 982, + "duration": 793, "error": null, "responsive": { "document_width": { @@ -139379,7 +139735,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 982 + "value": 793 }, "RESPONSIVE": { "score": 1, @@ -139423,9 +139779,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139478,7 +139834,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 17, + "duration": 832, "error": null, "responsive": { "document_width": { @@ -139523,9 +139879,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 17 + "value": 832 }, "RESPONSIVE": { "score": 1, @@ -139541,7 +139897,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139569,9 +139925,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139624,7 +139980,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 857, + "duration": 810, "error": null, "responsive": { "document_width": { @@ -139671,7 +140027,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 857 + "value": 810 }, "RESPONSIVE": { "score": 1, @@ -139715,9 +140071,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139770,7 +140126,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 20, + "duration": 924, "error": null, "responsive": { "document_width": { @@ -139815,9 +140171,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 20 + "value": 924 }, "RESPONSIVE": { "score": 1, @@ -139833,7 +140189,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -139861,9 +140217,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -139916,7 +140272,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 934, + "duration": 840, "error": null, "responsive": { "document_width": { @@ -139963,7 +140319,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 934 + "value": 840 }, "RESPONSIVE": { "score": 1, @@ -140007,9 +140363,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140062,7 +140418,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 952, + "duration": 825, "error": null, "responsive": { "document_width": { @@ -140109,7 +140465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 952 + "value": 825 }, "RESPONSIVE": { "score": 1, @@ -140153,9 +140509,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140208,7 +140564,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 7, + "duration": 974, "error": null, "responsive": { "document_width": { @@ -140253,9 +140609,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 7 + "value": 974 }, "RESPONSIVE": { "score": 1, @@ -140271,7 +140627,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140299,9 +140655,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140354,7 +140710,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 78, + "duration": 785, "error": null, "responsive": { "document_width": { @@ -140399,9 +140755,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 78 + "value": 785 }, "RESPONSIVE": { "score": 1, @@ -140417,7 +140773,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140445,9 +140801,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140500,7 +140856,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 995, + "duration": 891, "error": null, "responsive": { "document_width": { @@ -140547,7 +140903,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 995 + "value": 891 }, "RESPONSIVE": { "score": 1, @@ -140591,9 +140947,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140737,9 +141093,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140792,7 +141148,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 43, + "duration": 760, "error": null, "responsive": { "document_width": { @@ -140837,9 +141193,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 43 + "value": 760 }, "RESPONSIVE": { "score": 1, @@ -140855,7 +141211,7 @@ "value": true } }, - "score": 10.0 + "score": 9.5 }, { "details": { @@ -140883,9 +141239,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -140938,7 +141294,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 873, + "duration": 793, "error": null, "responsive": { "document_width": { @@ -140985,7 +141341,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 873 + "value": 793 }, "RESPONSIVE": { "score": 1, @@ -141029,9 +141385,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141084,7 +141440,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 884, + "duration": 761, "error": null, "responsive": { "document_width": { @@ -141131,7 +141487,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 884 + "value": 761 }, "RESPONSIVE": { "score": 1, @@ -141175,9 +141531,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141230,7 +141586,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 909, + "duration": 894, "error": null, "responsive": { "document_width": { @@ -141277,7 +141633,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 909 + "value": 894 }, "RESPONSIVE": { "score": 1, @@ -141321,9 +141677,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141376,7 +141732,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 860, + "duration": 904, "error": null, "responsive": { "document_width": { @@ -141423,7 +141779,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 860 + "value": 904 }, "RESPONSIVE": { "score": 1, @@ -141467,9 +141823,9 @@ "resolved_hostname": "www.gruene-ml.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-ml.de/wordpress/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "78.46.1.158" ], @@ -141522,7 +141878,7 @@ ], "title": "Bündnis 90/Die Grünen München Land" }, - "duration": 990, + "duration": 931, "error": null, "responsive": { "document_width": { @@ -141569,7 +141925,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 990 + "value": 931 }, "RESPONSIVE": { "score": 1, @@ -141609,9 +141965,9 @@ "resolved_hostname": "www.gruene-mtk.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-mtk.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141653,7 +142009,7 @@ "opengraph": null, "title": "Kreisverband Main-Taunus: Startseite" }, - "duration": 205, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -141701,7 +142057,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -141741,9 +142097,9 @@ "resolved_hostname": "www.gruene-muehldorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-muehldorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141785,7 +142141,7 @@ "opengraph": null, "title": "Kreisverband Mühldorf: Home" }, - "duration": 206, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -141833,7 +142189,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -141947,9 +142303,9 @@ "resolved_hostname": "www.gruene-neumarkt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neumarkt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -141994,7 +142350,7 @@ "opengraph": null, "title": "Kreisverband Neumarkt: Startseite" }, - "duration": 193, + "duration": 196, "error": null, "responsive": { "document_width": { @@ -142041,7 +142397,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 196 }, "RESPONSIVE": { "score": 1, @@ -142085,9 +142441,9 @@ "resolved_hostname": "www.gruene-neunkirchen-saar.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-neunkirchen-saar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -142133,7 +142489,7 @@ "opengraph": null, "title": "Ortsverband Neunkirchen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 299, + "duration": 301, "error": null, "responsive": { "document_width": { @@ -142180,7 +142536,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 299 + "value": 301 }, "RESPONSIVE": { "score": 1, @@ -142224,9 +142580,9 @@ "resolved_hostname": "www.gruene-neunkirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-neunkirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -142272,7 +142628,7 @@ "opengraph": null, "title": "Kreisverband Neunkirchen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 308, + "duration": 300, "error": null, "responsive": { "document_width": { @@ -142319,7 +142675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 308 + "value": 300 }, "RESPONSIVE": { "score": 1, @@ -142359,9 +142715,9 @@ "resolved_hostname": "www.gruene-niederbayern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-niederbayern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142403,7 +142759,7 @@ "opengraph": null, "title": "Grüne Niederbayern: Aktuelles" }, - "duration": 297, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -142451,7 +142807,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -142491,9 +142847,9 @@ "resolved_hostname": "www.gruene-norderstedt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-norderstedt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142535,7 +142891,7 @@ "opengraph": null, "title": "Grüne Norderstedt: Aktuelles" }, - "duration": 187, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -142583,7 +142939,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -142623,9 +142979,9 @@ "resolved_hostname": "www.gruene-nottuln.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nottuln.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142667,7 +143023,7 @@ "opengraph": null, "title": "DIE GRÜNEN in Nottuln: Aktuelles" }, - "duration": 193, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -142715,7 +143071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -142755,9 +143111,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142799,7 +143155,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 215, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -142847,7 +143203,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -142887,9 +143243,537 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 198, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-altdorf/", + "meta": { + "city": "Altdorf", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 198 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 240, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-burgthann/", + "meta": { + "city": "Burgthann", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 240 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-feucht/", + "meta": { + "city": "Feucht", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 199 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "http://www.gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://gruene-nuernberger-land.de/" + }, + { + "error": null, + "redirects_to": "https://gruene-nuernberger-land.de/startseite/", + "url": "https://www.gruene-nuernberger-land.de/" + } + ], + "responsive": { + "min_width": 397, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Kreisverb. Nürnberger Land: Startseite" + }, + "duration": 204, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 397, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-nuernberger-land.de/startseite/" + } + ] + }, + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-hersbruck/", + "meta": { + "city": "Hersbrucker Land", + "district": "Nürnberg-Land", + "level": "DE:ORTSVERBAND", + "state": "Bayern" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 204 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruene-nuernberger-land.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruene-nuernberger-land.de" + }, + "www.gruene-nuernberger-land.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruene-nuernberger-land.de" + } + }, + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -142947,9 +143831,9 @@ } ] }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-altdorf/", + "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-lauf-an-der-pegnitz/", "meta": { - "city": "Altdorf", + "city": "Lauf", "district": "Nürnberg-Land", "level": "DE:ORTSVERBAND", "state": "Bayern" @@ -143019,9 +143903,9 @@ "resolved_hostname": "www.gruene-nuernberger-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -143063,535 +143947,7 @@ "opengraph": null, "title": "Kreisverb. Nürnberger Land: Startseite" }, - "duration": 201, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-burgthann/", - "meta": { - "city": "Burgthann", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 201 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 193, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-feucht/", - "meta": { - "city": "Feucht", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 193 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 202, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-hersbruck/", - "meta": { - "city": "Hersbrucker Land", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 202 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 196, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 397, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruene-nuernberger-land.de/startseite/" - } - ] - }, - "input_url": "https://gruene-nuernberger-land.de/ortsverbaende/ov-lauf-an-der-pegnitz/", - "meta": { - "city": "Lauf", - "district": "Nürnberg-Land", - "level": "DE:ORTSVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 196 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, - { - "details": { - "canonical_urls": [ - "https://gruene-nuernberger-land.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruene-nuernberger-land.de" - }, - "www.gruene-nuernberger-land.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruene-nuernberger-land.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "http://www.gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://gruene-nuernberger-land.de/" - }, - { - "error": null, - "redirects_to": "https://gruene-nuernberger-land.de/startseite/", - "url": "https://www.gruene-nuernberger-land.de/" - } - ], - "responsive": { - "min_width": 397, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruene-nuernberger-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Kreisverb. Nürnberger Land: Startseite" - }, - "duration": 202, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -143639,7 +143995,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -143679,9 +144035,9 @@ "resolved_hostname": "www.gruene-nuthetal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-nuthetal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -143723,7 +144079,7 @@ "opengraph": null, "title": "Basisverband Nuthetal: Home" }, - "duration": 229, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -143771,7 +144127,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 229 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -143815,9 +144171,9 @@ "resolved_hostname": "www.gruene-oal.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-oal.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "217.160.0.3" ], @@ -143871,7 +144227,7 @@ ], "title": "Grüne Ostallgäu-Kaufbeuren" }, - "duration": 437, + "duration": 478, "error": null, "responsive": { "document_width": { @@ -143918,7 +144274,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 437 + "value": 478 }, "RESPONSIVE": { "score": 1, @@ -143962,9 +144318,9 @@ "resolved_hostname": "www.gruene-oberbayern.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-oberbayern.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.225.216" ], @@ -144016,7 +144372,7 @@ ], "title": "GRÜNE Oberbayern" }, - "duration": 159, + "duration": 179, "error": null, "responsive": { "document_width": { @@ -144063,7 +144419,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 159 + "value": 179 }, "RESPONSIVE": { "score": 1, @@ -144103,9 +144459,9 @@ "resolved_hostname": "www.gruene-oberfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144147,7 +144503,7 @@ "opengraph": null, "title": "Grüne Oberfranken: Startseite" }, - "duration": 222, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -144195,7 +144551,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -144235,9 +144591,9 @@ "resolved_hostname": "www.gruene-oberursel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberursel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144279,7 +144635,7 @@ "opengraph": null, "title": "B90/Die Grünen - Oberursel: Home" }, - "duration": 187, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -144327,7 +144683,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -144367,9 +144723,9 @@ "resolved_hostname": "www.gruene-odenwald-kraichgau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-odenwald-kraichgau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144411,7 +144767,7 @@ "opengraph": null, "title": "KV Odenwald-Kraichgau: Startseite" }, - "duration": 154, + "duration": 249, "error": null, "responsive": { "document_width": { @@ -144459,7 +144815,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 154 + "value": 249 }, "RESPONSIVE": { "score": 1, @@ -144499,9 +144855,9 @@ "resolved_hostname": "www.gruene-passauland.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://gruene-passauland.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -144543,7 +144899,7 @@ "opengraph": null, "title": "Die Grünen Passau Land: Grüne Passau Land" }, - "duration": 147, + "duration": 156, "error": null, "responsive": { "document_width": { @@ -144591,7 +144947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 147 + "value": 156 }, "RESPONSIVE": { "score": 1, @@ -144631,9 +144987,9 @@ "resolved_hostname": "www.gruene-penzberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-penzberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144675,7 +145031,7 @@ "opengraph": null, "title": "Ortsverband Penzberg: Home" }, - "duration": 184, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -144723,7 +145079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 184 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -144763,9 +145119,9 @@ "resolved_hostname": "www.gruene-pfaffenhofen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pfaffenhofen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144807,7 +145163,7 @@ "opengraph": null, "title": "Grüne Pfaffenhofen: Startseite" }, - "duration": 218, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -144855,7 +145211,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -144895,9 +145251,9 @@ "resolved_hostname": "www.gruene-pfinztal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-pfinztal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -144939,7 +145295,7 @@ "opengraph": null, "title": "Ortsverband Pfinztal: Startseite" }, - "duration": 198, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -144987,7 +145343,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -145027,9 +145383,9 @@ "resolved_hostname": "www.gruene-potsdam-mittelmark.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-potsdam-mittelmark.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145071,7 +145427,7 @@ "opengraph": null, "title": ": Home" }, - "duration": 201, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -145119,7 +145475,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -145162,9 +145518,9 @@ "resolved_hostname": "www.gruene-potsdam.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-potsdam.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145209,7 +145565,7 @@ "opengraph": null, "title": "KREISVERBAND POTSDAM: Home" }, - "duration": 218, + "duration": 246, "error": null, "responsive": { "document_width": { @@ -145256,7 +145612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 218 + "value": 246 }, "RESPONSIVE": { "score": 1, @@ -145296,9 +145652,9 @@ "resolved_hostname": "www.gruene-regen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-regen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145340,7 +145696,7 @@ "opengraph": null, "title": "Kreisverband Regen: Home" }, - "duration": 195, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -145388,7 +145744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 197 }, "RESPONSIVE": { "score": 1, @@ -145428,9 +145784,9 @@ "resolved_hostname": "www.gruene-regensburg-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-regensburg-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145472,7 +145828,7 @@ "opengraph": null, "title": "GRÜNE Regensburg-Land: Aktuelles" }, - "duration": 168, + "duration": 192, "error": null, "responsive": { "document_width": { @@ -145520,7 +145876,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 192 }, "RESPONSIVE": { "score": 1, @@ -145564,9 +145920,9 @@ "resolved_hostname": "www.gruene-rehlingen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-rehlingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -145593,7 +145949,7 @@ } ], "responsive": { - "min_width": 334, + "min_width": 351, "viewport_meta_tag": [ "width=device-width, initial-scale=1.0" ] @@ -145612,13 +145968,13 @@ "opengraph": null, "title": "Grüne Rehlingen-Siersburg - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 297, + "duration": 325, "error": null, "responsive": { "document_width": { "1024x768": 1045, "1920x1080": 1920, - "320x480": 334, + "320x480": 351, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1.0" @@ -145659,7 +146015,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 297 + "value": 325 }, "RESPONSIVE": { "score": 1, @@ -145699,9 +146055,9 @@ "resolved_hostname": "www.gruene-reinfeld-nordstormarn.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-reinfeld-nordstormarn.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145743,7 +146099,7 @@ "opengraph": null, "title": "Reinfeld-Nordstormarn: Startseite" }, - "duration": 211, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -145791,7 +146147,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -145831,9 +146187,9 @@ "resolved_hostname": "www.gruene-rheda-wiedenbrueck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rheda-wiedenbrueck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -145875,7 +146231,7 @@ "opengraph": null, "title": "OV Rheda-Wiedenbrück: Startseite" }, - "duration": 194, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -145923,7 +146279,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -145966,9 +146322,9 @@ "resolved_hostname": "www.gruene-rielasingen-worblingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rielasingen-worblingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146013,7 +146369,7 @@ "opengraph": null, "title": "Rielasingen-Worblingen: Start" }, - "duration": 258, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -146060,7 +146416,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -146100,9 +146456,9 @@ "resolved_hostname": "www.gruene-rietberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-rietberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146144,7 +146500,7 @@ "opengraph": null, "title": "Ortsverband Rietberg: Home" }, - "duration": 171, + "duration": 166, "error": null, "responsive": { "document_width": { @@ -146192,7 +146548,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 171 + "value": 166 }, "RESPONSIVE": { "score": 1, @@ -146235,9 +146591,9 @@ "resolved_hostname": "www.gruene-roesrath.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-roesrath.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146282,7 +146638,7 @@ "opengraph": null, "title": "Die Grünen Rösrath: Startseite" }, - "duration": 243, + "duration": 207, "error": null, "responsive": { "document_width": { @@ -146329,7 +146685,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 243 + "value": 207 }, "RESPONSIVE": { "score": 1, @@ -146392,7 +146748,7 @@ "urlchecks": [ { "content": null, - "duration": 263, + "duration": 245, "error": null, "responsive": { "document_width": { @@ -146441,7 +146797,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 245 }, "RESPONSIVE": { "score": 1, @@ -146486,9 +146842,9 @@ "resolved_hostname": "www.gruene-sb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-sb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -146534,7 +146890,7 @@ "opengraph": null, "title": "Kreisverband Saarbrücken - BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 273, + "duration": 393, "error": null, "responsive": { "document_width": { @@ -146581,7 +146937,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 393 }, "RESPONSIVE": { "score": 1, @@ -146621,9 +146977,9 @@ "resolved_hostname": "www.gruene-schleiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schleiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146665,7 +147021,7 @@ "opengraph": null, "title": "Die Grünen in Schleiden: Startseite" }, - "duration": 197, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -146713,7 +147069,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -146753,9 +147109,9 @@ "resolved_hostname": "www.gruene-schluechtern.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schluechtern.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146797,7 +147153,7 @@ "opengraph": null, "title": "Ortsverband Schlüchtern: Startseite" }, - "duration": 204, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -146845,7 +147201,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -146885,9 +147241,9 @@ "resolved_hostname": "www.gruene-schoenaich.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schoenaich.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -146929,7 +147285,7 @@ "opengraph": null, "title": "Ortsverband Schönaich: Willkommen auf der Homepage des Ortsverbandes Schönaich von Bündnis 90/Die Grünen (umfasst Schönaich, Steinenbronn und Waldenbuch)" }, - "duration": 190, + "duration": 234, "error": null, "responsive": { "document_width": { @@ -146977,7 +147333,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 190 + "value": 234 }, "RESPONSIVE": { "score": 1, @@ -147017,9 +147373,9 @@ "resolved_hostname": "www.gruene-schoeneck.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schoeneck.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147061,7 +147417,7 @@ "opengraph": null, "title": "Ortsverband Schöneck: Startseite" }, - "duration": 202, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -147109,7 +147465,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 195 }, "RESPONSIVE": { "score": 1, @@ -147149,9 +147505,9 @@ "resolved_hostname": "www.gruene-schwaben.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwaben.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147193,7 +147549,7 @@ "opengraph": null, "title": "Bezirksverband Schwaben: Nachrichten" }, - "duration": 208, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -147241,7 +147597,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -147281,9 +147637,9 @@ "resolved_hostname": "www.gruene-schwalbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwalbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147325,7 +147681,7 @@ "opengraph": null, "title": "Schwalbach am Taunus: Home" }, - "duration": 205, + "duration": 322, "error": null, "responsive": { "document_width": { @@ -147373,7 +147729,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 322 }, "RESPONSIVE": { "score": 1, @@ -147413,9 +147769,9 @@ "resolved_hostname": "www.gruene-schwandorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwandorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147457,7 +147813,7 @@ "opengraph": null, "title": "Kreisverband Schwandorf: Startseite" }, - "duration": 189, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -147505,7 +147861,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 189 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -147523,6 +147879,145 @@ }, "score": 8.5 }, + { + "details": { + "canonical_urls": [ + "https://gruene-schwentinental.com/" + ], + "cms": "wordpress", + "feeds": [ + "https://gruene-schwentinental.com/comments/feed/", + "https://gruene-schwentinental.com/feed/" + ], + "hostnames": { + "gruene-schwentinental.com": { + "aliases": [ + "www.gruene-schwentinental.com" + ], + "ip_addresses": [ + "192.0.78.24", + "192.0.78.25" + ], + "resolvable": true, + "resolved_hostname": "gruene-schwentinental.com" + }, + "www.gruene-schwentinental.com": { + "resolvable": false + } + }, + "icons": { + "https://susanneelbert.files.wordpress.com/2017/10/website-icon.jpg?w=32": "83d74cceb607c6b19336d72f877ef474.jpg" + }, + "ipv4_addresses": [ + "192.0.78.24", + "192.0.78.25" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruene-schwentinental.com/", + "url": "http://gruene-schwentinental.com/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://gruene-schwentinental.com/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": "https://gruene-schwentinental.com/", + "encoding": "utf-8", + "feeds": [ + "https://gruene-schwentinental.com/feed/", + "https://gruene-schwentinental.com/comments/feed/" + ], + "generator": "WordPress.com", + "icon": "https://susanneelbert.files.wordpress.com/2017/10/website-icon.jpg?w=32", + "opengraph": [ + "og:image", + "og:image:height", + "og:image:width", + "og:locale", + "og:title", + "og:type", + "og:url" + ], + "title": "" + }, + "duration": 419, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruene-schwentinental.com/" + } + ] + }, + "input_url": "https://gruene-schwentinental.com/", + "meta": { + "city": "Schwentinental", + "district": "Plön", + "level": "DE:ORTSVERBAND", + "state": "Schleswig-Holstein" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 419 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 0, + "type": "boolean", + "value": false + } + }, + "score": 8.5 + }, { "details": { "canonical_urls": [ @@ -147545,9 +148040,9 @@ "resolved_hostname": "www.gruene-schwielowsee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schwielowsee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147589,7 +148084,7 @@ "opengraph": null, "title": "Basisverband Schwielowsee: Wir grünen in Schwielowsee" }, - "duration": 166, + "duration": 183, "error": null, "responsive": { "document_width": { @@ -147637,7 +148132,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 183 }, "RESPONSIVE": { "score": 1, @@ -147677,9 +148172,9 @@ "resolved_hostname": "www.gruene-seligenstadt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-seligenstadt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147721,7 +148216,7 @@ "opengraph": null, "title": "Ortsverband Seligenstadt: Startseite" }, - "duration": 165, + "duration": 181, "error": null, "responsive": { "document_width": { @@ -147769,7 +148264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 181 }, "RESPONSIVE": { "score": 1, @@ -147809,9 +148304,9 @@ "resolved_hostname": "www.gruene-singen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-singen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -147853,7 +148348,7 @@ "opengraph": null, "title": "OV Singen (Hohentwiel): Startseite" }, - "duration": 169, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -147901,7 +148396,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 169 + "value": 191 }, "RESPONSIVE": { "score": 1, @@ -147945,9 +148440,9 @@ "resolved_hostname": "www.gruene-sls.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-sls.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -147993,7 +148488,7 @@ "opengraph": null, "title": "Kreisverband Saarlouis - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 278, + "duration": 308, "error": null, "responsive": { "document_width": { @@ -148040,7 +148535,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 278 + "value": 308 }, "RESPONSIVE": { "score": 1, @@ -148084,9 +148579,9 @@ "resolvable": false } }, - "icons": [ - "16f5808feb148ca9d088b5535f00777a.png" - ], + "icons": { + "https://gruene-sms.de/wp-content/themes/urwahl3000/favicon.png": "16f5808feb148ca9d088b5535f00777a.png" + }, "ipv4_addresses": [ "94.186.184.11" ], @@ -148129,7 +148624,7 @@ ], "title": "Schmalkalden-Meiningen-Suhl › BÜNDNIS 90/DIE GRÜNEN Regionalverband" }, - "duration": 371, + "duration": 383, "error": null, "responsive": { "document_width": { @@ -148176,7 +148671,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 371 + "value": 383 }, "RESPONSIVE": { "score": 1, @@ -148217,9 +148712,9 @@ "resolved_hostname": "www.gruene-starnberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-starnberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148261,7 +148756,7 @@ "opengraph": null, "title": "Kreisverband Starnberg: Home" }, - "duration": 214, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -148309,7 +148804,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 214 + "value": 237 }, "RESPONSIVE": { "score": 1, @@ -148349,9 +148844,9 @@ "resolved_hostname": "www.gruene-stauden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stauden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148393,7 +148888,7 @@ "opengraph": null, "title": "Ortsverband Stauden: Startseite" }, - "duration": 204, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -148441,7 +148936,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -148481,9 +148976,9 @@ "resolved_hostname": "www.gruene-steinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148525,7 +149020,7 @@ "opengraph": null, "title": "Ortsverband Steinbach: Willkommen bei Steinbachs GRÜNEN" }, - "duration": 170, + "duration": 194, "error": null, "responsive": { "document_width": { @@ -148573,7 +149068,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 194 }, "RESPONSIVE": { "score": 1, @@ -148613,9 +149108,9 @@ "resolved_hostname": "www.gruene-steinheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148657,7 +149152,7 @@ "opengraph": null, "title": "Ortsverband Steinheim: GRÜNE aktuell" }, - "duration": 191, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -148705,7 +149200,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -148784,7 +149279,7 @@ "opengraph": null, "title": "GO/Grüne Straelen, wir bewegen" }, - "duration": 131, + "duration": 133, "error": null, "responsive": { "document_width": { @@ -148807,7 +149302,7 @@ "opengraph": null, "title": "GO/Grüne Straelen, wir bewegen" }, - "duration": 147, + "duration": 158, "error": null, "responsive": { "document_width": { @@ -148857,7 +149352,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 139 + "value": 146 }, "RESPONSIVE": { "score": 0, @@ -148897,9 +149392,9 @@ "resolved_hostname": "www.gruene-stutensee.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stutensee.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -148941,7 +149436,7 @@ "opengraph": null, "title": "Grün für Stutensee: Startseite" }, - "duration": 208, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -148989,7 +149484,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -149029,9 +149524,9 @@ "resolved_hostname": "www.gruene-stuttgart.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-stuttgart.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149073,7 +149568,7 @@ "opengraph": null, "title": "Kreisverband Stuttgart: Startseite" }, - "duration": 194, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -149121,7 +149616,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -149165,9 +149660,9 @@ "resolved_hostname": "www.gruene-tangstedt.de" } }, - "icons": [ - "43fb33c57227e9d867b3089d993628e3.png" - ], + "icons": { + "https://gruene-tangstedt.de/wp-content/uploads/2018/04/cropped-claim-klein-32x32.png": "43fb33c57227e9d867b3089d993628e3.png" + }, "ipv4_addresses": [ "62.116.169.204" ], @@ -149213,7 +149708,7 @@ "opengraph": null, "title": "" }, - "duration": 339, + "duration": 458, "error": null, "responsive": { "document_width": { @@ -149260,7 +149755,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 458 }, "RESPONSIVE": { "score": 1, @@ -149300,9 +149795,9 @@ "resolved_hostname": "www.gruene-teltow-flaeming.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-teltow-flaeming.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149432,9 +149927,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149476,7 +149971,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 195, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -149524,7 +150019,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -149564,9 +150059,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149608,7 +150103,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 205, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -149656,7 +150151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 347 }, "RESPONSIVE": { "score": 1, @@ -149696,9 +150191,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149740,7 +150235,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 192, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -149788,7 +150283,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -149828,9 +150323,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -149872,7 +150367,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 197, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -149920,7 +150415,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -149960,9 +150455,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150004,7 +150499,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 196, + "duration": 65, "error": null, "responsive": { "document_width": { @@ -150050,9 +150545,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 196 + "value": 65 }, "RESPONSIVE": { "score": 1, @@ -150068,7 +150563,7 @@ "value": true } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -150092,9 +150587,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150136,7 +150631,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 194, + "duration": 94, "error": null, "responsive": { "document_width": { @@ -150182,9 +150677,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 194 + "value": 94 }, "RESPONSIVE": { "score": 1, @@ -150200,7 +150695,7 @@ "value": true } }, - "score": 8.5 + "score": 9.0 }, { "details": { @@ -150224,9 +150719,9 @@ "resolved_hostname": "www.gruene-toelz-wor.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-toelz-wor.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150268,7 +150763,7 @@ "opengraph": null, "title": "Bad Tölz-Wolfratshausen: Home" }, - "duration": 196, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -150316,7 +150811,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -150356,9 +150851,9 @@ "resolved_hostname": "www.gruene-trittau.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-trittau.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150400,7 +150895,7 @@ "opengraph": null, "title": "Ortsverband Trittau: Startseite" }, - "duration": 199, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -150448,7 +150943,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 273 }, "RESPONSIVE": { "score": 1, @@ -150488,9 +150983,9 @@ "resolved_hostname": "www.gruene-uebach-palenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-uebach-palenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150532,7 +151027,7 @@ "opengraph": null, "title": "OV Übach-Palenberg: Home" }, - "duration": 207, + "duration": 259, "error": null, "responsive": { "document_width": { @@ -150580,7 +151075,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 259 }, "RESPONSIVE": { "score": 1, @@ -150620,9 +151115,9 @@ "resolved_hostname": "www.gruene-unterfranken.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-unterfranken.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150664,7 +151159,7 @@ "opengraph": null, "title": "Bezirksverband Unterfranken: Startseite" }, - "duration": 188, + "duration": 187, "error": null, "responsive": { "document_width": { @@ -150712,7 +151207,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 187 }, "RESPONSIVE": { "score": 1, @@ -150752,9 +151247,9 @@ "resolved_hostname": "www.gruene-viernheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-viernheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -150796,7 +151291,7 @@ "opengraph": null, "title": "Ortsverband Viernheim: Startseite" }, - "duration": 207, + "duration": 439, "error": null, "responsive": { "document_width": { @@ -150844,7 +151339,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 439 }, "RESPONSIVE": { "score": 1, @@ -150939,7 +151434,7 @@ ], "title": "Bündnis90/Die Grünen Kreisverband Vulkaneifel »" }, - "duration": 566, + "duration": 453, "error": null, "responsive": { "document_width": { @@ -150987,7 +151482,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 566 + "value": 453 }, "RESPONSIVE": { "score": 1, @@ -151031,9 +151526,9 @@ "resolved_hostname": "www.gruene-wadgassen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wadgassen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -151079,7 +151574,7 @@ "opengraph": null, "title": "Ortsverband Wadgassen - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 304, + "duration": 288, "error": null, "responsive": { "document_width": { @@ -151126,7 +151621,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 304 + "value": 288 }, "RESPONSIVE": { "score": 1, @@ -151166,9 +151661,9 @@ "resolved_hostname": "www.gruene-walzbachtal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-walzbachtal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151210,7 +151705,7 @@ "opengraph": null, "title": "Grüne Walzbachtal: Startseite" }, - "duration": 197, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -151258,7 +151753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -151302,9 +151797,9 @@ "resolved_hostname": "www.gruene-warburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-warburg.de/wp-content/themes/gruene-warburg/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.17.224.96" ], @@ -151363,7 +151858,7 @@ ], "title": "Ortsverband Warburg" }, - "duration": 357, + "duration": 446, "error": null, "responsive": { "document_width": { @@ -151410,7 +151905,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 446 }, "RESPONSIVE": { "score": 1, @@ -151454,9 +151949,9 @@ "resolved_hostname": "www.gruene-wattenscheid.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wattenscheid.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "37.120.190.113" ], @@ -151502,7 +151997,7 @@ "opengraph": null, "title": "Grüne Wattenscheid" }, - "duration": 148, + "duration": 141, "error": null, "responsive": { "document_width": { @@ -151549,7 +152044,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 148 + "value": 141 }, "RESPONSIVE": { "score": 1, @@ -151594,9 +152089,9 @@ "resolved_hostname": "www.gruene-weeze.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-weeze.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "185.26.156.81" ], @@ -151649,7 +152144,7 @@ ], "title": "DIE GRÜNEN WEEZE" }, - "duration": 263, + "duration": 267, "error": null, "responsive": { "document_width": { @@ -151696,7 +152191,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 267 }, "RESPONSIVE": { "score": 1, @@ -151736,9 +152231,9 @@ "resolved_hostname": "www.gruene-weiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151780,7 +152275,7 @@ "opengraph": null, "title": "Weiden - Neustadt/Waldnaab: Startseite" }, - "duration": 203, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -151828,7 +152323,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -151868,9 +152363,9 @@ "resolved_hostname": "www.gruene-weiden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weiden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -151912,7 +152407,7 @@ "opengraph": null, "title": "Weiden - Neustadt/Waldnaab: Startseite" }, - "duration": 197, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -151960,7 +152455,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -152000,9 +152495,9 @@ "resolved_hostname": "www.gruene-weissenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-weissenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152044,7 +152539,7 @@ "opengraph": null, "title": "Weißenburg-Gunzenhausen: Home" }, - "duration": 199, + "duration": 240, "error": null, "responsive": { "document_width": { @@ -152092,7 +152587,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 240 }, "RESPONSIVE": { "score": 1, @@ -152132,9 +152627,9 @@ "resolved_hostname": "www.gruene-wetter-hessen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wetter-hessen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152176,7 +152671,7 @@ "opengraph": null, "title": "Grüner Ortsverband Wetter Hessen: Startseite" }, - "duration": 223, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -152224,7 +152719,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 223 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -152268,9 +152763,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-wetzlar.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.164" ], @@ -152315,7 +152810,7 @@ ], "title": "Startseite - Grüne WetzlarGrüne Wetzlar" }, - "duration": 310, + "duration": 283, "error": null, "responsive": { "document_width": { @@ -152362,7 +152857,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 310 + "value": 283 }, "RESPONSIVE": { "score": 1, @@ -152403,9 +152898,9 @@ "resolved_hostname": "www.gruene-winnenden.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-winnenden.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152447,7 +152942,7 @@ "opengraph": null, "title": "Grüne OV Winnenden: Startseite" }, - "duration": 192, + "duration": 177, "error": null, "responsive": { "document_width": { @@ -152495,7 +152990,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 177 }, "RESPONSIVE": { "score": 1, @@ -152535,9 +153030,9 @@ "resolved_hostname": "www.gruene-woltersdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-woltersdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152579,7 +153074,7 @@ "opengraph": null, "title": "Ortsverband Woltersdorf: Home" }, - "duration": 211, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -152627,7 +153122,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 211 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -152670,9 +153165,9 @@ "resolved_hostname": "www.gruene.berlin" } }, - "icons": [ - "47cfbba59aa7e10c678bc8ef3e429b58.ico" - ], + "icons": { + "https://gruene.berlin/sites/gruene.berlin/files/favicon.ico": "47cfbba59aa7e10c678bc8ef3e429b58.ico" + }, "ipv4_addresses": [ "91.102.13.24" ], @@ -152724,7 +153219,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN Berlin |" }, - "duration": 210, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -152771,7 +153266,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 210 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -152814,9 +153309,9 @@ "resolvable": false } }, - "icons": [ - "1d0f9c3c4782850ce383a671bf00f470.png" - ], + "icons": { + "https://gruene.li/wp-content/uploads/favicon.png": "1d0f9c3c4782850ce383a671bf00f470.png" + }, "ipv4_addresses": [ "195.30.85.193" ], @@ -152861,7 +153356,7 @@ ], "title": "Kreisverband Lindau - Bündnis 90 / DIE GRÜNEN" }, - "duration": 244, + "duration": 268, "error": null, "responsive": { "document_width": { @@ -152908,7 +153403,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 268 }, "RESPONSIVE": { "score": 1, @@ -152949,9 +153444,9 @@ "resolved_hostname": "www.gruenekranenburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenekranenburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -152993,7 +153488,7 @@ "opengraph": null, "title": "Ortsverband Kranenburg: Home" }, - "duration": 170, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -153041,7 +153536,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -153081,9 +153576,9 @@ "resolved_hostname": "www.gruenemaintal.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenemaintal.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153125,7 +153620,7 @@ "opengraph": null, "title": "Ortsverband Maintal: Startseite" }, - "duration": 191, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -153173,7 +153668,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -153213,9 +153708,9 @@ "resolved_hostname": "www.gruenestadtbergen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruenestadtbergen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153257,7 +153752,7 @@ "opengraph": null, "title": "Ortsverband Stadtbergen: Startseite" }, - "duration": 199, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -153280,6 +153775,138 @@ "level": "DE:ORTSVERBAND", "state": "Bayern" }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 1, + "value": true + }, + "FEEDS": { + "score": 0, + "type": "boolean", + "value": false + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 201 + }, + "RESPONSIVE": { + "score": 1, + "type": "boolean", + "value": true + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 8.5 + }, + { + "details": { + "canonical_urls": [ + "https://gruenetir.de/startseite/" + ], + "cms": "typo3-gcms", + "hostnames": { + "gruenetir.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "gruenetir.de" + }, + "www.gruenetir.de": { + "ip_addresses": [ + "91.102.13.20" + ], + "resolvable": true, + "resolved_hostname": "www.gruenetir.de" + } + }, + "icons": { + "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, + "ipv4_addresses": [ + "91.102.13.20" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "http://gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "http://www.gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "https://gruenetir.de/" + }, + { + "error": null, + "redirects_to": "https://gruenetir.de/startseite/", + "url": "https://www.gruenetir.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "generator": "TYPO3 CMS", + "icon": "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", + "opengraph": null, + "title": "Grüne Kreis Tirschenreuth: Startseite" + }, + "duration": 199, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://gruenetir.de/startseite/" + } + ] + }, + "input_url": "https://gruenetir.de/", + "meta": { + "city": null, + "district": "Tirschenreuth", + "level": "DE:KREISVERBAND", + "state": "Bayern" + }, "result": { "CANONICAL_URL": { "score": 1, @@ -153323,138 +153950,6 @@ }, "score": 8.5 }, - { - "details": { - "canonical_urls": [ - "https://gruenetir.de/startseite/" - ], - "cms": "typo3-gcms", - "hostnames": { - "gruenetir.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "gruenetir.de" - }, - "www.gruenetir.de": { - "ip_addresses": [ - "91.102.13.20" - ], - "resolvable": true, - "resolved_hostname": "www.gruenetir.de" - } - }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], - "ipv4_addresses": [ - "91.102.13.20" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "http://gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "http://www.gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "https://gruenetir.de/" - }, - { - "error": null, - "redirects_to": "https://gruenetir.de/startseite/", - "url": "https://www.gruenetir.de/" - } - ], - "responsive": { - "min_width": 320, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "generator": "TYPO3 CMS", - "icon": "https://gruenetir.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico", - "opengraph": null, - "title": "Grüne Kreis Tirschenreuth: Startseite" - }, - "duration": 191, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1024, - "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://gruenetir.de/startseite/" - } - ] - }, - "input_url": "https://gruenetir.de/", - "meta": { - "city": null, - "district": "Tirschenreuth", - "level": "DE:KREISVERBAND", - "state": "Bayern" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 1, - "value": true - }, - "FEEDS": { - "score": 0, - "type": "boolean", - "value": false - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 0.5, - "type": "number", - "value": 191 - }, - "RESPONSIVE": { - "score": 1, - "type": "boolean", - "value": true - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.5 - }, { "details": { "canonical_urls": [ @@ -153480,9 +153975,9 @@ "resolvable": false } }, - "icons": [ - "c3c082209d31545ba47f3ac00eac1136.png" - ], + "icons": { + "https://gud-zwingenberg.de/wp-content/uploads/2016/04/cropped-logo_gud_rund_gruen-300x300-150x150.png": "c3c082209d31545ba47f3ac00eac1136.png" + }, "ipv4_addresses": [ "81.169.145.149" ], @@ -153528,7 +154023,7 @@ ], "title": "GUD – Gemeinschaft für Umweltschutz und Demokratie – Zwingenberg und Rodau" }, - "duration": 276, + "duration": 897, "error": null, "responsive": { "document_width": { @@ -153575,7 +154070,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 276 + "value": 897 }, "RESPONSIVE": { "score": 1, @@ -153772,9 +154267,10 @@ "resolved_hostname": "www.ingolstadt-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://ingolstadt-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.ingolstadt-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -153816,7 +154312,7 @@ "opengraph": null, "title": "Grüner Kreisverband Ingolstadt: Startseite" }, - "duration": 200, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -153839,7 +154335,7 @@ "opengraph": null, "title": "Grüner Kreisverband Ingolstadt: Startseite" }, - "duration": 241, + "duration": 300, "error": null, "responsive": { "document_width": { @@ -153888,7 +154384,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -153980,7 +154476,7 @@ ], "title": "Bündnis 90/Die Grünen – Kreisverband Gießen" }, - "duration": 253, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -154028,7 +154524,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 253 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -154072,9 +154568,9 @@ "resolved_hostname": "www.kreis.gruene-merzig.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://kreis.gruene-merzig.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -154120,7 +154616,7 @@ "opengraph": null, "title": "Kreisverband Merzig-Wadern - BÜNDNIS 90/DIE GRÜNEN Saarland" }, - "duration": 311, + "duration": 522, "error": null, "responsive": { "document_width": { @@ -154167,7 +154663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 522 }, "RESPONSIVE": { "score": 1, @@ -154211,9 +154707,9 @@ "resolved_hostname": "www.mehr-gruen-fuer-blankenheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://mehr-gruen-fuer-blankenheim.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.214.51.177" ], @@ -154265,7 +154761,7 @@ ], "title": "Bündnis 90/Die Grünen Blankenheim" }, - "duration": 331, + "duration": 299, "error": null, "responsive": { "document_width": { @@ -154312,7 +154808,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 331 + "value": 299 }, "RESPONSIVE": { "score": 1, @@ -154356,9 +154852,9 @@ "resolved_hostname": "www.netzwerk.gruene-surfer.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://netzwerk.gruene-surfer.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.157.141" ], @@ -154404,7 +154900,7 @@ "opengraph": null, "title": "Netzwerk - BÜNDNIS 90/DIE GRÜNEN – Saarland" }, - "duration": 339, + "duration": 358, "error": null, "responsive": { "document_width": { @@ -154451,7 +154947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 339 + "value": 358 }, "RESPONSIVE": { "score": 1, @@ -154537,7 +155033,7 @@ ], "title": "Bündnis 90/Die Grünen Kreisverband Offenbach-Land" }, - "duration": 241, + "duration": 400, "error": null, "responsive": { "document_width": { @@ -154586,7 +155082,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 241 + "value": 400 }, "RESPONSIVE": { "score": 1, @@ -154629,9 +155125,9 @@ "resolvable": false } }, - "icons": [ - "0073bd6a9bfa8259f684bb664bd28c9a.png" - ], + "icons": { + "https://sh-gruene.de/dateien/cropped-Website_Icon-32x32.png": "0073bd6a9bfa8259f684bb664bd28c9a.png" + }, "ipv4_addresses": [ "134.119.234.75" ], @@ -154667,7 +155163,7 @@ "opengraph": null, "title": "GRÜNE Schleswig-Holstein" }, - "duration": 453, + "duration": 471, "error": null, "responsive": { "document_width": { @@ -154714,7 +155210,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 453 + "value": 471 }, "RESPONSIVE": { "score": 1, @@ -154801,7 +155297,7 @@ ], "title": "Bündnis 90/Die Grünen – Stadtverband Gießen" }, - "duration": 225, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -154850,7 +155346,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 225 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -154890,9 +155386,9 @@ "resolved_hostname": "www.buendnisgruenes-opr.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.buendnisgruenes-opr.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -154934,7 +155430,7 @@ "opengraph": null, "title": "KV Ostprignitz-Ruppin: Home" }, - "duration": 230, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -154982,7 +155478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -155010,7 +155506,7 @@ "hostnames": { "facebook.com": { "ip_addresses": [ - "157.240.20.35" + "31.13.92.36" ], "resolvable": true, "resolved_hostname": "facebook.com" @@ -155019,11 +155515,11 @@ "resolvable": false } }, - "icons": [ - "2c77da304308884f973dc578f33f22f3.ico" - ], + "icons": { + "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico": "2c77da304308884f973dc578f33f22f3.ico" + }, "ipv4_addresses": [ - "157.240.20.35" + "31.13.92.36" ], "resolvable_urls": [ { @@ -155056,7 +155552,7 @@ ], "title": "Facebook – Anmelden oder Registrieren" }, - "duration": 233, + "duration": 295, "error": null, "responsive": { "document_width": { @@ -155085,7 +155581,7 @@ ], "title": "Facebook – Anmelden oder Registrieren" }, - "duration": 253, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -155133,7 +155629,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 243 + "value": 294 }, "RESPONSIVE": { "score": 0, @@ -155179,9 +155675,10 @@ "resolved_hostname": "www.fgl-forchheim.de" } }, - "icons": [ - "8894791e84f5cafebd47311d14a3703c.ico" - ], + "icons": { + "https://fgl-forchheim.de/templates/jp-galeria/favicon.ico": "8894791e84f5cafebd47311d14a3703c.ico", + "https://www.fgl-forchheim.de/templates/jp-galeria/favicon.ico": "8894791e84f5cafebd47311d14a3703c.ico" + }, "ipv4_addresses": [ "109.237.140.46" ], @@ -155234,7 +155731,7 @@ ], "title": "STARK SEIN||Home" }, - "duration": 407, + "duration": 350, "error": null, "responsive": { "document_width": { @@ -155268,7 +155765,7 @@ ], "title": "STARK SEIN||Home" }, - "duration": 338, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -155316,7 +155813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 372 + "value": 356 }, "RESPONSIVE": { "score": 1, @@ -155356,9 +155853,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gbl-hemsbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gbl-hemsbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -155390,7 +155888,7 @@ "opengraph": null, "title": "GBL Hemsbach: GBL-Hemsbach" }, - "duration": 626, + "duration": 503, "error": null, "responsive": { "document_width": { @@ -155413,7 +155911,7 @@ "opengraph": null, "title": "GBL Hemsbach: GBL-Hemsbach" }, - "duration": 429, + "duration": 570, "error": null, "responsive": { "document_width": { @@ -155462,7 +155960,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 528 + "value": 536 }, "RESPONSIVE": { "score": 1, @@ -155549,7 +156047,7 @@ ], "title": "Kreisverband Groß-Gerau" }, - "duration": 808, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -155598,7 +156096,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 808 + "value": 443 }, "RESPONSIVE": { "score": 1, @@ -155638,9 +156136,9 @@ "resolved_hostname": "www.gruene-ahrensburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ahrensburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -155682,7 +156180,7 @@ "opengraph": null, "title": "Ortsverband Ahrensburg: Home" }, - "duration": 205, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -155730,7 +156228,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -155770,6 +156268,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "5.175.28.195" ], @@ -155798,7 +156297,7 @@ "opengraph": null, "title": "Grüne Aidlingen: HOME" }, - "duration": 353, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -155855,9 +156354,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -155871,7 +156369,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 386 + "value": 383 }, "RESPONSIVE": { "score": 0, @@ -155888,7 +156386,7 @@ "value": false } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -155912,6 +156410,7 @@ "resolved_hostname": "www.gruene-altenstadt.de" } }, + "icons": {}, "ipv4_addresses": [ "104.253.224.14" ], @@ -155956,7 +156455,7 @@ "opengraph": null, "title": "aktuelle Röcke für,hosen männer,business hosen damen" }, - "duration": 436, + "duration": 173, "error": null, "responsive": { "document_width": { @@ -155989,9 +156488,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -156006,7 +156504,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 436 + "value": 173 }, "RESPONSIVE": { "score": 0, @@ -156022,7 +156520,7 @@ "value": true } }, - "score": 4.5 + "score": 5.5 }, { "details": { @@ -156048,9 +156546,9 @@ "resolvable": false } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-alzenau.de/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "81.169.145.73" ], @@ -156086,7 +156584,7 @@ "opengraph": null, "title": "Start" }, - "duration": 57, + "duration": 876, "error": null, "responsive": { "document_width": { @@ -156131,9 +156629,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 57 + "value": 876 }, "RESPONSIVE": { "score": 1, @@ -156150,7 +156648,7 @@ "value": false } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -156174,9 +156672,9 @@ "resolved_hostname": "www.gruene-aoe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-aoe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156218,7 +156716,7 @@ "opengraph": null, "title": "Kreisverband Altötting: Aktuelles" }, - "duration": 194, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -156266,7 +156764,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -156343,7 +156841,7 @@ "opengraph": null, "title": "Aktuelles" }, - "duration": 647, + "duration": 394, "error": null, "responsive": { "document_width": { @@ -156391,7 +156889,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 647 + "value": 394 }, "RESPONSIVE": { "score": 1, @@ -156432,9 +156930,9 @@ "resolved_hostname": "www.gruene-bad-driburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-driburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156476,7 +156974,7 @@ "opengraph": null, "title": "GRÜNE Driburg: Driburg aktuell" }, - "duration": 230, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -156524,7 +157022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 230 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -156564,9 +157062,9 @@ "resolved_hostname": "www.gruene-bad-oldesloe.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-oldesloe.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156608,7 +157106,7 @@ "opengraph": null, "title": "Die Grünen Bad Oldesloe: Aktuelles" }, - "duration": 173, + "duration": 167, "error": null, "responsive": { "document_width": { @@ -156656,7 +157154,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 173 + "value": 167 }, "RESPONSIVE": { "score": 1, @@ -156742,7 +157240,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Bad Schwalbach" }, - "duration": 201, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -156791,7 +157289,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -156831,9 +157329,9 @@ "resolved_hostname": "www.gruene-bad-wildungen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bad-wildungen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -156875,7 +157373,7 @@ "opengraph": null, "title": "Die GRÜNE Seite BW: Zuhauseseite" }, - "duration": 192, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -156923,7 +157421,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -156963,9 +157461,9 @@ "resolved_hostname": "www.gruene-bargteheide.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bargteheide.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157007,7 +157505,7 @@ "opengraph": null, "title": "Ortsverband Bargteheide: Home" }, - "duration": 200, + "duration": 277, "error": null, "responsive": { "document_width": { @@ -157055,7 +157553,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 200 + "value": 277 }, "RESPONSIVE": { "score": 1, @@ -157095,9 +157593,9 @@ "resolved_hostname": "www.gruene-bayreuth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bayreuth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157139,7 +157637,7 @@ "opengraph": null, "title": "Grüne Bayreuth: Kreisverband Bayreuth-Stadt" }, - "duration": 194, + "duration": 211, "error": null, "responsive": { "document_width": { @@ -157187,7 +157685,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 211 }, "RESPONSIVE": { "score": 1, @@ -157227,9 +157725,9 @@ "resolved_hostname": "www.gruene-bb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157271,7 +157769,7 @@ "opengraph": null, "title": "Böblingen/Schönbuch: Startseite" }, - "duration": 199, + "duration": 219, "error": null, "responsive": { "document_width": { @@ -157319,7 +157817,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 219 }, "RESPONSIVE": { "score": 1, @@ -157359,9 +157857,9 @@ "resolved_hostname": "www.gruene-beelitz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-beelitz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157403,7 +157901,7 @@ "opengraph": null, "title": "Basisverband Beelitz: Politik mit Biss" }, - "duration": 162, + "duration": 189, "error": null, "responsive": { "document_width": { @@ -157451,7 +157949,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 189 }, "RESPONSIVE": { "score": 1, @@ -157491,9 +157989,9 @@ "resolved_hostname": "www.gruene-bergstrasse.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-bergstrasse.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -157535,7 +158033,7 @@ "opengraph": null, "title": "Grüne Bergstraße: Aktuell" }, - "duration": 209, + "duration": 231, "error": null, "responsive": { "document_width": { @@ -157583,7 +158081,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 231 }, "RESPONSIVE": { "score": 1, @@ -157623,9 +158121,9 @@ "resolved_hostname": "www.gruene-bgl.de" } }, - "icons": [ - "bf7518d64fd14654a17fbdbd168419dd.ico" - ], + "icons": { + "https://www.gruene-bgl.de/fileadmin/gruene/template/grafix/favicon_gruene.ico": "bf7518d64fd14654a17fbdbd168419dd.ico" + }, "ipv4_addresses": [ "134.119.253.53" ], @@ -157666,7 +158164,7 @@ ], "title": "Die Grünen: Kreisverband Berchtesgadener Land" }, - "duration": 406, + "duration": 366, "error": null, "responsive": { "document_width": { @@ -157714,7 +158212,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 406 + "value": 366 }, "RESPONSIVE": { "score": 0, @@ -157755,9 +158253,10 @@ "resolved_hostname": "www.gruene-bodenseekreis.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -157799,7 +158298,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 488, + "duration": 507, "error": null, "responsive": { "document_width": { @@ -157822,7 +158321,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 329, + "duration": 958, "error": null, "responsive": { "document_width": { @@ -157871,7 +158370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 408 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -157912,9 +158411,10 @@ "resolved_hostname": "www.gruene-bodenseekreis.de" } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-bodenseekreis.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -157956,7 +158456,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 482, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -157979,7 +158479,7 @@ "opengraph": null, "title": "Grüner Kreisverband Bodenseekreis: Aktuelles" }, - "duration": 865, + "duration": 676, "error": null, "responsive": { "document_width": { @@ -158028,7 +158528,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 478 }, "RESPONSIVE": { "score": 1, @@ -158068,9 +158568,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-boeblingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-boeblingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158102,7 +158603,7 @@ "opengraph": null, "title": "Grüne Kreisverband Böblingen: Kreisverband Böblingen" }, - "duration": 476, + "duration": 428, "error": null, "responsive": { "document_width": { @@ -158125,7 +158626,7 @@ "opengraph": null, "title": "Grüne Kreisverband Böblingen: Kreisverband Böblingen" }, - "duration": 388, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -158174,7 +158675,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 432 + "value": 305 }, "RESPONSIVE": { "score": 1, @@ -158214,9 +158715,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bottwartal.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158248,7 +158749,7 @@ "opengraph": null, "title": "Grüne Bottwartal: Aktuelles" }, - "duration": 588, + "duration": 654, "error": null, "responsive": { "document_width": { @@ -158296,7 +158797,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 588 + "value": 654 }, "RESPONSIVE": { "score": 1, @@ -158383,7 +158884,7 @@ ], "title": "Stadtverband Bündnis 90/Die Grünen Braunfels" }, - "duration": 197, + "duration": 199, "error": null, "responsive": { "document_width": { @@ -158432,7 +158933,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 197 + "value": 199 }, "RESPONSIVE": { "score": 1, @@ -158471,9 +158972,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-bretten.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -158502,7 +159003,7 @@ "opengraph": null, "title": "Grüne Bretten: Home" }, - "duration": 514, + "duration": 581, "error": null, "responsive": { "document_width": { @@ -158550,7 +159051,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 514 + "value": 581 }, "RESPONSIVE": { "score": 0, @@ -158591,9 +159092,9 @@ "resolved_hostname": "www.gruene-btw-landshut.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-btw-landshut.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -158635,7 +159136,7 @@ "opengraph": null, "title": "KV Landshut - Stadt: Willkommen bei den Landshuter Grünen" }, - "duration": 201, + "duration": 332, "error": null, "responsive": { "document_width": { @@ -158683,7 +159184,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 332 }, "RESPONSIVE": { "score": 1, @@ -158722,9 +159223,9 @@ "resolvable": false } }, - "icons": [ - "1194d7d32448e1f90741a97b42af91fa.ico" - ], + "icons": { + "https://gruene-buedingen.de/templates/beez3/favicon.ico": "1194d7d32448e1f90741a97b42af91fa.ico" + }, "ipv4_addresses": [ "81.169.145.78" ], @@ -158756,7 +159257,7 @@ "opengraph": null, "title": "Home - Bündnis 90 / Die Grünen Büdingen" }, - "duration": 316, + "duration": 347, "error": null, "responsive": { "document_width": { @@ -158804,7 +159305,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 316 + "value": 347 }, "RESPONSIVE": { "score": 1, @@ -158891,7 +159392,7 @@ ], "title": "Bündnis 90 / Die Grünen Ortsverband Butzbach" }, - "duration": 651, + "duration": 406, "error": null, "responsive": { "document_width": { @@ -158940,7 +159441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 651 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -158980,9 +159481,9 @@ "resolved_hostname": "www.gruene-celle.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-celle.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159024,7 +159525,7 @@ "opengraph": null, "title": "Kreisverband Celle: Home" }, - "duration": 209, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -159072,7 +159573,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -159112,9 +159613,9 @@ "resolved_hostname": "www.gruene-cottbus.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-cottbus.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159156,7 +159657,7 @@ "opengraph": null, "title": "KREISVERBAND COTTBUS: Home" }, - "duration": 198, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -159204,7 +159705,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -159290,7 +159791,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Kreisverband Darmstadt-Dieburg" }, - "duration": 263, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -159339,7 +159840,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 263 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -159379,9 +159880,9 @@ "resolved_hostname": "www.gruene-dahme-spreewald.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-dahme-spreewald.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159423,7 +159924,7 @@ "opengraph": null, "title": "KV Dahme-Spreewald: Aktuelles" }, - "duration": 198, + "duration": 222, "error": null, "responsive": { "document_width": { @@ -159471,7 +159972,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -159557,7 +160058,7 @@ ], "title": "Bündnis 90/Die Grünen Stadtverband Dillenburg" }, - "duration": 208, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -159606,7 +160107,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -159647,9 +160148,10 @@ "resolved_hostname": "www.gruene-dillingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-dillingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico", + "https://www.gruene-dillingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -159691,7 +160193,7 @@ "opengraph": null, "title": "Kreisverband Dillingen: Startseite" }, - "duration": 195, + "duration": 235, "error": null, "responsive": { "document_width": { @@ -159714,7 +160216,7 @@ "opengraph": null, "title": "Kreisverband Dillingen: Startseite" }, - "duration": 196, + "duration": 229, "error": null, "responsive": { "document_width": { @@ -159763,7 +160265,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -159802,9 +160304,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-ditzingen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -159833,7 +160335,7 @@ "opengraph": null, "title": "Die Grünen in Ditzingen: Ortsverband Ditzingen" }, - "duration": 604, + "duration": 720, "error": null, "responsive": { "document_width": { @@ -159881,7 +160383,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 604 + "value": 720 }, "RESPONSIVE": { "score": 0, @@ -159922,9 +160424,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-dossenheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-dossenheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -159956,7 +160459,7 @@ "opengraph": null, "title": "Grüne Dossenheim: Ortsverband Dossenheim" }, - "duration": 601, + "duration": 577, "error": null, "responsive": { "document_width": { @@ -159979,7 +160482,7 @@ "opengraph": null, "title": "Grüne Dossenheim: Ortsverband Dossenheim" }, - "duration": 346, + "duration": 686, "error": null, "responsive": { "document_width": { @@ -160028,7 +160531,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 474 + "value": 632 }, "RESPONSIVE": { "score": 1, @@ -160115,7 +160618,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Dreieich" }, - "duration": 273, + "duration": 210, "error": null, "responsive": { "document_width": { @@ -160164,7 +160667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 210 }, "RESPONSIVE": { "score": 1, @@ -160204,9 +160707,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-edingen-neckarhausen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-edingen-neckarhausen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -160238,7 +160742,7 @@ "opengraph": null, "title": "Grüne Edingen-Neckarhausen: HOME" }, - "duration": 551, + "duration": 594, "error": null, "responsive": { "document_width": { @@ -160261,7 +160765,7 @@ "opengraph": null, "title": "Grüne Edingen-Neckarhausen: HOME" }, - "duration": 798, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -160310,7 +160814,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 674 + "value": 621 }, "RESPONSIVE": { "score": 1, @@ -160351,9 +160855,9 @@ "resolved_hostname": "www.gruene-eichstaett.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-eichstaett.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160395,7 +160899,7 @@ "opengraph": null, "title": "Kreisverband Eichstätt: Home" }, - "duration": 165, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -160443,7 +160947,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -160483,9 +160987,9 @@ "resolved_hostname": "www.gruene-erding.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erding.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160527,7 +161031,7 @@ "opengraph": null, "title": "Kreisverband Erding: AKTUELLES" }, - "duration": 203, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -160575,7 +161079,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -160614,9 +161118,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-erdmannhausen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -160648,7 +161152,7 @@ "opengraph": null, "title": "Grüne OV Erdmannhausen: gruene-erdmannhausen.de" }, - "duration": 443, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -160696,7 +161200,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 443 + "value": 616 }, "RESPONSIVE": { "score": 1, @@ -160737,9 +161241,9 @@ "resolved_hostname": "www.gruene-erlangen-land.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-erlangen-land.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -160781,7 +161285,7 @@ "opengraph": null, "title": "Erlangen-Land: Home" }, - "duration": 195, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -160829,7 +161333,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 208 }, "RESPONSIVE": { "score": 0, @@ -160873,9 +161377,9 @@ "resolved_hostname": "www.gruene-euskirchen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-euskirchen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.152.41" ], @@ -160927,7 +161431,7 @@ ], "title": "Bündnis 90/Die Grünen KV Euskirchen" }, - "duration": 504, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -160974,7 +161478,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 504 + "value": 578 }, "RESPONSIVE": { "score": 1, @@ -161013,9 +161517,7 @@ "resolvable": false } }, - "icons": [ - null - ], + "icons": {}, "ipv4_addresses": [ "193.141.3.69" ], @@ -161044,7 +161546,7 @@ "opengraph": null, "title": "Die Grünen in Fellbach - public" }, - "duration": 156, + "duration": 195, "error": null, "responsive": { "document_width": { @@ -161092,7 +161594,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 156 + "value": 195 }, "RESPONSIVE": { "score": 0, @@ -161133,9 +161635,9 @@ "resolved_hostname": "www.gruene-frankenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frankenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161177,7 +161679,7 @@ "opengraph": null, "title": "Ortsverband Frankenberg: Startseite" }, - "duration": 185, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -161225,7 +161727,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 185 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -161265,9 +161767,9 @@ "resolved_hostname": "www.gruene-frankfurt-oder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frankfurt-oder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161309,7 +161811,7 @@ "opengraph": null, "title": "Frankfurt (Oder): Start" }, - "duration": 186, + "duration": 228, "error": null, "responsive": { "document_width": { @@ -161357,7 +161859,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 228 }, "RESPONSIVE": { "score": 1, @@ -161398,9 +161900,10 @@ "resolved_hostname": "www.gruene-freigericht.de" } }, - "icons": [ - "1a345584649d5ec47d61b6f0b73a869d.ico" - ], + "icons": { + "https://gruene-freigericht.de/image/index.ico": "1a345584649d5ec47d61b6f0b73a869d.ico", + "https://www.gruene-freigericht.de/image/index.ico": "1a345584649d5ec47d61b6f0b73a869d.ico" + }, "ipv4_addresses": [ "89.107.70.244" ], @@ -161427,7 +161930,7 @@ } ], "responsive": { - "min_width": 382 + "min_width": 1043 }, "urlchecks": [ { @@ -161439,7 +161942,7 @@ "opengraph": null, "title": "Gruene Freigericht" }, - "duration": 128, + "duration": 120, "error": null, "responsive": { "document_width": { @@ -161462,14 +161965,14 @@ "opengraph": null, "title": "Gruene Freigericht" }, - "duration": 133, + "duration": 108, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1043, "1920x1080": 1920, - "320x480": 382, - "768x1024": 768 + "320x480": 1043, + "768x1024": 1043 }, "viewport_meta_tag": null }, @@ -161511,7 +162014,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 130 + "value": 114 }, "RESPONSIVE": { "score": 0, @@ -161551,9 +162054,9 @@ "resolved_hostname": "www.gruene-frg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-frg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161595,7 +162098,7 @@ "opengraph": null, "title": "Freyung-Grafenau: AnsprechpartnerInnen" }, - "duration": 192, + "duration": 296, "error": null, "responsive": { "document_width": { @@ -161643,7 +162146,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 296 }, "RESPONSIVE": { "score": 1, @@ -161796,9 +162299,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-gerlingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -161830,7 +162333,7 @@ "opengraph": null, "title": "Grüne Gerlingen: gruene-gerlingen.de" }, - "duration": 436, + "duration": 534, "error": null, "responsive": { "document_width": { @@ -161878,7 +162381,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 436 + "value": 534 }, "RESPONSIVE": { "score": 1, @@ -161919,9 +162422,9 @@ "resolved_hostname": "www.gruene-germering.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-germering.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -161963,7 +162466,7 @@ "opengraph": null, "title": "Ortsverband GERMERING: Home" }, - "duration": 266, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -162011,7 +162514,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 266 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -162055,9 +162558,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162114,7 +162617,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 931, + "duration": 10, "error": null, "responsive": { "document_width": { @@ -162159,9 +162662,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0.5, + "score": 1, "type": "number", - "value": 931 + "value": 10 }, "RESPONSIVE": { "score": 1, @@ -162177,7 +162680,7 @@ "value": true } }, - "score": 9.5 + "score": 10.0 }, { "details": { @@ -162205,9 +162708,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162264,7 +162767,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 617, + "duration": 732, "error": null, "responsive": { "document_width": { @@ -162311,7 +162814,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 617 + "value": 732 }, "RESPONSIVE": { "score": 1, @@ -162355,9 +162858,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162414,7 +162917,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 806, + "duration": 138, "error": null, "responsive": { "document_width": { @@ -162461,7 +162964,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 806 + "value": 138 }, "RESPONSIVE": { "score": 1, @@ -162505,9 +163008,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162564,7 +163067,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 654, + "duration": 782, "error": null, "responsive": { "document_width": { @@ -162611,7 +163114,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 654 + "value": 782 }, "RESPONSIVE": { "score": 1, @@ -162655,9 +163158,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162714,7 +163217,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 665, + "duration": 661, "error": null, "responsive": { "document_width": { @@ -162761,7 +163264,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 665 + "value": 661 }, "RESPONSIVE": { "score": 1, @@ -162805,9 +163308,9 @@ "resolved_hostname": "www.gruene-gifhorn.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-gifhorn.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "95.128.201.84" ], @@ -162864,7 +163367,7 @@ ], "title": "GRÜNE im Landkreis Gifhorn - Kommunalpolitik + EHRLICH + OFFEN + KOMPETENTGRÜNE im Landkreis Gifhorn" }, - "duration": 753, + "duration": 740, "error": null, "responsive": { "document_width": { @@ -162911,7 +163414,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 753 + "value": 740 }, "RESPONSIVE": { "score": 1, @@ -162950,6 +163453,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "81.169.145.66" ], @@ -162978,7 +163482,7 @@ "opengraph": null, "title": "Bündnis 90/Die Grünen Graben-Neudorf" }, - "duration": 124, + "duration": 132, "error": null, "responsive": { "document_width": { @@ -163011,9 +163515,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -163027,7 +163530,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 124 + "value": 132 }, "RESPONSIVE": { "score": 0, @@ -163044,7 +163547,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -163068,9 +163571,9 @@ "resolved_hostname": "www.gruene-groebenzell.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-groebenzell.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163112,7 +163615,7 @@ "opengraph": null, "title": "Ortsverband Gröbenzell: Home" }, - "duration": 231, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -163160,7 +163663,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 231 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -163200,9 +163703,9 @@ "resolved_hostname": "www.gruene-grosshansdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-grosshansdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163244,7 +163747,7 @@ "opengraph": null, "title": "Ortsverband Großhansdorf: Home" }, - "duration": 191, + "duration": 284, "error": null, "responsive": { "document_width": { @@ -163292,7 +163795,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 284 }, "RESPONSIVE": { "score": 1, @@ -163336,9 +163839,9 @@ "resolved_hostname": "www.gruene-hamburg.de" } }, - "icons": [ - "2b4be9b11156199e96acb71392cc14ce.png" - ], + "icons": { + "https://www.gruene-hamburg.de/wp-content/themes/Joseph-knows-best-master/favicon.png": "2b4be9b11156199e96acb71392cc14ce.png" + }, "ipv4_addresses": [ "188.94.25.87" ], @@ -163395,11 +163898,11 @@ ], "title": "Startseite - Grüne Hamburg" }, - "duration": 530, + "duration": 571, "error": null, "responsive": { "document_width": { - "1024x768": 1024, + "1024x768": 1076, "1920x1080": 1920, "320x480": 320, "768x1024": 768 @@ -163442,7 +163945,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 530 + "value": 571 }, "RESPONSIVE": { "score": 1, @@ -163482,9 +163985,9 @@ "resolved_hostname": "www.gruene-havelland.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-havelland.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163526,7 +164029,7 @@ "opengraph": null, "title": "Kreisverband Havelland: Startseite" }, - "duration": 196, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -163574,7 +164077,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -163614,9 +164117,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-heilbronn.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-heilbronn.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -163648,7 +164152,7 @@ "opengraph": null, "title": "Grüne Heilbronn: Kreisverband Heilbronn" }, - "duration": 471, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -163671,7 +164175,7 @@ "opengraph": null, "title": "Grüne Heilbronn: Kreisverband Heilbronn" }, - "duration": 449, + "duration": 45, "error": null, "responsive": { "document_width": { @@ -163720,7 +164224,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 460 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -163761,9 +164265,9 @@ "resolved_hostname": "www.gruene-herrenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-herrenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -163805,7 +164309,7 @@ "opengraph": null, "title": "OV Herrenberg und Gäu: Aktuelles" }, - "duration": 206, + "duration": 200, "error": null, "responsive": { "document_width": { @@ -163853,7 +164357,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 206 + "value": 200 }, "RESPONSIVE": { "score": 1, @@ -163889,6 +164393,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "52.210.189.158" ], @@ -163928,7 +164433,7 @@ ], "title": "Herzlich Willkommen auf den Seiten der GRÜNEN - Höchst im Odenwald - gruene-hoechsts Jimdo-Page!" }, - "duration": 258, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -163961,9 +164466,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -163977,7 +164481,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 258 + "value": 312 }, "RESPONSIVE": { "score": 0, @@ -163994,7 +164498,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -164018,9 +164522,9 @@ "resolved_hostname": "www.gruene-huettenberg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-huettenberg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -164062,7 +164566,7 @@ "opengraph": null, "title": "Ortsverband Hüttenberg: Home" }, - "duration": 207, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -164110,7 +164614,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -164153,9 +164657,9 @@ "resolved_hostname": "www.gruene-iserlohn.de" } }, - "icons": [ - "d755fb5c537e96bb5380bd3775dc1113.ico" - ], + "icons": { + "https://www.gruene-iserlohn.de/fileadmin/favicon.ico": "d755fb5c537e96bb5380bd3775dc1113.ico" + }, "ipv4_addresses": [ "85.13.151.44" ], @@ -164208,7 +164712,7 @@ ], "title": "Aktuelles - BÜNDNIS 90/DIE GRÜNEN Iserlohn" }, - "duration": 280, + "duration": 393, "error": null, "responsive": { "document_width": { @@ -164255,7 +164759,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 280 + "value": 393 }, "RESPONSIVE": { "score": 1, @@ -164297,9 +164801,9 @@ "resolvable": false } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-kahl.de/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "81.169.145.172" ], @@ -164335,7 +164839,7 @@ "opengraph": null, "title": "Startseite" }, - "duration": 357, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -164382,7 +164886,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 357 + "value": 648 }, "RESPONSIVE": { "score": 1, @@ -164462,7 +164966,7 @@ "opengraph": null, "title": null }, - "duration": 175, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -164485,7 +164989,7 @@ "opengraph": null, "title": null }, - "duration": 210, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -164535,7 +165039,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 204 }, "RESPONSIVE": { "score": 0, @@ -164633,7 +165137,7 @@ "opengraph": null, "title": "BÜNDNIS 90/DIE GRÜNEN Ortsverband Kevelaer – Wir Grünen in Kevelaer" }, - "duration": 324, + "duration": 358, "error": null, "responsive": { "document_width": { @@ -164682,7 +165186,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 324 + "value": 358 }, "RESPONSIVE": { "score": 1, @@ -164722,9 +165226,9 @@ "resolved_hostname": "www.gruene-kg.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-kg.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "176.28.23.241" ], @@ -164769,7 +165273,7 @@ "opengraph": null, "title": "BÜNDIS 90/DIE GRÜNEN Bad Kissingen: Die Grünen in Landkreis Bad Kissingen" }, - "duration": 145, + "duration": 243, "error": null, "responsive": { "document_width": { @@ -164817,7 +165321,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 145 + "value": 243 }, "RESPONSIVE": { "score": 1, @@ -164861,9 +165365,9 @@ "resolved_hostname": "www.gruene-kierspe.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-kierspe.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "85.13.144.100" ], @@ -164915,7 +165419,7 @@ ], "title": "BÜNDNIS 90 / DIE GRÜNEN Kierspe" }, - "duration": 751, + "duration": 800, "error": null, "responsive": { "document_width": { @@ -164962,7 +165466,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 751 + "value": 800 }, "RESPONSIVE": { "score": 1, @@ -165002,9 +165506,9 @@ "resolved_hostname": "www.gruene-kitzingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kitzingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165046,7 +165550,7 @@ "opengraph": null, "title": "Kreisverband Kitzingen: Home" }, - "duration": 228, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -165094,7 +165598,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -165134,9 +165638,9 @@ "resolved_hostname": "www.gruene-kleinmachnow.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kleinmachnow.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165178,7 +165682,7 @@ "opengraph": null, "title": "Grüne Kleinmachnow: Home" }, - "duration": 208, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -165226,7 +165730,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 208 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -165312,7 +165816,7 @@ ], "title": "Bündnis 90/Die Grünen – Ortsverband Königstein" }, - "duration": 667, + "duration": 532, "error": null, "responsive": { "document_width": { @@ -165361,7 +165865,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 667 + "value": 532 }, "RESPONSIVE": { "score": 1, @@ -165447,7 +165951,7 @@ ], "title": "Bündnis 90/Die Grünen Korbach" }, - "duration": 469, + "duration": 528, "error": null, "responsive": { "document_width": { @@ -165496,7 +166000,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 528 }, "RESPONSIVE": { "score": 1, @@ -165535,9 +166039,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-korntal-muenchingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -165569,7 +166073,7 @@ "opengraph": null, "title": "Grüne OV Korntal-Münchingen: gruene-korntal-münchingen.de" }, - "duration": 658, + "duration": 562, "error": null, "responsive": { "document_width": { @@ -165617,7 +166121,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 658 + "value": 562 }, "RESPONSIVE": { "score": 1, @@ -165657,9 +166161,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-kreis-calw.de/fileadmin/KV2015/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -165691,7 +166195,7 @@ "opengraph": null, "title": "Grüne Calw: Aktuelles" }, - "duration": 587, + "duration": 963, "error": null, "responsive": { "document_width": { @@ -165739,7 +166243,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 587 + "value": 963 }, "RESPONSIVE": { "score": 1, @@ -165807,7 +166311,7 @@ "opengraph": null, "title": "Die Grünen-Kronach" }, - "duration": 127, + "duration": 126, "error": null, "responsive": { "document_width": { @@ -165856,7 +166360,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 127 + "value": 126 }, "RESPONSIVE": { "score": 0, @@ -165897,9 +166401,9 @@ "resolved_hostname": "www.gruene-kulmbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-kulmbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -165941,7 +166445,7 @@ "opengraph": null, "title": "Kreisverband Kulmbach: Home" }, - "duration": 201, + "duration": 237, "error": null, "responsive": { "document_width": { @@ -165989,7 +166493,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 237 }, "RESPONSIVE": { "score": 0, @@ -166028,9 +166532,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-ladenburg.de/fileadmin/KV2014/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166047,7 +166551,7 @@ } ], "responsive": { - "min_width": 320, + "min_width": 340, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -166062,14 +166566,14 @@ "opengraph": null, "title": "Grüne Ladenburg: Start" }, - "duration": 481, + "duration": 787, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 320, - "768x1024": 768 + "320x480": 340, + "768x1024": 902 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -166110,7 +166614,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 481 + "value": 787 }, "RESPONSIVE": { "score": 1, @@ -166151,9 +166655,9 @@ "resolved_hostname": "www.gruene-lahn-dill.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lahn-dill.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166195,7 +166699,7 @@ "opengraph": null, "title": "Kreisverband Lahn-Dill: Home" }, - "duration": 220, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -166243,7 +166747,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 220 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -166283,9 +166787,9 @@ "resolved_hostname": "www.gruene-lampertheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lampertheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166327,7 +166831,7 @@ "opengraph": null, "title": "Grüne Lampertheim: Startseite" }, - "duration": 196, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -166375,7 +166879,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 191 }, "RESPONSIVE": { "score": 0, @@ -166458,7 +166962,7 @@ ], "title": "Bündnis 90/ Die Grünen Ortsverband Langen" }, - "duration": 511, + "duration": 445, "error": null, "responsive": { "document_width": { @@ -166507,7 +167011,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 511 + "value": 445 }, "RESPONSIVE": { "score": 0, @@ -166546,9 +167050,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-lauffen.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166580,7 +167084,7 @@ "opengraph": null, "title": "Grüne OV Lauffen: HOME" }, - "duration": 492, + "duration": 503, "error": null, "responsive": { "document_width": { @@ -166628,7 +167132,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 492 + "value": 503 }, "RESPONSIVE": { "score": 1, @@ -166669,9 +167173,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-leimen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-leimen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166703,7 +167208,7 @@ "opengraph": null, "title": "Ortsverband Leimen: Ortsverband Leimen" }, - "duration": 159, + "duration": 140, "error": null, "responsive": { "document_width": { @@ -166726,7 +167231,7 @@ "opengraph": null, "title": "Ortsverband Leimen: Ortsverband Leimen" }, - "duration": 812, + "duration": 971, "error": null, "responsive": { "document_width": { @@ -166775,7 +167280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 486 + "value": 556 }, "RESPONSIVE": { "score": 1, @@ -166815,9 +167320,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-leingarten.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -166846,7 +167351,7 @@ "opengraph": null, "title": "KV Oberseite: Home" }, - "duration": 648, + "duration": 712, "error": null, "responsive": { "document_width": { @@ -166894,7 +167399,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 648 + "value": 712 }, "RESPONSIVE": { "score": 0, @@ -166935,9 +167440,9 @@ "resolved_hostname": "www.gruene-leipzig.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-leipzig.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -166979,7 +167484,7 @@ "opengraph": null, "title": "Kreisverband Leipzig: Startseite" }, - "duration": 209, + "duration": 241, "error": null, "responsive": { "document_width": { @@ -167027,7 +167532,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 241 }, "RESPONSIVE": { "score": 1, @@ -167067,9 +167572,9 @@ "resolved_hostname": "www.gruene-lemgo.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-lemgo.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -167111,7 +167616,7 @@ "opengraph": null, "title": "Ortsverband Lemgo: Home" }, - "duration": 199, + "duration": 217, "error": null, "responsive": { "document_width": { @@ -167159,7 +167664,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 217 }, "RESPONSIVE": { "score": 1, @@ -167204,9 +167709,9 @@ "resolved_hostname": "www.gruene-leopoldshoehe.de" } }, - "icons": [ - "694f7df47d355683105b4d59bbaa4b37.ico" - ], + "icons": { + "https://www.gruene-leopoldshoehe.de/wp-content/uploads/favicon.ico": "694f7df47d355683105b4d59bbaa4b37.ico" + }, "ipv4_addresses": [ "217.160.0.166" ], @@ -167252,7 +167757,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – OV Leo | Ortsverband Leopoldshöhe" }, - "duration": 761, + "duration": 737, "error": null, "responsive": { "document_width": { @@ -167279,7 +167784,7 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen – OV Leo | Ortsverband Leopoldshöhe" }, - "duration": 758, + "duration": 808, "error": null, "responsive": { "document_width": { @@ -167327,7 +167832,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 760 + "value": 772 }, "RESPONSIVE": { "score": 1, @@ -167363,9 +167868,9 @@ "resolvable": false } }, - "icons": [ - "78f719ae961451e9ad3347283e98daee.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/sc1e5371276d5e783/img/favicon.png?t=1455035012": "78f719ae961451e9ad3347283e98daee.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -167408,7 +167913,7 @@ ], "title": "Gruene-Lichtenfels - gruene-lichtenfels-hessen" }, - "duration": 282, + "duration": 377, "error": null, "responsive": { "document_width": { @@ -167456,7 +167961,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 282 + "value": 377 }, "RESPONSIVE": { "score": 1, @@ -167502,9 +168007,9 @@ "resolved_hostname": "www.gruene-limburg-weilburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-limburg-weilburg.de/cms/wp-content/themes/urwahl3001/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.97" ], @@ -167557,7 +168062,7 @@ ], "title": "Bündnis 90/Die Grünen" }, - "duration": 535, + "duration": 676, "error": null, "responsive": { "document_width": { @@ -167604,7 +168109,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 535 + "value": 676 }, "RESPONSIVE": { "score": 1, @@ -167651,9 +168156,10 @@ "resolved_hostname": "www.gruene-limburg.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-limburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-limburg.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.100" ], @@ -167705,7 +168211,7 @@ ], "title": "Bündnis 90/Die Grünen Limburg" }, - "duration": 779, + "duration": 730, "error": null, "responsive": { "document_width": { @@ -167738,7 +168244,7 @@ ], "title": "Bündnis 90/Die Grünen Limburg" }, - "duration": 847, + "duration": 826, "error": null, "responsive": { "document_width": { @@ -167786,7 +168292,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 813 + "value": 778 }, "RESPONSIVE": { "score": 1, @@ -167825,9 +168331,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-ludwigsburg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -167859,7 +168365,7 @@ "opengraph": null, "title": "Grüne KV Ludwigsburg: Grüne KV Ludwigsburg" }, - "duration": 465, + "duration": 560, "error": null, "responsive": { "document_width": { @@ -167907,7 +168413,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 465 + "value": 560 }, "RESPONSIVE": { "score": 1, @@ -167952,9 +168458,9 @@ "resolved_hostname": "www.gruene-mainz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-mainz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.136.92.237" ], @@ -168006,11 +168512,11 @@ ], "title": "Grüne Mainz" }, - "duration": 296, + "duration": 275, "error": null, "responsive": { "document_width": { - "1024x768": 1069, + "1024x768": 1024, "1920x1080": 1920, "320x480": 455, "768x1024": 768 @@ -168053,7 +168559,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 296 + "value": 275 }, "RESPONSIVE": { "score": 1, @@ -168096,9 +168602,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://xn--grne-maisach-elb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.66" ], @@ -168138,7 +168644,7 @@ ], "title": "Grüne Maisach" }, - "duration": 268, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -168185,7 +168691,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 268 + "value": 273 }, "RESPONSIVE": { "score": 0, @@ -168225,9 +168731,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-marbach.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -168259,7 +168765,7 @@ "opengraph": null, "title": "Grüne OV Marbach am Neckar: gruene-marbach.de" }, - "duration": 505, + "duration": 565, "error": null, "responsive": { "document_width": { @@ -168307,7 +168813,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 505 + "value": 565 }, "RESPONSIVE": { "score": 1, @@ -168348,9 +168854,9 @@ "resolved_hostname": "www.gruene-marburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-marburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168377,7 +168883,7 @@ } ], "responsive": { - "min_width": 324, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -168392,13 +168898,13 @@ "opengraph": null, "title": "Grüne Marburg-Biedenkopf: STARTSEITE" }, - "duration": 195, + "duration": 222, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 324, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -168440,7 +168946,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 222 }, "RESPONSIVE": { "score": 1, @@ -168480,9 +168986,9 @@ "resolved_hostname": "www.gruene-marburg.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-marburg.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168509,7 +169015,7 @@ } ], "responsive": { - "min_width": 324, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -168524,13 +169030,13 @@ "opengraph": null, "title": "Grüne Marburg-Biedenkopf: STARTSEITE" }, - "duration": 219, + "duration": 201, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 324, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -168572,7 +169078,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -168608,6 +169114,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "52.210.189.158" ], @@ -168647,7 +169154,7 @@ ], "title": "Förderung des Radfahrens - gruene-mauers Webseite!" }, - "duration": 298, + "duration": 340, "error": null, "responsive": { "document_width": { @@ -168680,9 +169187,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -168696,7 +169202,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 298 + "value": 340 }, "RESPONSIVE": { "score": 0, @@ -168713,7 +169219,7 @@ "value": false } }, - "score": 5.5 + "score": 6.5 }, { "details": { @@ -168736,9 +169242,9 @@ "resolvable": false } }, - "icons": [ - "d7b3cd2400f564d004e873ac1634874a.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s1a02c1fb7c7746a8/img/favicon.png?t=1389983714": "d7b3cd2400f564d004e873ac1634874a.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -168784,7 +169290,7 @@ ], "title": "Startseite - BÜNDNIS 90 / DIE GRÜNEN MEMMINGEN" }, - "duration": 248, + "duration": 264, "error": null, "responsive": { "document_width": { @@ -168831,7 +169337,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 248 + "value": 264 }, "RESPONSIVE": { "score": 1, @@ -168872,9 +169378,9 @@ "resolved_hostname": "www.gruene-michendorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-michendorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -168916,7 +169422,7 @@ "opengraph": null, "title": "Basisverband Michendorf: WIRKLICH WAS BEWEGEN." }, - "duration": 187, + "duration": 670, "error": null, "responsive": { "document_width": { @@ -168964,7 +169470,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 187 + "value": 670 }, "RESPONSIVE": { "score": 1, @@ -169004,9 +169510,9 @@ "resolved_hostname": "www.gruene-mol.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-mol.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169048,7 +169554,7 @@ "opengraph": null, "title": "KV MÄRKISCH-ODERLAND: STARTSEITE" }, - "duration": 192, + "duration": 594, "error": null, "responsive": { "document_width": { @@ -169096,7 +169602,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 594 }, "RESPONSIVE": { "score": 1, @@ -169182,7 +169688,7 @@ ], "title": "Bündnis 90/Die Grünen Mühlheim" }, - "duration": 502, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -169231,7 +169737,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 502 + "value": 462 }, "RESPONSIVE": { "score": 1, @@ -169275,9 +169781,9 @@ "resolved_hostname": "www.gruene-muenchen.de" } }, - "icons": [ - "186bbbf767927571de3a8e3648cfded4.png" - ], + "icons": { + "https://www.gruene-muenchen.de/wp-content/themes/grnmuc/favicon.png": "186bbbf767927571de3a8e3648cfded4.png" + }, "ipv4_addresses": [ "134.119.44.126" ], @@ -169322,7 +169828,6 @@ "icon": "https://www.gruene-muenchen.de/wp-content/themes/grnmuc/favicon.png", "opengraph": [ "og:description", - "og:image", "og:site_name", "og:title", "og:type", @@ -169330,7 +169835,7 @@ ], "title": "Bündnis 90/Die Grünen München" }, - "duration": 310, + "duration": 309, "error": null, "responsive": { "document_width": { @@ -169377,7 +169882,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 310 + "value": 309 }, "RESPONSIVE": { "score": 1, @@ -169417,9 +169922,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-neckar-bergstrasse.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-neckar-bergstrasse.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -169451,7 +169957,7 @@ "opengraph": null, "title": "Grüne Kreisverband Neckar-Bergstraße: Startseite" }, - "duration": 570, + "duration": 516, "error": null, "responsive": { "document_width": { @@ -169474,7 +169980,7 @@ "opengraph": null, "title": "Grüne Kreisverband Neckar-Bergstraße: Startseite" }, - "duration": 499, + "duration": 116, "error": null, "responsive": { "document_width": { @@ -169523,7 +170029,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 534 + "value": 316 }, "RESPONSIVE": { "score": 1, @@ -169563,9 +170069,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-neckar-stromberg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -169597,7 +170103,7 @@ "opengraph": null, "title": "gruene-neckar-stromberg.de" }, - "duration": 563, + "duration": 577, "error": null, "responsive": { "document_width": { @@ -169645,7 +170151,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 563 + "value": 577 }, "RESPONSIVE": { "score": 1, @@ -169686,9 +170192,9 @@ "resolved_hostname": "www.gruene-neu-anspach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-neu-anspach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169730,7 +170236,7 @@ "opengraph": null, "title": "Fraktion Neu-Anspach: Startseite" }, - "duration": 193, + "duration": 214, "error": null, "responsive": { "document_width": { @@ -169778,7 +170284,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 214 }, "RESPONSIVE": { "score": 1, @@ -169864,7 +170370,7 @@ ], "title": "Bündnis 90/Die Grünen Ortsverband Neu-Isenburg" }, - "duration": 217, + "duration": 220, "error": null, "responsive": { "document_width": { @@ -169913,7 +170419,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 217 + "value": 220 }, "RESPONSIVE": { "score": 1, @@ -169953,9 +170459,9 @@ "resolved_hostname": "www.gruene-neusaess.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-neusaess.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -169997,7 +170503,7 @@ "opengraph": null, "title": "Ortsverband Neusäß: Home" }, - "duration": 209, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -170045,7 +170551,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -170131,7 +170637,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN - OV Nidda" }, - "duration": 517, + "duration": 449, "error": null, "responsive": { "document_width": { @@ -170180,7 +170686,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 449 }, "RESPONSIVE": { "score": 1, @@ -170266,7 +170772,7 @@ ], "title": "Bündnis 90/Die Grünen Nidderau" }, - "duration": 228, + "duration": 888, "error": null, "responsive": { "document_width": { @@ -170315,7 +170821,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 228 + "value": 888 }, "RESPONSIVE": { "score": 1, @@ -170382,15 +170888,23 @@ } ], "responsive": { - "min_width": 2000 + "min_width": 320 }, "urlchecks": [ { "content": null, - "duration": null, - "error": "read_timeout", - "responsive": null, - "status_code": null, + "duration": 823, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": null + }, + "status_code": 500, "url": "https://gruene-niedenstein.de/" }, { @@ -170431,14 +170945,13 @@ "value": false }, "HTTPS": { - "score": 0, - "type": "boolean", - "value": false + "score": 2, + "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 0, + "score": 0.5, "type": "number", - "value": null + "value": 823 }, "RESPONSIVE": { "score": 0, @@ -170454,7 +170967,7 @@ "value": true } }, - "score": 3.0 + "score": 5.5 }, { "details": { @@ -170478,9 +170991,9 @@ "resolved_hostname": "www.gruene-niedernhausen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-niedernhausen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -170522,7 +171035,7 @@ "opengraph": null, "title": "Grüne Niedernhausen: Home" }, - "duration": 193, + "duration": 198, "error": null, "responsive": { "document_width": { @@ -170570,7 +171083,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 193 + "value": 198 }, "RESPONSIVE": { "score": 1, @@ -170613,9 +171126,9 @@ "resolved_hostname": "www.gruene-niedersachsen.de" } }, - "icons": [ - "10bccf7c5fd52a0f20456ea4ccf2c403.png" - ], + "icons": { + "https://www.gruene-niedersachsen.de/wp-content/uploads/2017/05/cropped-logo-100x100.png": "10bccf7c5fd52a0f20456ea4ccf2c403.png" + }, "ipv4_addresses": [ "193.96.188.144" ], @@ -170672,7 +171185,7 @@ ], "title": "An morgen denken wir nicht erst seit gestern - Grüne Niedersachsen" }, - "duration": 205, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -170719,7 +171232,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 182 }, "RESPONSIVE": { "score": 1, @@ -170759,9 +171272,9 @@ "resolved_hostname": "www.gruene-oa.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.gruene-oa.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "37.120.182.202" ], @@ -170803,7 +171316,7 @@ "opengraph": null, "title": "Die Grünen Oberallgäu: Grüne Oberallgäu" }, - "duration": 151, + "duration": 157, "error": null, "responsive": { "document_width": { @@ -170851,7 +171364,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 151 + "value": 157 }, "RESPONSIVE": { "score": 1, @@ -170894,9 +171407,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-obertshausen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.92" ], @@ -170938,7 +171451,7 @@ ], "title": "Grüne Obertshausen" }, - "duration": 244, + "duration": 274, "error": null, "responsive": { "document_width": { @@ -170985,7 +171498,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 244 + "value": 274 }, "RESPONSIVE": { "score": 1, @@ -171026,9 +171539,9 @@ "resolved_hostname": "www.gruene-oberursel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-oberursel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171070,7 +171583,7 @@ "opengraph": null, "title": "B90/Die Grünen - Oberursel: Home" }, - "duration": 205, + "duration": 201, "error": null, "responsive": { "document_width": { @@ -171118,7 +171631,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 205 + "value": 201 }, "RESPONSIVE": { "score": 1, @@ -171158,9 +171671,9 @@ "resolved_hostname": "www.gruene-oder-spree.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oder-spree.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171202,7 +171715,7 @@ "opengraph": null, "title": "Kreisverband Oder-Spree: Home" }, - "duration": 198, + "duration": 215, "error": null, "responsive": { "document_width": { @@ -171250,7 +171763,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 215 }, "RESPONSIVE": { "score": 1, @@ -171290,9 +171803,9 @@ "resolved_hostname": "www.gruene-oestrich-winkel.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-oestrich-winkel.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171334,7 +171847,7 @@ "opengraph": null, "title": "OV Oestrich-Winkel: Wir über uns" }, - "duration": 213, + "duration": 250, "error": null, "responsive": { "document_width": { @@ -171382,7 +171895,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 250 }, "RESPONSIVE": { "score": 1, @@ -171425,9 +171938,9 @@ "resolved_hostname": "www.gruene-ohv.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-ohv.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171472,7 +171985,7 @@ "opengraph": null, "title": ": HOME" }, - "duration": 202, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -171519,7 +172032,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 208 }, "RESPONSIVE": { "score": 1, @@ -171559,9 +172072,9 @@ "resolved_hostname": "www.gruene-puchheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-puchheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -171603,7 +172116,7 @@ "opengraph": null, "title": "Grüne Puchheim: Home" }, - "duration": 194, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -171651,7 +172164,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 194 + "value": 202 }, "RESPONSIVE": { "score": 1, @@ -171691,9 +172204,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -171725,7 +172239,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 393, + "duration": 363, "error": null, "responsive": { "document_width": { @@ -171748,7 +172262,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 186, + "duration": 452, "error": null, "responsive": { "document_width": { @@ -171797,7 +172311,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 290 + "value": 408 }, "RESPONSIVE": { "score": 1, @@ -171838,9 +172352,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-ra-bad.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -171872,7 +172387,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 392, + "duration": 356, "error": null, "responsive": { "document_width": { @@ -171895,7 +172410,7 @@ "opengraph": null, "title": "Grüne Kreisverband Rastatt Baden-Baden: KV Rastatt Baden-Baden" }, - "duration": 464, + "duration": 436, "error": null, "responsive": { "document_width": { @@ -171944,7 +172459,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 428 + "value": 396 }, "RESPONSIVE": { "score": 1, @@ -171985,9 +172500,9 @@ "resolved_hostname": "www.gruene-reinbek.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-reinbek.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -172029,7 +172544,7 @@ "opengraph": null, "title": "Die Grünen Reinbek: Startseite" }, - "duration": 195, + "duration": 212, "error": null, "responsive": { "document_width": { @@ -172077,7 +172592,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 212 }, "RESPONSIVE": { "score": 1, @@ -172117,9 +172632,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-rems-murr.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-rems-murr.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -172151,7 +172667,7 @@ "opengraph": null, "title": "Grüne Kreis Rems-Murr: Kreisverband Rems-Murr" }, - "duration": 496, + "duration": 316, "error": null, "responsive": { "document_width": { @@ -172174,7 +172690,7 @@ "opengraph": null, "title": "Grüne Kreis Rems-Murr: Kreisverband Rems-Murr" }, - "duration": 293, + "duration": 563, "error": null, "responsive": { "document_width": { @@ -172223,7 +172739,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 394 + "value": 440 }, "RESPONSIVE": { "score": 1, @@ -172263,9 +172779,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-remseck.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172294,7 +172810,7 @@ "opengraph": null, "title": "Grüne Remseck: HOME" }, - "duration": 554, + "duration": 719, "error": null, "responsive": { "document_width": { @@ -172342,7 +172858,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 554 + "value": 719 }, "RESPONSIVE": { "score": 0, @@ -172383,9 +172899,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-reutlingen.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-reutlingen.de/fileadmin/KV2014/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172417,7 +172934,7 @@ "opengraph": null, "title": "GRÜNE REUTLINGEN: HOME" }, - "duration": 407, + "duration": 437, "error": null, "responsive": { "document_width": { @@ -172440,7 +172957,7 @@ "opengraph": null, "title": "GRÜNE REUTLINGEN: HOME" }, - "duration": 463, + "duration": 616, "error": null, "responsive": { "document_width": { @@ -172489,7 +173006,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 435 + "value": 526 }, "RESPONSIVE": { "score": 1, @@ -172535,9 +173052,10 @@ "resolved_hostname": "www.gruene-rhede.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-rhede.de/wp-content/themes/die-gruenen/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-rhede.de/wp-content/themes/die-gruenen/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "213.133.98.145" ], @@ -172588,7 +173106,7 @@ ], "title": "Ortsverband Rhede › BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 975, + "duration": 877, "error": null, "responsive": { "document_width": { @@ -172620,7 +173138,7 @@ ], "title": "Ortsverband Rhede › BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 630, + "duration": 566, "error": null, "responsive": { "document_width": { @@ -172668,7 +173186,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 802 + "value": 722 }, "RESPONSIVE": { "score": 1, @@ -172712,9 +173230,9 @@ "resolved_hostname": "www.gruene-rhein-pfalz.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-rhein-pfalz.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "212.8.207.2" ], @@ -172767,7 +173285,7 @@ ], "title": "Grüne Rhein-Pfalz" }, - "duration": 988, + "duration": 743, "error": null, "responsive": { "document_width": { @@ -172814,7 +173332,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 988 + "value": 743 }, "RESPONSIVE": { "score": 1, @@ -172854,9 +173372,10 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "http://www.gruene-rheinstetten.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico", + "https://www.gruene-rheinstetten.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -172888,7 +173407,7 @@ "opengraph": null, "title": "Grüne Rheinstetten: Aktuell" }, - "duration": 519, + "duration": 515, "error": null, "responsive": { "document_width": { @@ -172911,7 +173430,7 @@ "opengraph": null, "title": "Grüne Rheinstetten: Aktuell" }, - "duration": 579, + "duration": 779, "error": null, "responsive": { "document_width": { @@ -172960,7 +173479,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 549 + "value": 647 }, "RESPONSIVE": { "score": 1, @@ -173001,9 +173520,9 @@ "resolved_hostname": "www.gruene-rhoen-grabfeld.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rhoen-grabfeld.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173045,7 +173564,7 @@ "opengraph": null, "title": "Kreisverband Rhön-Grabfeld: Home" }, - "duration": 201, + "duration": 221, "error": null, "responsive": { "document_width": { @@ -173093,7 +173612,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 221 }, "RESPONSIVE": { "score": 1, @@ -173133,9 +173652,9 @@ "resolved_hostname": "www.gruene-rosenheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-rosenheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173177,7 +173696,7 @@ "opengraph": null, "title": "KREISVERBAND ROSENHEIM: Aktuell" }, - "duration": 199, + "duration": 226, "error": null, "responsive": { "document_width": { @@ -173225,7 +173744,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 199 + "value": 226 }, "RESPONSIVE": { "score": 1, @@ -173269,6 +173788,7 @@ "resolved_hostname": "www.gruene-rossdorf.de" } }, + "icons": {}, "ipv4_addresses": [ "85.13.155.129" ], @@ -173320,7 +173840,7 @@ ], "title": "Bündnis 90/DIE GRÜNEN" }, - "duration": 765, + "duration": 730, "error": null, "responsive": { "document_width": { @@ -173353,9 +173873,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -173368,7 +173887,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 765 + "value": 730 }, "RESPONSIVE": { "score": 1, @@ -173384,7 +173903,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -173408,9 +173927,9 @@ "resolved_hostname": "www.gruene-roth.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-roth.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -173452,7 +173971,7 @@ "opengraph": null, "title": "Kreisverband Roth: Startseite" }, - "duration": 196, + "duration": 209, "error": null, "responsive": { "document_width": { @@ -173500,7 +174019,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 209 }, "RESPONSIVE": { "score": 1, @@ -173579,7 +174098,7 @@ "opengraph": null, "title": "Gruene Startseite" }, - "duration": 195, + "duration": 197, "error": null, "responsive": { "document_width": { @@ -173602,7 +174121,7 @@ "opengraph": null, "title": "Gruene Startseite" }, - "duration": 213, + "duration": 208, "error": null, "responsive": { "document_width": { @@ -173652,7 +174171,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 204 + "value": 202 }, "RESPONSIVE": { "score": 0, @@ -173744,7 +174263,7 @@ ], "title": "Grüne Rheingau-Taunus-Kreis" }, - "duration": 222, + "duration": 254, "error": null, "responsive": { "document_width": { @@ -173792,7 +174311,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 222 + "value": 254 }, "RESPONSIVE": { "score": 1, @@ -173878,7 +174397,7 @@ ], "title": "Bündnis 90/Die Grünen Rüsselsheim" }, - "duration": 313, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -173927,7 +174446,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 313 + "value": 279 }, "RESPONSIVE": { "score": 1, @@ -173972,9 +174491,10 @@ "resolved_hostname": "www.gruene-runkel.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "http://www.gruene-runkel.de/cms/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png", + "https://www.gruene-runkel.de/cms/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "46.30.215.102" ], @@ -174026,7 +174546,7 @@ ], "title": "Bündnis 90 / Die Grünen Runkel" }, - "duration": 310, + "duration": 339, "error": null, "responsive": { "document_width": { @@ -174059,7 +174579,7 @@ ], "title": "Bündnis 90 / Die Grünen Runkel" }, - "duration": 440, + "duration": 425, "error": null, "responsive": { "document_width": { @@ -174107,7 +174627,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 375 + "value": 382 }, "RESPONSIVE": { "score": 1, @@ -174150,9 +174670,9 @@ "resolved_hostname": "www.gruene-sachsen.de" } }, - "icons": [ - "7d70923f50d6a591b474519c1ff1fb41.ico" - ], + "icons": { + "https://www.gruene-sachsen.de/fileadmin/lv/images/favicon.ico": "7d70923f50d6a591b474519c1ff1fb41.ico" + }, "ipv4_addresses": [ "81.201.153.90" ], @@ -174198,7 +174718,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN Sachsen" }, - "duration": 311, + "duration": 333, "error": null, "responsive": { "document_width": { @@ -174245,7 +174765,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 311 + "value": 333 }, "RESPONSIVE": { "score": 0, @@ -174285,9 +174805,9 @@ "resolved_hostname": "www.gruene-schlangen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schlangen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174329,7 +174849,7 @@ "opengraph": null, "title": "Grüner Ortsverband Schlangen: Home" }, - "duration": 196, + "duration": 227, "error": null, "responsive": { "document_width": { @@ -174377,7 +174897,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 227 }, "RESPONSIVE": { "score": 1, @@ -174417,9 +174937,9 @@ "resolved_hostname": "www.gruene-schlangenbad.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schlangenbad.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174549,9 +175069,9 @@ "resolved_hostname": "www.gruene-schmitten.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-schmitten.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174593,7 +175113,7 @@ "opengraph": null, "title": "Ortsverband Schmitten: Startseite" }, - "duration": 165, + "duration": 205, "error": null, "responsive": { "document_width": { @@ -174641,7 +175161,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 165 + "value": 205 }, "RESPONSIVE": { "score": 1, @@ -174681,9 +175201,10 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "http://www.gruene-schriesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico", + "https://www.gruene-schriesheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -174715,7 +175236,7 @@ "opengraph": null, "title": "Grüne Schriesheim: HOME" }, - "duration": 740, + "duration": 513, "error": null, "responsive": { "document_width": { @@ -174738,7 +175259,7 @@ "opengraph": null, "title": "Grüne Schriesheim: HOME" }, - "duration": 813, + "duration": 967, "error": null, "responsive": { "document_width": { @@ -174787,7 +175308,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 776 + "value": 740 }, "RESPONSIVE": { "score": 1, @@ -174828,9 +175349,9 @@ "resolved_hostname": "www.gruene-schwabach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schwabach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -174872,7 +175393,7 @@ "opengraph": null, "title": "Kreisverband Schwabach: Home" }, - "duration": 198, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -174920,7 +175441,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 198 + "value": 178 }, "RESPONSIVE": { "score": 1, @@ -174960,9 +175481,9 @@ "resolved_hostname": "www.gruene-schwalm-eder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schwalm-eder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175004,7 +175525,7 @@ "opengraph": null, "title": "Kreisverband Schwalm-Eder: Startseite" }, - "duration": 195, + "duration": 230, "error": null, "responsive": { "document_width": { @@ -175052,7 +175573,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 195 + "value": 230 }, "RESPONSIVE": { "score": 1, @@ -175092,9 +175613,9 @@ "resolved_hostname": "www.gruene-schweinfurt.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-schweinfurt.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175136,7 +175657,7 @@ "opengraph": null, "title": "Kreisverband Schweinfurt: Startseite" }, - "duration": 203, + "duration": 206, "error": null, "responsive": { "document_width": { @@ -175184,7 +175705,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 203 + "value": 206 }, "RESPONSIVE": { "score": 1, @@ -175228,6 +175749,7 @@ "resolved_hostname": "www.gruene-schwelm.de" } }, + "icons": {}, "ipv4_addresses": [ "5.35.226.117" ], @@ -175284,7 +175806,7 @@ ], "title": "Willkommen - Grüne SchwelmGrüne Schwelm" }, - "duration": 529, + "duration": 261, "error": null, "responsive": { "document_width": { @@ -175317,9 +175839,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 1, @@ -175332,7 +175853,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 529 + "value": 261 }, "RESPONSIVE": { "score": 1, @@ -175348,7 +175869,7 @@ "value": true } }, - "score": 8.5 + "score": 9.5 }, { "details": { @@ -175371,9 +175892,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruene-schwieberdingen-hemmingen.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -175405,7 +175926,7 @@ "opengraph": null, "title": "Grüne OV Schwieberdingen-Hemmingen: gruene-schwieberdingen-hemmingen.de" }, - "duration": 517, + "duration": 578, "error": null, "responsive": { "document_width": { @@ -175453,7 +175974,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 517 + "value": 578 }, "RESPONSIVE": { "score": 1, @@ -175481,7 +176002,7 @@ "hostnames": { "gruene-senden.de": { "ip_addresses": [ - "52.17.84.106" + "52.210.189.158" ], "resolvable": true, "resolved_hostname": "gruene-senden.de" @@ -175490,8 +176011,9 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ - "52.17.84.106" + "52.210.189.158" ], "resolvable_urls": [ { @@ -175532,7 +176054,7 @@ ], "title": "Herzlich willkommen, liebe Besucherin, lieber Besucher auf der Webseite des Ortsverbandes Bündnis90/Die Grünen in Senden! - gruene2sendens Webseite!" }, - "duration": 265, + "duration": 278, "error": null, "responsive": { "document_width": { @@ -175565,9 +176087,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -175581,7 +176102,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 265 + "value": 278 }, "RESPONSIVE": { "score": 1, @@ -175598,7 +176119,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -175622,9 +176143,9 @@ "resolved_hostname": "www.gruene-siegen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-siegen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -175666,7 +176187,7 @@ "opengraph": null, "title": "GRÜNE SIEGEN: BÜNDNIS 90/DIE GRÜNEN SIEGEN - aktuelle Infos des Stadtverbandes und der Ratsfraktion in Siegen." }, - "duration": 215, + "duration": 236, "error": null, "responsive": { "document_width": { @@ -175714,7 +176235,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 215 + "value": 236 }, "RESPONSIVE": { "score": 1, @@ -175800,7 +176321,7 @@ ], "title": "Bündnis 90/Die Grünen - Ortsverband Sinn" }, - "duration": 469, + "duration": 406, "error": null, "responsive": { "document_width": { @@ -175849,7 +176370,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 469 + "value": 406 }, "RESPONSIVE": { "score": 1, @@ -175933,7 +176454,7 @@ "opengraph": null, "title": "Grüne Sinsheim" }, - "duration": 277, + "duration": 295, "error": null, "responsive": { "document_width": { @@ -175981,7 +176502,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 277 + "value": 295 }, "RESPONSIVE": { "score": 0, @@ -176020,9 +176541,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-sinzheim.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -176051,7 +176572,7 @@ "opengraph": null, "title": "Grüne Sinzheim: AKTUELL" }, - "duration": 607, + "duration": 648, "error": null, "responsive": { "document_width": { @@ -176099,7 +176620,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 607 + "value": 648 }, "RESPONSIVE": { "score": 0, @@ -176140,9 +176661,9 @@ "resolved_hostname": "www.gruene-solms.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-solms.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176184,7 +176705,7 @@ "opengraph": null, "title": "Homepage der Grünen Solms: Startseite" }, - "duration": 173, + "duration": 182, "error": null, "responsive": { "document_width": { @@ -176232,7 +176753,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 173 + "value": 182 }, "RESPONSIVE": { "score": 1, @@ -176272,9 +176793,9 @@ "resolved_hostname": "www.gruene-stahnsdorf.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-stahnsdorf.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176316,7 +176837,7 @@ "opengraph": null, "title": "Basisverband Stahnsdorf: Start" }, - "duration": 248, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -176364,7 +176885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 248 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -176404,9 +176925,9 @@ "resolved_hostname": "www.gruene-steinbach.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-steinbach.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176448,7 +176969,7 @@ "opengraph": null, "title": "Ortsverband Steinbach: Willkommen bei Steinbachs GRÜNEN" }, - "duration": 162, + "duration": 164, "error": null, "responsive": { "document_width": { @@ -176496,7 +177017,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 162 + "value": 164 }, "RESPONSIVE": { "score": 1, @@ -176536,9 +177057,9 @@ "resolved_hostname": "www.gruene-straubing-bogen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-straubing-bogen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176580,7 +177101,7 @@ "opengraph": null, "title": "Grüne Straubing-Bogen: Home" }, - "duration": 201, + "duration": 232, "error": null, "responsive": { "document_width": { @@ -176628,7 +177149,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 201 + "value": 232 }, "RESPONSIVE": { "score": 1, @@ -176713,7 +177234,7 @@ "opengraph": null, "title": "Grüne Sundern" }, - "duration": 273, + "duration": 293, "error": null, "responsive": { "document_width": { @@ -176761,7 +177282,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 273 + "value": 293 }, "RESPONSIVE": { "score": 0, @@ -176801,9 +177322,9 @@ "resolved_hostname": "www.gruene-taunusstein.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-taunusstein.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -176845,7 +177366,7 @@ "opengraph": null, "title": "Ortsverband Taunusstein: Aktuelles" }, - "duration": 196, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -176893,7 +177414,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 196 + "value": 213 }, "RESPONSIVE": { "score": 1, @@ -176937,9 +177458,9 @@ "resolved_hostname": "www.gruene-thueringen.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-thueringen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -176993,7 +177514,7 @@ ], "title": "BÜNDNIS 90/DIE GRÜNEN" }, - "duration": 398, + "duration": 401, "error": null, "responsive": { "document_width": { @@ -177040,7 +177561,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 398 + "value": 401 }, "RESPONSIVE": { "score": 1, @@ -177084,9 +177605,9 @@ "resolved_hostname": "www.gruene-traunstein.de" } }, - "icons": [ - "dbd336b75d1b810e5cf48bf556917855.jpg" - ], + "icons": { + "https://www.gruene-traunstein.de/wp-content/uploads/2016/12/cropped-Favicon-Gruene-KV-Traunstein.jpg": "dbd336b75d1b810e5cf48bf556917855.jpg" + }, "ipv4_addresses": [ "5.9.248.153" ], @@ -177132,7 +177653,7 @@ "opengraph": null, "title": "Kreisverband Traunstein |" }, - "duration": 454, + "duration": 338, "error": null, "responsive": { "document_width": { @@ -177179,7 +177700,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 454 + "value": 338 }, "RESPONSIVE": { "score": 1, @@ -177219,9 +177740,9 @@ "resolved_hostname": "www.gruene-tuebingen.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-tuebingen.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177263,7 +177784,7 @@ "opengraph": null, "title": "Kreisverband Tübingen: Home" }, - "duration": 207, + "duration": 218, "error": null, "responsive": { "document_width": { @@ -177311,7 +177832,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 207 + "value": 218 }, "RESPONSIVE": { "score": 1, @@ -177351,9 +177872,9 @@ "resolved_hostname": "www.gruene-um.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-um.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177395,7 +177916,7 @@ "opengraph": null, "title": "KREISVERBAND UCKERMARK: Home" }, - "duration": 166, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -177443,7 +177964,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -177483,9 +178004,9 @@ "resolved_hostname": "www.gruene-unterallgaeu.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-unterallgaeu.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -177527,7 +178048,7 @@ "opengraph": null, "title": "Unterallgäu: Startseite" }, - "duration": 213, + "duration": 252, "error": null, "responsive": { "document_width": { @@ -177575,7 +178096,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 213 + "value": 252 }, "RESPONSIVE": { "score": 1, @@ -177618,9 +178139,9 @@ "resolvable": false } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://gruene-usingen.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "81.169.145.68" ], @@ -177663,7 +178184,7 @@ ], "title": "Grüne Fraktion Usingen" }, - "duration": 806, + "duration": 779, "error": null, "responsive": { "document_width": { @@ -177710,7 +178231,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 806 + "value": 779 }, "RESPONSIVE": { "score": 1, @@ -177755,9 +178276,9 @@ "resolved_hostname": "www.gruene-verl.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-verl.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "134.119.173.208" ], @@ -177809,7 +178330,7 @@ ], "title": "Jetzt ist auch Verl grün › ORTSVERBAND VERL" }, - "duration": 600, + "duration": 533, "error": null, "responsive": { "document_width": { @@ -177856,7 +178377,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 600 + "value": 533 }, "RESPONSIVE": { "score": 1, @@ -177942,7 +178463,7 @@ ], "title": "B90/Die Grünen im Landkreis Waldeck-Frankenberg" }, - "duration": 235, + "duration": 266, "error": null, "responsive": { "document_width": { @@ -177991,7 +178512,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 235 + "value": 266 }, "RESPONSIVE": { "score": 1, @@ -178032,9 +178553,10 @@ "resolved_hostname": "www.gruene-waldeck.de" } }, - "icons": [ - "469c7d11d58fff007d0d911a2a1e952d.ico" - ], + "icons": { + "https://gruene-waldeck.de/favicon.ico": "469c7d11d58fff007d0d911a2a1e952d.ico", + "https://www.gruene-waldeck.de/favicon.ico": "469c7d11d58fff007d0d911a2a1e952d.ico" + }, "ipv4_addresses": [ "91.233.85.241" ], @@ -178073,7 +178595,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN Waldeck" }, - "duration": 185, + "duration": 178, "error": null, "responsive": { "document_width": { @@ -178096,7 +178618,7 @@ "opengraph": null, "title": "BÜNDNIS 90 / DIE GRÜNEN Waldeck" }, - "duration": 187, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -178145,7 +178667,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 190 }, "RESPONSIVE": { "score": 0, @@ -178231,7 +178753,7 @@ ], "title": "Bündnis 90/Die Grünen Waldems" }, - "duration": 166, + "duration": 185, "error": null, "responsive": { "document_width": { @@ -178280,7 +178802,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 166 + "value": 185 }, "RESPONSIVE": { "score": 1, @@ -178320,9 +178842,9 @@ "resolved_hostname": "www.gruene-wehrheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://gruene-wehrheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178364,7 +178886,7 @@ "opengraph": null, "title": "Fraktion/OV Wehrheim: Startseite" }, - "duration": 177, + "duration": 174, "error": null, "responsive": { "document_width": { @@ -178412,7 +178934,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 177 + "value": 174 }, "RESPONSIVE": { "score": 1, @@ -178455,9 +178977,9 @@ "resolved_hostname": "www.gruene-weilheim.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-weilheim.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178502,7 +179024,7 @@ "opengraph": null, "title": "KV Weilheim-Schongau: Aktivitäten, Ereignisse, Termine 2018" }, - "duration": 191, + "duration": 203, "error": null, "responsive": { "document_width": { @@ -178549,7 +179071,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 191 + "value": 203 }, "RESPONSIVE": { "score": 1, @@ -178592,9 +179114,9 @@ "resolved_hostname": "www.gruene-werder.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruene-werder.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -178639,7 +179161,7 @@ "opengraph": null, "title": "Basisverband Werder: Herzlich Willkommen" }, - "duration": 188, + "duration": 216, "error": null, "responsive": { "document_width": { @@ -178686,7 +179208,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 188 + "value": 216 }, "RESPONSIVE": { "score": 1, @@ -178730,9 +179252,9 @@ "resolved_hostname": "www.gruene-wertheim.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.gruene-wertheim.de/wp-content/themes/urwahl5000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "188.68.47.24" ], @@ -178785,7 +179307,7 @@ ], "title": "Bündnis 90/ Die Grünen" }, - "duration": 272, + "duration": 312, "error": null, "responsive": { "document_width": { @@ -178832,7 +179354,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 272 + "value": 312 }, "RESPONSIVE": { "score": 1, @@ -178918,7 +179440,7 @@ ], "title": "Grüne Wetterau" }, - "duration": 608, + "duration": 404, "error": null, "responsive": { "document_width": { @@ -178967,7 +179489,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 608 + "value": 404 }, "RESPONSIVE": { "score": 1, @@ -179061,7 +179583,7 @@ ], "title": "Grüne Wiesloch" }, - "duration": 833, + "duration": 938, "error": null, "responsive": { "document_width": { @@ -179109,7 +179631,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 833 + "value": 938 }, "RESPONSIVE": { "score": 1, @@ -179150,9 +179672,10 @@ "resolved_hostname": "www.gruene-winterbach.de" } }, - "icons": [ - "82143ace59ceead2f64930232180ffad.ico" - ], + "icons": { + "https://gruene-winterbach.de/files/gruene_winterbach/img/favicon.ico": "82143ace59ceead2f64930232180ffad.ico", + "https://www.gruene-winterbach.de/files/gruene_winterbach/img/favicon.ico": "82143ace59ceead2f64930232180ffad.ico" + }, "ipv4_addresses": [ "85.13.156.196" ], @@ -179194,7 +179717,7 @@ "opengraph": null, "title": "Startseite / Aktuelles - Die Grünen in Winterbach" }, - "duration": 293, + "duration": 279, "error": null, "responsive": { "document_width": { @@ -179217,7 +179740,7 @@ "opengraph": null, "title": "Startseite / Aktuelles - Die Grünen in Winterbach" }, - "duration": 290, + "duration": 318, "error": null, "responsive": { "document_width": { @@ -179266,7 +179789,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 292 + "value": 298 }, "RESPONSIVE": { "score": 1, @@ -179352,7 +179875,7 @@ ], "title": "Bündnis 90/Die Grünen Wölfersheim" }, - "duration": 209, + "duration": 191, "error": null, "responsive": { "document_width": { @@ -179401,7 +179924,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 209 + "value": 191 }, "RESPONSIVE": { "score": 1, @@ -179440,9 +179963,9 @@ "resolvable": false } }, - "icons": [ - "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" - ], + "icons": { + "https://www.gruene-wt.de/fileadmin/KV/res/logo.ico": "9cc6ca3ef5bd8aee230719b1ae036ae3.ico" + }, "ipv4_addresses": [ "87.230.19.83" ], @@ -179471,7 +179994,7 @@ "opengraph": null, "title": "Grüne Kreis Waldshut: Kreisverband Waldshut" }, - "duration": 620, + "duration": 838, "error": null, "responsive": { "document_width": { @@ -179519,7 +180042,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 620 + "value": 838 }, "RESPONSIVE": { "score": 0, @@ -179565,9 +180088,10 @@ "resolved_hostname": "www.gruene-wuerzburg-land.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-wuerzburg-land.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-wuerzburg-land.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "46.163.77.33" ], @@ -179615,7 +180139,7 @@ ], "title": "Home" }, - "duration": 279, + "duration": 304, "error": null, "responsive": { "document_width": { @@ -179644,7 +180168,7 @@ ], "title": "Home" }, - "duration": 299, + "duration": 303, "error": null, "responsive": { "document_width": { @@ -179692,7 +180216,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 289 + "value": 304 }, "RESPONSIVE": { "score": 1, @@ -179737,9 +180261,10 @@ "resolved_hostname": "www.gruene-wuerzburg.de" } }, - "icons": [ - "31c08a20b3ce617969ee503adfa1a06a.ico" - ], + "icons": { + "https://gruene-wuerzburg.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico", + "https://www.gruene-wuerzburg.de/cms/templates/gruene_t3_bs3/favicon.ico": "31c08a20b3ce617969ee503adfa1a06a.ico" + }, "ipv4_addresses": [ "91.250.119.224" ], @@ -179785,7 +180310,7 @@ "opengraph": null, "title": "Home" }, - "duration": 428, + "duration": 429, "error": null, "responsive": { "document_width": { @@ -179812,7 +180337,7 @@ "opengraph": null, "title": "Home" }, - "duration": 415, + "duration": 443, "error": null, "responsive": { "document_width": { @@ -179860,7 +180385,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 422 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -179911,9 +180436,9 @@ "resolved_hostname": "www.gruene.de" } }, - "icons": [ - "705424b605eccdb32f161363457e6374.ico" - ], + "icons": { + "https://www.gruene.de/tmpl/gfx/img/favicon.ico": "705424b605eccdb32f161363457e6374.ico" + }, "ipv4_addresses": [ "89.146.238.38" ], @@ -179970,7 +180495,7 @@ ], "title": "Startseite- BÜNDNIS 90/DIE GRÜNEN Bundespartei" }, - "duration": 170, + "duration": 311, "error": null, "responsive": { "document_width": { @@ -180017,7 +180542,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 311 }, "RESPONSIVE": { "score": 0, @@ -180059,9 +180584,9 @@ "resolvable": false } }, - "icons": [ - "c3fe41066db45f18d0590642b0a94012.ico" - ], + "icons": { + "https://grueneammersbek.de/homepage/templates/allrounder-gruen/favicon.ico": "c3fe41066db45f18d0590642b0a94012.ico" + }, "ipv4_addresses": [ "212.53.140.14" ], @@ -180078,7 +180603,7 @@ } ], "responsive": { - "min_width": 636 + "min_width": 580 }, "urlchecks": [ { @@ -180094,14 +180619,14 @@ "opengraph": null, "title": "Bündnis 90 / Die Grünen - OV Ammersbek" }, - "duration": 294, + "duration": 289, "error": null, "responsive": { "document_width": { - "1024x768": 1067, + "1024x768": 1044, "1920x1080": 1920, - "320x480": 636, - "768x1024": 910 + "320x480": 580, + "768x1024": 854 }, "viewport_meta_tag": null }, @@ -180141,7 +180666,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 294 + "value": 289 }, "RESPONSIVE": { "score": 0, @@ -180181,9 +180706,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenefreiberg.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -180215,7 +180740,7 @@ "opengraph": null, "title": "Grüne OV Freiberg am Neckar: gruenefreiberg.de" }, - "duration": 455, + "duration": 572, "error": null, "responsive": { "document_width": { @@ -180263,7 +180788,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 455 + "value": 572 }, "RESPONSIVE": { "score": 1, @@ -180333,7 +180858,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180353,14 +180878,14 @@ ], "title": "Grüne Köln" }, - "duration": 168, + "duration": 661, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180401,7 +180926,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 168 + "value": 661 }, "RESPONSIVE": { "score": 0, @@ -180470,7 +180995,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180490,14 +181015,14 @@ ], "title": "Grüne Köln" }, - "duration": 9, + "duration": 589, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180536,9 +181061,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 9 + "value": 589 }, "RESPONSIVE": { "score": 0, @@ -180554,7 +181079,7 @@ "value": true } }, - "score": 8.0 + "score": 7.5 }, { "details": { @@ -180607,7 +181132,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 773, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180627,14 +181152,14 @@ ], "title": "Grüne Köln" }, - "duration": 976, + "duration": 618, "error": null, "responsive": { "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 363, - "768x1024": 768 + "1024x768": 1530, + "1920x1080": 2043, + "320x480": 773, + "768x1024": 1348 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180675,7 +181200,144 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 976 + "value": 618 + }, + "RESPONSIVE": { + "score": 0, + "type": "boolean", + "value": false + }, + "SITE_REACHABLE": { + "score": 1, + "value": true + }, + "WWW_OPTIONAL": { + "score": 1, + "value": true + } + }, + "score": 7.5 + }, + { + "details": { + "canonical_urls": [ + "https://www.gruenekoeln.de/" + ], + "cms": "typo3", + "feeds": [ + "https://www.gruenekoeln.de/index.php?type=100" + ], + "hostnames": { + "gruenekoeln.de": { + "ip_addresses": [ + "78.47.141.38" + ], + "resolvable": true, + "resolved_hostname": "gruenekoeln.de" + }, + "www.gruenekoeln.de": { + "ip_addresses": [ + "78.47.141.38" + ], + "resolvable": true, + "resolved_hostname": "www.gruenekoeln.de" + } + }, + "ipv4_addresses": [ + "78.47.141.38" + ], + "resolvable_urls": [ + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "http://gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "http://www.gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": "https://www.gruenekoeln.de/", + "url": "https://gruenekoeln.de/" + }, + { + "error": null, + "redirects_to": null, + "url": "https://www.gruenekoeln.de/" + } + ], + "responsive": { + "min_width": 320, + "viewport_meta_tag": [ + "width=device-width, initial-scale=1" + ] + }, + "urlchecks": [ + { + "content": { + "canonical_link": null, + "encoding": "utf-8", + "feeds": [ + "https://www.gruenekoeln.de/index.php?type=100" + ], + "generator": "TYPO3 CMS", + "icon": null, + "opengraph": [ + "og:image" + ], + "title": "Grüne Köln" + }, + "duration": 532, + "error": null, + "responsive": { + "document_width": { + "1024x768": 1024, + "1920x1080": 1920, + "320x480": 320, + "768x1024": 768 + }, + "viewport_meta_tag": "width=device-width, initial-scale=1" + }, + "status_code": 200, + "url": "https://www.gruenekoeln.de/" + } + ] + }, + "input_url": "https://www.gruenekoeln.de/bezirke/bezirk3/aktuelles.html", + "meta": { + "city": "Köln-Lindenthal", + "district": "Köln", + "level": "DE:ORTSVERBAND", + "state": "Nordrhein-Westfalen" + }, + "result": { + "CANONICAL_URL": { + "score": 1, + "value": true + }, + "DNS_RESOLVABLE_IPV4": { + "score": 1, + "value": true + }, + "FAVICON": { + "score": 0, + "type": "boolean", + "value": false + }, + "FEEDS": { + "score": 1, + "value": true + }, + "HTTPS": { + "score": 2, + "value": true + }, + "HTTP_RESPONSE_DURATION": { + "score": 0.5, + "type": "number", + "value": 532 }, "RESPONSIVE": { "score": 1, @@ -180744,7 +181406,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -180764,151 +181426,14 @@ ], "title": "Grüne Köln" }, - "duration": 32, + "duration": 585, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 - }, - "viewport_meta_tag": "width=device-width, initial-scale=1" - }, - "status_code": 200, - "url": "https://www.gruenekoeln.de/" - } - ] - }, - "input_url": "https://www.gruenekoeln.de/bezirke/bezirk3/aktuelles.html", - "meta": { - "city": "Köln-Lindenthal", - "district": "Köln", - "level": "DE:ORTSVERBAND", - "state": "Nordrhein-Westfalen" - }, - "result": { - "CANONICAL_URL": { - "score": 1, - "value": true - }, - "DNS_RESOLVABLE_IPV4": { - "score": 1, - "value": true - }, - "FAVICON": { - "score": 0, - "type": "boolean", - "value": false - }, - "FEEDS": { - "score": 1, - "value": true - }, - "HTTPS": { - "score": 2, - "value": true - }, - "HTTP_RESPONSE_DURATION": { - "score": 1, - "type": "number", - "value": 32 - }, - "RESPONSIVE": { - "score": 0, - "type": "boolean", - "value": false - }, - "SITE_REACHABLE": { - "score": 1, - "value": true - }, - "WWW_OPTIONAL": { - "score": 1, - "value": true - } - }, - "score": 8.0 - }, - { - "details": { - "canonical_urls": [ - "https://www.gruenekoeln.de/" - ], - "cms": "typo3", - "feeds": [ - "https://www.gruenekoeln.de/index.php?type=100" - ], - "hostnames": { - "gruenekoeln.de": { - "ip_addresses": [ - "78.47.141.38" - ], - "resolvable": true, - "resolved_hostname": "gruenekoeln.de" - }, - "www.gruenekoeln.de": { - "ip_addresses": [ - "78.47.141.38" - ], - "resolvable": true, - "resolved_hostname": "www.gruenekoeln.de" - } - }, - "ipv4_addresses": [ - "78.47.141.38" - ], - "resolvable_urls": [ - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "http://gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "http://www.gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": "https://www.gruenekoeln.de/", - "url": "https://gruenekoeln.de/" - }, - { - "error": null, - "redirects_to": null, - "url": "https://www.gruenekoeln.de/" - } - ], - "responsive": { - "min_width": 597, - "viewport_meta_tag": [ - "width=device-width, initial-scale=1" - ] - }, - "urlchecks": [ - { - "content": { - "canonical_link": null, - "encoding": "utf-8", - "feeds": [ - "https://www.gruenekoeln.de/index.php?type=100" - ], - "generator": "TYPO3 CMS", - "icon": null, - "opengraph": [ - "og:image" - ], - "title": "Grüne Köln" - }, - "duration": 68, - "error": null, - "responsive": { - "document_width": { - "1024x768": 1354, - "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -180947,14 +181472,14 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 68 + "value": 585 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -180965,7 +181490,7 @@ "value": true } }, - "score": 8.0 + "score": 8.5 }, { "details": { @@ -181018,7 +181543,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181038,13 +181563,13 @@ ], "title": "Grüne Köln" }, - "duration": 42, + "duration": 577, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181084,9 +181609,9 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 42 + "value": 577 }, "RESPONSIVE": { "score": 1, @@ -181102,7 +181627,7 @@ "value": true } }, - "score": 9.0 + "score": 8.5 }, { "details": { @@ -181155,7 +181680,7 @@ } ], "responsive": { - "min_width": 597, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181175,14 +181700,14 @@ ], "title": "Grüne Köln" }, - "duration": 40, + "duration": 617, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 597, - "768x1024": 1172 + "320x480": 320, + "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" }, @@ -181221,14 +181746,14 @@ "value": true }, "HTTP_RESPONSE_DURATION": { - "score": 1, + "score": 0.5, "type": "number", - "value": 40 + "value": 617 }, "RESPONSIVE": { - "score": 0, + "score": 1, "type": "boolean", - "value": false + "value": true }, "SITE_REACHABLE": { "score": 1, @@ -181239,7 +181764,7 @@ "value": true } }, - "score": 8.0 + "score": 8.5 }, { "details": { @@ -181292,7 +181817,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181312,13 +181837,13 @@ ], "title": "Grüne Köln" }, - "duration": 423, + "duration": 591, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181360,7 +181885,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 423 + "value": 591 }, "RESPONSIVE": { "score": 1, @@ -181429,7 +181954,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181449,13 +181974,13 @@ ], "title": "Grüne Köln" }, - "duration": 933, + "duration": 598, "error": null, "responsive": { "document_width": { - "1024x768": 1354, + "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181497,7 +182022,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 933 + "value": 598 }, "RESPONSIVE": { "score": 1, @@ -181566,7 +182091,7 @@ } ], "responsive": { - "min_width": 363, + "min_width": 320, "viewport_meta_tag": [ "width=device-width, initial-scale=1" ] @@ -181586,13 +182111,13 @@ ], "title": "Grüne Köln" }, - "duration": 164, + "duration": 559, "error": null, "responsive": { "document_width": { "1024x768": 1024, "1920x1080": 1920, - "320x480": 363, + "320x480": 320, "768x1024": 768 }, "viewport_meta_tag": "width=device-width, initial-scale=1" @@ -181634,7 +182159,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 164 + "value": 559 }, "RESPONSIVE": { "score": 1, @@ -181673,9 +182198,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenekornwestheim.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -181707,7 +182232,7 @@ "opengraph": null, "title": "Grüne OV Kornwestheim: gruene-kornwestheim.de" }, - "duration": 473, + "duration": 583, "error": null, "responsive": { "document_width": { @@ -181755,7 +182280,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 473 + "value": 583 }, "RESPONSIVE": { "score": 1, @@ -181795,9 +182320,9 @@ "resolvable": false } }, - "icons": [ - "c4e528acabca9b0d522c0b077d754c86.ico" - ], + "icons": { + "https://www.gruenelb.de/favicon.ico": "c4e528acabca9b0d522c0b077d754c86.ico" + }, "ipv4_addresses": [ "5.175.28.195" ], @@ -181829,7 +182354,7 @@ "opengraph": null, "title": "Grüne OV Ludwigsburg: gruene OV Ludwigsburg" }, - "duration": 456, + "duration": 436, "error": null, "responsive": { "document_width": { @@ -181877,7 +182402,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 456 + "value": 436 }, "RESPONSIVE": { "score": 1, @@ -181914,6 +182439,7 @@ "resolvable": false } }, + "icons": {}, "ipv4_addresses": [ "46.252.18.88" ], @@ -181948,7 +182474,7 @@ "opengraph": null, "title": "Startseite - Grüne Liste Vlotho" }, - "duration": 202, + "duration": 158, "error": null, "responsive": { "document_width": { @@ -181981,9 +182507,8 @@ "value": true }, "FAVICON": { - "score": 0, - "type": "boolean", - "value": false + "score": 1, + "value": true }, "FEEDS": { "score": 0, @@ -181997,7 +182522,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 202 + "value": 158 }, "RESPONSIVE": { "score": 1, @@ -182014,7 +182539,7 @@ "value": false } }, - "score": 6.5 + "score": 7.5 }, { "details": { @@ -182038,9 +182563,9 @@ "resolved_hostname": "www.gruenemsp.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.gruenemsp.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182082,7 +182607,7 @@ "opengraph": null, "title": "GRÜNE Main-Spessart: Startseite" }, - "duration": 192, + "duration": 204, "error": null, "responsive": { "document_width": { @@ -182130,7 +182655,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 192 + "value": 204 }, "RESPONSIVE": { "score": 1, @@ -182170,9 +182695,9 @@ "resolved_hostname": "www.grueneprignitz.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.grueneprignitz.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182214,7 +182739,7 @@ "opengraph": null, "title": "KREISVERBAND PRIGNITZ: Aktuelles" }, - "duration": 170, + "duration": 160, "error": null, "responsive": { "document_width": { @@ -182262,7 +182787,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 170 + "value": 160 }, "RESPONSIVE": { "score": 1, @@ -182301,9 +182826,9 @@ "resolvable": false } }, - "icons": [ - "5a680a0d49276bbc6a5b2f2600f0079b.png" - ], + "icons": { + "https://u.jimcdn.com/cms/o/s5a69b32a96959e8e/img/favicon.png?t=1397765466": "5a680a0d49276bbc6a5b2f2600f0079b.png" + }, "ipv4_addresses": [ "52.17.84.106" ], @@ -182345,7 +182870,7 @@ ], "title": "Aktuelles - BÜNDNIS 90 / DIE GRÜNEN in Wachtberg" }, - "duration": 318, + "duration": 325, "error": null, "responsive": { "document_width": { @@ -182392,7 +182917,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 318 + "value": 325 }, "RESPONSIVE": { "score": 1, @@ -182438,9 +182963,7 @@ "resolved_hostname": "www.trittin.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": {}, "ipv4_addresses": [ "178.63.49.198" ], @@ -182578,9 +183101,9 @@ "resolved_hostname": "www.wds-gruene.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.wds-gruene.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -182622,7 +183145,7 @@ "opengraph": null, "title": "Grüne Weil der Stadt: Ortsverband" }, - "duration": 167, + "duration": 307, "error": null, "responsive": { "document_width": { @@ -182670,7 +183193,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 167 + "value": 307 }, "RESPONSIVE": { "score": 1, @@ -182710,9 +183233,9 @@ "resolved_hostname": "xn--grne-alternative-liste-flrsheim-vdd8o.de" } }, - "icons": [ - "ca2bb9889f5870b0b31006f9f09a23df.ico" - ], + "icons": { + "https://cdn.website-start.de/favicon.ico": "ca2bb9889f5870b0b31006f9f09a23df.ico" + }, "ipv4_addresses": [ "217.160.0.157" ], @@ -182757,7 +183280,7 @@ ], "title": "Grüne Alternative Liste Flörsheim / GALF - Aktuelles" }, - "duration": 271, + "duration": 292, "error": null, "responsive": { "document_width": { @@ -182805,7 +183328,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 271 + "value": 292 }, "RESPONSIVE": { "score": 0, @@ -182888,7 +183411,7 @@ ], "title": "Grüne Stadtallendorf" }, - "duration": 500, + "duration": 462, "error": null, "responsive": { "document_width": { @@ -182937,7 +183460,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 500 + "value": 462 }, "RESPONSIVE": { "score": 0, @@ -182981,9 +183504,9 @@ "resolved_hostname": "xn--grne-teltow-uhb.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.xn--grne-teltow-uhb.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "148.251.142.217" ], @@ -183032,7 +183555,7 @@ ], "title": "Bündnis 90/Die Grünen Teltow" }, - "duration": 781, + "duration": 816, "error": null, "responsive": { "document_width": { @@ -183079,7 +183602,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 781 + "value": 816 }, "RESPONSIVE": { "score": 0, @@ -183119,9 +183642,9 @@ "resolved_hostname": "xn--grne-wf-o2a.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://www.xn--grne-wf-o2a.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -183160,7 +183683,7 @@ "opengraph": null, "title": "Kreisverband Wolfenbüttel: Startseite" }, - "duration": 219, + "duration": 213, "error": null, "responsive": { "document_width": { @@ -183208,7 +183731,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 219 + "value": 213 }, "RESPONSIVE": { "score": 0, @@ -183252,9 +183775,9 @@ "resolved_hostname": "xn--padergrn-d6a.de" } }, - "icons": [ - "b0166db4002d18f757c53ff6c34cb3ab.png" - ], + "icons": { + "https://www.xn--padergrn-d6a.de/wp-content/themes/urwahl3000/favicon.png": "b0166db4002d18f757c53ff6c34cb3ab.png" + }, "ipv4_addresses": [ "5.35.225.232" ], @@ -183307,7 +183830,7 @@ ], "title": "Die Grünen" }, - "duration": 151, + "duration": 172, "error": null, "responsive": { "document_width": { @@ -183354,7 +183877,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 151 + "value": 172 }, "RESPONSIVE": { "score": 0, @@ -183395,9 +183918,10 @@ "resolved_hostname": "xn--grne-idstein-elb.de" } }, - "icons": [ - "716be6f93d646088f652036da8701778.ico" - ], + "icons": { + "https://www.xn--grne-idstein-elb.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico", + "https://xn--grne-idstein-elb.de/typo3conf/ext/startgreen/Resources/Public/Css/buendnis-90-die-gruenen.ico": "716be6f93d646088f652036da8701778.ico" + }, "ipv4_addresses": [ "178.16.59.226" ], @@ -183436,7 +183960,7 @@ "opengraph": null, "title": "Grüne in Idstein: Die Grünen in Idstein" }, - "duration": 345, + "duration": 273, "error": null, "responsive": { "document_width": { @@ -183459,7 +183983,7 @@ "opengraph": null, "title": "Grüne in Idstein: Die Grünen in Idstein" }, - "duration": 406, + "duration": 398, "error": null, "responsive": { "document_width": { @@ -183508,7 +184032,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 376 + "value": 336 }, "RESPONSIVE": { "score": 0, @@ -183548,9 +184072,9 @@ "resolved_hostname": "xn--grne-lippe-beb.de" } }, - "icons": [ - "3c4dea2f646571881e8d882c2b07531a.ico" - ], + "icons": { + "https://xn--grne-lippe-beb.de/typo3conf/ext/ntc_gcms2014/Resources/Public/Icons/favicon.ico": "3c4dea2f646571881e8d882c2b07531a.ico" + }, "ipv4_addresses": [ "91.102.13.20" ], @@ -183589,7 +184113,7 @@ "opengraph": null, "title": "Lippe: Startseite" }, - "duration": 186, + "duration": 202, "error": null, "responsive": { "document_width": { @@ -183637,7 +184161,7 @@ "HTTP_RESPONSE_DURATION": { "score": 0.5, "type": "number", - "value": 186 + "value": 202 }, "RESPONSIVE": { "score": 0, diff --git a/webapp/src/index.js b/webapp/src/index.js index 01bc491..e27a567 100644 --- a/webapp/src/index.js +++ b/webapp/src/index.js @@ -75,8 +75,8 @@ $(function(){ } // FAVICON - var icon = item.result.FAVICON.value && (item.details.icons[0] != null); - var iconFile = (icon && (item.details.icons[0] != null) ? item.details.icons[0] : ''); + var icon = item.result.FAVICON.value && (Object.keys(item.details.icons).length > 0); + var iconFile = icon ? Object.values(item.details.icons)[0] : ''; var noicon = ''+ no +'' var icontag = (icon ? ('') : noicon); row.append('' + icontag + '');